Ở đây khi vào /changehonk sẽ lấy newhonk và hiển thị ra nếu mình thay dổi sau đó httpOnly set là true từ đây cookie sẽ được bảo vệ nhưng khi đoạn code này.
consttemplate= (goosemsg, goosecount) =>`<html><head><style>H1 { text-align: center }.center { display: block; margin-left: auto; margin-right: auto; width: 50%; } body { place-content:center; background:#111; } input, select, textarea{ color: #000;} * { color:white; }</style></head>${goosemsg ===''?'':`<h1> ${goosemsg} </h1>`}<img src='/images/goosevie.png' width='400' height='700' class='center'></img>${goosecount ===''?'':`<h1> You have honked ${goosecount} times today </h1>`}<form action="/report" method=POST style="text-align: center;"> <label for="url">Did the goose say something bad? Give us feedback.</label> <br> <input type="text" id="site" name="url" style-"height:300"><br><br> <input type="submit" value="Submit" style="color:black"></form></html>`;app.get('/', (req, res) => {if (req.cookies.honk) {//construct objectlet finalhonk = {};if (typeof (req.cookies.honk) ==='object') { finalhonk =req.cookies.honk } else { finalhonk = { message:clean(req.cookies.honk), amountoftimeshonked:req.cookies.honkcount.toString() }; }res.send(template(finalhonk.message,finalhonk.amountoftimeshonked)); } else {//Nếu không có value thì tự set mặc định honk:HONKconstinitialhonk='HONK';res.cookie('honk', initialhonk, { httpOnly:true });res.cookie('honkcount',0, { httpOnly:true });res.redirect('/'); }});
Ở đây có một template literals ở đây có truyền vào 2 tham số đó là goosemsg và goosecount - ở đây có sử dụng toán tử 3 ngôi nếu có goosemsg==='' thì gán '' nếu không gán ${goosmsg} đọc tới đoạn code dưới thì nếu req.cookies.honk có tồn tại hay không, nghĩa là giá trị cookie với key là honk có tồn tại hay không, nếu có thì nó so sánh tiếp req.cookies.honk liệu có phải là object hay không nếu có thì finalhonk sẽ được gán req.cookies.honk. Tiếp theo nếu không có giá trị thì finalhonk là một object có key: message và amountoftimeshonked-> ở đây message bị xóa nên không thể xss
Cuối cùng để sử dụng cookie trong express thì trang web dùng middleware có tên cookie-parser, ở module này hỗ trợ Json Cookie có j:JSON.parse-> cuối cùng chúng ta cần cho req.cookies.honk là một object lúc này sẽ xss thành công vì không bị lọc()