当 SSL 已设置时,还需要 HttpOnly 吗?

发布于 2024-12-22 19:57:42 字数 54 浏览 2 评论 0原文

如果我已经为应用程序服务器设置了 SSL,是否还需要为 cookie 设置 HttpOnly?

If I already set SSL for my application server, do I still need to set HttpOnly for the cookies?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥醉 2024-12-29 19:57:42

是的。这两个标志彼此无关(不过,两者都是安全/隐私选项)

  • “安全”意味着 cookie 只会通过加密连接发送

  • “HttpOnly”意味着 Cookie 对 Javascript 不可见

例如,您仍然可能在 HTTPS 页面上存在 XSS (和那么邪恶的脚本可能会吃掉你的饼干)。

Yes. The two flags have nothing to do with each other (both are security/privacy options, though)

  • "Secure" means that the cookie will only be sent over encrypted connections

  • "HttpOnly" means that the cookie will not be visible to Javascript

You could still have XSS on an HTTPS page, for example (and then an evil script could eat your cookie).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文