Tagged Questions

httpOnly is a flag in the cookie header, indicating that the browser should hide this cookie from JavaScript and only use it for http and https requests.

learn more… | top users | synonyms

64
votes
9answers
12k views

How do HttpOnly cookies work with AJAX requests?

JavaScript needs access to cookies if AJAX is used on a site with access restrictions based on cookies. Will HttpOnly cookies work on an AJAX site? Edit: Microsoft created a way to prevent XSS ...
23
votes
5answers
29k views

How do you configure HttpOnly cookies in tomcat / java webapps?

After reading Jeff's blog post on Protecting Your Cookies: HttpOnly. I'd like to implement HttpOnly cookies in my web application. How do you tell tomcat to use http only cookies for sessions?
19
votes
7answers
4k views

How do you set up use HttpOnly cookies in PHP

How can I set the cookies in my PHP apps as HttpOnly cookies?
10
votes
4answers
3k views

Which browsers do support HttpOnly cookies?

Which browsers do support HttpOnly cookies, and since which version? Please see http://www.codinghorror.com/blog/archives/001167.html for a discussion of HttpOnly cookies and XSS-prevention.
10
votes
4answers
4k views

How exactly do you configure httpOnlyCookies in ASP.NET?

Inspired by this CodingHorror article, "Protecting Your Cookies: HttpOnly" How do you set this property? Somewhere in the web config?
7
votes
5answers
2k views

Setting HTTPONLY for Classic Asp Session Cookie

Does anyone know exactly how to set HTTPONLY on classic ASP session cookies? This is the final thing that's been flagged in a vulnerability scan and needs fixing ASAP, so any help is appreciated. ...
5
votes
4answers
1k views

Forcing HttpOnly cookies with JRun/ColdFusion

We need to ensure that all cookies on a CF7 site are set as HttpOnly. We are using jsessionid to control our sessions, and JRun does not create this as HttpOnly. Whilst it is possible to modify an ...
5
votes
5answers
5k views

How exactly do you configure httpOnly Cookies in ASP Classic?

I'm looking to implement httpOnly in my legacy ASP classic sites. Anyone knows how to do it?
3
votes
2answers
442 views

Is there a way to check if a cookie is httponly in PHP

Is there a way to check if the cookie is httponly in php?
3
votes
2answers
540 views

How do I set the session cookie's HttpOnly setting to false?

In Ruby on Rails, how do I set the session cookie's httpOnly setting to false?
2
votes
1answer
428 views

Problem with HttpOnly Cookies

I have a problem with creating HttpOnly Cookies , I use the following code to creat new cookie: //A.aspx HttpCookie ht = new HttpCookie("www"); ht.Value = "www"; ht.Name = "www"; ...
2
votes
1answer
192 views

HttpCookie.HttpOnly in .NET and JavaScript

Hello A web site was developed and deployed to client. In some cases, I need to set the flag HttpCookie.HttpOnly = true. Okay - I have done it. Next question: Is Cookie available after setting flag ...
2
votes
2answers
449 views

How do you remove HttpOnly cookies?

If my application places HttpOnly cookies on a client and then needs to remove them how can you remove them completely?
2
votes
1answer
3k views

Setting httponly in JSESSIONID cookie (Java EE 5)

I'm trying to set the httponly flag on the JSESSIONID cookie. I'm working in Java EE 5, however, and can't use setHttpOnly(). First I tried to create my own JSESSIONID cookie from within the ...
2
votes
1answer
698 views

HttpOnly cookies on google app engine java

Anyone know how I can use httponly cookies for sessions and cookies on the app engine? In the javadoc for the Cookie class, ...
2
votes
2answers
974 views

Could this XSS protection with HttpOnly Cookies work?

I have done some research on HttpOnly cookies and the problem that exist with the possibility to use an XHR request in combination with the TRACE method to get the cookie value echoed back from the ...
1
vote
1answer
61 views

Is HttpOnly necessary when SSL is already set?

If I already set SSL for my application server, do I still need to set HttpOnly for the cookies?
1
vote
0answers
58 views

Cross-domain policy and XHR cookie for app development in Safari, Lion

I'm developing a web services application using various technologies such as : Ruby on Rails on server side Javascript, HTML5, objective-C, java on mobile side I did not met any issue with ...
1
vote
1answer
129 views

Session cookie with httpOnly flag

I would like to configure my grails project in such a way that the session cookie is set with the httpOnly flag. As I do understand, this is a configuration in the web.xml or context.xml file. But ...
1
vote
0answers
68 views

How to set http-only through java coding

I am using Tomacat6.0.33 for my java web application. i set http-only in context.xml and it worked. But is there any other way we can set it by coding. Thanks
1
vote
0answers
73 views

Authlogic secure and httponly cookies patch

I've been trying to apply the gist provided in the issue tracker to add the secure and httponly options and methods on Authlogic cookies, but I'm having some difficulty. I applied the patch and have ...
1
vote
0answers
220 views

Why would setting 'httpOnlyCookies=“true”' disrupt sessions?

In my asp.net mvc web.config file I've set the following... <httpCookies httpOnlyCookies="true" /> Everything works fine on my dev machine and the live server but on the staging server the ...
1
vote
0answers
671 views

How do I set the HttpOnly flag of a cookie with javascript?

I'm trying to create a cookie, with the HttpOnly flag enabled. While there seems to be a plethora of resources about how to do it in Java and .Net, I need to do it in javascript. Here is my ...
1
vote
1answer
784 views

How do I get Devise's Rememberable module to use http_only for the remember me cookie?

The rails session cookie is HttpOnly by default but the remember_user_token cookie set by Devise's Rememberable module is not. As I understand it that cookie when sent will result in the user being ...
1
vote
1answer
438 views

Zend Framework, Sessions, and HttpOnly

I want to make my session cookie HttpOnly. Based on this article, I added this to my application.ini: resources.session.cookie_httponly = true Unfortunately, when I look at the session cookie in ...
1
vote
1answer
1k views

how do I test httpOnly cookie flag

I have set the following property in websphere for the jsession cookie com.ibm.ws.webcontainer.HTTPOnlyCookies. Any idea how best to test this using javascript in firefox or IE? thanks G
1
vote
1answer
260 views

Cookie httponly accessible when I make ajax php queries?

I know this has been asked before but I needed some clarification and confirmation. I've been told when creating cookies, to use httponly to prevent XSS. So my clarification is if I use httponly, ...
1
vote
2answers
416 views

c# Get httponly cookie

How can i get a httponly cookie in a httpwebresponse ? Habitually i use a CookieContainer to get the cookies in a httpwebresponse, but it doesnt work with httponly cookie. Is there an other way to ...
1
vote
0answers
860 views

HttpOnly cookies in SharePoint break creation of workflows in browser

This is not a question but a solution that I just discovered. The issue was this: When I tried to create an Approval workflow on a document library through the browser in a a MOSS Enterprise ...
1
vote
4answers
2k views

Sharing ASP.NET session cookies with a Java applet

I have a Java applet that runs inside a forms-authenticated aspx page. In the .NET 1.1 version of my site, the applet has access to the session cookie and is able to retrieve a file from the server, ...
1
vote
3answers
1k views

How do I set HttpOnly on a session cookie in Rails 2.1?

I notice that Rails 2.2 (currently edge) supports setting HttpOnly on the session cookie. Is there a way of setting it on a Rails 2.1 application without moving to edge/2.2?
0
votes
0answers
169 views

httponly cookies enabled communication error applet to servlet

We have a issue with an application running under Websphere 6.1.0.31 with the HTTPOnlyCookies setting enabled. The issue is with an Applet that makes a connection via HttpURLConnection to a Servlet. ...
0
votes
2answers
136 views

session cookie httponly false rails 3.1

I'm trying to turn httponly off for use in phonegap. I'm useing rails 3.1 and devise, each of which have reported (but not documented) ways of doing this, none of which work: # application.rb ...
0
votes
1answer
96 views

How to configure for session cookie as http-only

to set http-only I used this in web.xml <session-config> <cookie-config> <http-only>true</http-only> </cookie-config> </session-config> ...
0
votes
1answer
142 views

After converting cookies to HTTPonly, IE drops sessions after redirect from iFrame

Yeah, this ought to be fun. I'm working on a site that was built in Fusebox 5.5 and uses an iFrame. I was recently tasked with converting the site to Application.cfc and setting cookies we're using ...
0
votes
2answers
195 views

storing data with FormsAuthenticationTicket

I need to store a list of user's friends so I can use it in every page (without the need to make a database query every time) . I thought about sessions but I think this is gonna be heavy, since ...
0
votes
0answers
69 views

Can I disable the HTTPONLY cookie

I want to auth the user based on the current user cookie in another web app. Is it ok to disable the httponly cookie?
0
votes
1answer
190 views

how to setup HttpOnly flag in JSF 2.0 app on Tomcat 6

I have found this solution on Sof link but i had to change it from two causes: there is no .getFacesContext() function i don't have a specific cookie file (see line ourcookiename=yourcookievalue) ...
0
votes
0answers
45 views

Exporting HttpOnly cookies client side? Then Applying them Client Side?

Ok, so I have found a way to trick users into running code, a XSS vulnerability on a vB Forum, is it possible to export the HttpOnly cookies to my Sql Server Via Ajax, then apply then with custom ...
0
votes
0answers
207 views

Disable HTTPOnly Apache

Is there any way to disable httponly with a .htaccess file? I ask because I'm using a java applet in a website that is not compatible with it (long story). Thanks! Frankie
0
votes
1answer
399 views

Jetty httpOnly cookies configurarion like on Tomcat

I have Tomcat server on my localhost and on deploy server is Jetty. I use Spring 2.5 with Spring Security 2.0 (Servlets are 2.5). I want to secure session id of our users. I have used these directives ...
0
votes
1answer
838 views

JSessionId (httponly cookie) not sent to web service from Javascript

We have a web applet that loads under the URL https://secure-ausomxeja.crmondemand.com/OnDemand/... from where we are making a web service call within the same domain ...
0
votes
1answer
46 views

Scriptonly cookies?

So, basically what I want is the exact opposite of httponly cookies. I want to set a cookie in the browser via JavaScript and be able to retrieve it via JavaScript only. Meaning, that the cookie is ...
0
votes
1answer
1k views

Add HttpOnly flag to cookies on the fly with Apache?

So I have a java webapp that uses tomcat with an apache proxy layer. I'm looking to make all cookies set from the app have the httpOnly flag. The problem with this is that tomcat is responsible for ...
0
votes
1answer
568 views

How do I update the cookie JSESSIONID with HttpOnly by working directly on Http Headers?

Here is the big picture I want to append "HttpOnly" to the JSESSIONID Cookie, but I want to do this by hand, meaning: //create a new cookie StringBuilder updatedCookie = new ...
0
votes
1answer
64 views

Properties of a cookie

How to check the what all properties(Secure,HttpOnly) are set for a cookie using Classic ASP or JavaSript?
0
votes
1answer
1k views

Security scan finds httpOnly cookies in ASP.NET application even when disabled

I have tried to enable httpOnly cookies in my WSS 3.0 forms-authentication application using the web.config tag. A Cenzic Hailstorm security scan report claims that cookies are being produced with the ...
0
votes
1answer
322 views

How can I tell if httponly is set in my application

Without looking over the shoulder of a developer, how can I tell if HTTPonly is set properly from the front end of my web application?
0
votes
1answer
67 views

Is there a way to flag cookies as HttpOnly in Pylons?

I can't find any documentation on the web about how to do this. I think its probably possible to send some sort of custom HTTP header response, but it seems kind of lame to do that if there is a more ...