大部分是xss攻击(跨站脚本攻攻击),都是尝试在客户的浏览器中注入脚本,然后获取cookie发送到黑客指定的地址。因为服务端的session都是通过一个记录seesionId的cookie来识别的。黑客拿到了cookie, 自然就能够伪造身份,进而获取到权限。cookie的httpOnly属性意味着,浏览器中不能通过document.cookie访问到这个cookie,从而达到防御xss攻击的目的。
在express-session中,默认已经开启了cookie的httpOnly: true,原文说明如下
Specifies the boolean
value for the HttpOnly
Set-Cookie
attribute. When truthy, the HttpOnly
attribute is set, otherwise it is not. By default, the HttpOnly
attribute is set.
res.cookie('rememberme', '1', {httpOnly: true });
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。