Jetty Maven 插件 8.0.0.M3 支持所有 Servlet 3 吗?
我的 web.xml 中有以下内容:
<session-config>
<cookie-config>
<http-only>true</http-only>
<secure>true</secure>
</cookie-config>
<session-timeout>15</session-timeout>
<tracking-mode>COOKIE</tracking-mode>
</session-config>
但是,根据 OWASP 的 Zed Attack Proxy (https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project),Spring Security 仍会设置 cookie,无需 httpOnly 或安全标志。
如果我在 Tomcat 7 中部署相同的应用程序,它似乎会遵循 web.xml 中的这些设置。
I have the following in my web.xml:
<session-config>
<cookie-config>
<http-only>true</http-only>
<secure>true</secure>
</cookie-config>
<session-timeout>15</session-timeout>
<tracking-mode>COOKIE</tracking-mode>
</session-config>
However, according to OWASP's Zed Attack Proxy (https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project), cookies are still being set by Spring Security w/o the httpOnly or secure flags.
If I deploy the same app in Tomcat 7, it appears to honor these settings from web.xml.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案:将元素按正确的顺序排列:
Solution: Put the elements in the correct order: