Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I had done web scan for an application(built in struts and hibernate framework) deployed in jboss 5 which reported "Set-cookie does not use HTTPOnly keyword. The web application does not utilize HTTPOnly cookies". What does it mean. I looked for some post and just added one line in my jboss/deploy/jbossweb.sar/context.xml as

<SessionCookie secure="true" useHttpOnly="true" >

After setting that, I am getting error while running the application.
Is there any configuration that I am missing?

share|improve this question

3 Answers

try this:

<SessionCookie secure="true" httpOnly="true" />
share|improve this answer

What does it mean

The HttpOnly flag in a http response header indicates to the browser that client-side access to the JSESSION_ID or other session-cookie type identifier should not be permitted. What this is intended to prevent is a malicious access to the session token via client side scripts in an XSS(or other attack involving session hijacking from the client side). Currently almost all major browsers support this flag(see this list for supporting browsers), but it's simply ignored in browsers that don't support it. See more info on this at the OWASP site

Setting it up is similar for tomcat and forks of it, including Jboss, by including the following in your context file

<session-config>
    <cookie-config>
        <http-only>true</http-only>
    </cookie-config>
<session-config>

OR

 <SessionCookie secure="true" httpOnly="true" />
share|improve this answer
other than configuring this in my jboss, is there any configuration required in the application? – bablu Nov 20 '12 at 5:41
@bablu, required? no. But you could configure a servlet filter to insert this header in every http response from your application, as a failsafe, not as a matter of necessity – kolossus Nov 20 '12 at 11:06
In the servlet filter code, I had to add String sessionid = request.getSession().getId(); response.setHeader("SET-COOKIE", "JSESSIONID=" + sessionid + "; HttpOnly"); else request.getSession(false) always returns null. I dont know why but after adding those couple of lines, the application is running successfully. So my doubt is - those 2 lines r definately required. This 2 lines i got from owasp.org/index.php/HttpOnly site. Here it is mentioned, for servlet version < 3 (2.4 in my case), these 2 lines are necessary – bablu Nov 21 '12 at 13:34
@bablu, sorry, I somehow assumed you were on a JEE platform. You're correct, for earlier (J2EE) containers, you're required to rewrite the header programmatically. The native support for httponly was introduced in servlet 3.0. Updating my answer accordingly – kolossus Nov 21 '12 at 14:14
Wach out! First of all there are ways to get around it (i.e. java applet with debugged http connection ;) ). Secondly if you apply that in filter to every request "/*" your applets could not work because of set-cookie header in response while classloading. – fatfredyy Nov 23 '12 at 8:47
show 1 more comment

This line of code was added by me in jboss/deploy/context.xml but while running the application, httpServletRequest.getSession(false) returns false for every request. Prior to that line of addition in my jboss/context.xml, after login, I was setting some parameters in my session attribute due to which httpServletRequest.getSession(false) was not giving null till the session is valid. Now I dont understand, after adding httpOnly=true in the context.xml, why null is returned in every request?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.