All Versions
Bamboo 5.13Bamboo 5.7.x
Bamboo 5.6.x
More...
Bamboo Standalone distributions from version 2.5.5 now enforce the HttpOnly flag on session ID cookies by default, as a means to minimise the risk of common XSS attacks. For more information about this feature, please refer to the Bamboo Security Advisory 2010-05-04.
If you are running the Bamboo EAR-WAR distribution on Tomcat (or another application server that is unsupported), it is likely that Bamboo's session ID cookies will not be transmitted with the HttpOnly flag. Hence, to mitigate the risk of common XSS attacks, we recommend that you configure your application server to transmit HttpOnly session ID cookies.
To configure your Bamboo EAR-WAR distribution running on Tomcat to use HttpOnly Session ID Cookies:
context.xml
file of the Tomcat installation running Bamboo in a text editor.conf
subdirectory of the main Tomcat installation directory.Manager
element within the Context
element of this file:
... <Context> ... <Manager useHttpOnly="true"/> ... </Context> ...
Manager
element or change the value of its useHttpOnly
parameter to false
.context.xml
file and restart Bamboo.