我在suselinux中有一个apache2.4.6和dotcms2.3.2。我想在dotcms和tomcat中设置httponly并保护falg。我在apache和tomcat中设置了这些配置:
<Context useHttpOnly="true">
中的context.xml
<Connector maxThreads="400" connectionTimeout="3000" port="8080" protocol="HTTP/1.1" redirectPort="8443" URIEncoding="UTF-8" secure="true" />
server.xml
Header edit Set-Cookie ^(.*)$ $1;HttpOnly
或
Header set Set-Cookie HttpOnly;Secure
httpd.conf
中的。
之后重新启动tomcat并使用burp suite进行测试,但它没有在cookie中设置。
答案 0 :(得分:-3)
Header set Set-Cookie HttpOnly;Secure
httpd.conf
。