Actions
Bug #11158
closedJSESSION cookie should be "httpOnly"
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
0
Name check:
Fix check:
Regression:
Description
It is a good practice to do so.
Just add the following "jetty-web.xml" file in WEB-INF directory:
<?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd"> <Configure class="org.eclipse.jetty.webapp.WebAppContext"> <Get name="sessionHandler"> <Get name="sessionManager"> <Set name="httpOnly" type="boolean">true</Set> </Get> </Get> </Configure>
Updated by François ARMAND over 7 years ago
- Copied to Bug #11159: JSESSION cookie should be "secure" added
Updated by François ARMAND over 7 years ago
- Status changed from New to Rejected
I'm closing this one as the chosen solution is managed by apache and corrected in #11159
Updated by François ARMAND over 7 years ago
- Copied to deleted (Bug #11159: JSESSION cookie should be "secure")
Updated by François ARMAND over 7 years ago
- Related to Bug #11159: JSESSION cookie should be "secure" added
Actions