HttpOnly is a flag in the cookie header to hide data from JavaScript
0
votes
0answers
13 views
HttpOnly and Cookie Secure in JRUN 4.0 (Servlet 2.3)
Environment setup: IIS 6.0, JRUN 4.0, Servlet 2.3, java, xml
I added two paramaters of HttpOnly and Secure Cookie in jrun-web.xml file under the server, but no effect after restart the server.
I ...
1
vote
0answers
25 views
HttpOnly and Secure flag testing
I have set the following under web.config in my app
<system.web>
<httpCookies httpOnlyCookies="true" requireSSL="true" lockItem="true" />
<authentication mode="Forms">
...
0
votes
0answers
36 views
How can I get HttpOnly cookies in Windows Phone 8?
I am working in a Windows Phone 8 PCL project. I am using a 3rd party REST API and I need to use a few HttpOnly cookies originated by the API. It seems like getting/accessing the HttpOnly cookies ...
0
votes
1answer
27 views
HttpOnly flag can't work on tomcat6.0.36
I have tried many ways to use the httponly flag to prevent XSS attack, but all failed.
Common way is to set use HttpOnly=true in context.xml
For test the result: in the java code set two test ...
0
votes
1answer
215 views
how to set httponly and session cookie for java web appliaction
Hi I am working on XSS(cross site scripting) issue. my application develop on oracle weblogic portal. we use Servlet 2.5 version.
I have added below 3 lines of code in the filter for setting ...
0
votes
1answer
21 views
are there implicit cookies created while web navigation? / httpOnly flag
In my website I am not using any kind of cookies, everything goes through server-side session handling. (no setcookie instruction at all)
But still, using Acunetix website vulnerability checker, I ...
1
vote
1answer
259 views
WebSphere Application Server 7 - httpOnly & secure flag for LTPA
I'm working in a common environment having an Apache http-Server in front of the WebSphere Application Server 7 (running a WebSphere Portal Server 7) and now I'm trying to turn on the httpOnly and ...
0
votes
1answer
57 views
What should be the correct behaviour of browser when sending and receiving httponly cookie via ajax?
I currently have an issue with Firefox where it receives a cookie with httponly flag. However when a subsequent response is sent to the server the request does not contain any httponly flag (which may ...
0
votes
2answers
406 views
ASP MVC 3 cookie losing HttpOnly and Secure flags
I am setting cookies as part of my mvc application:
var cookie = new HttpCookie(CookieName, encryptedData)
{
Path = FormsAuthentication.FormsCookiePath,
...
1
vote
1answer
125 views
yii cookies set httpOnly
In yii default option CHttpCookie->httpOnly installed in false as possible during the entire application configuration set by default httpOnly = true?
P.S. Transfer options do not offer, do not want ...
0
votes
0answers
73 views
Opera not setting httponly cookies
On Opera version 12.12, I am attempting to create an httponly cookie. Also, I'm restricting the domain here to my test server, which this code runs on. Here's my simple code:
<?php
...
0
votes
1answer
109 views
HttpOnly and Secure not set for sub path cookie
I have the following in web.config...
<httpCookies httpOnlyCookies="true" requireSSL="true" />
These settings are being applied to my site's cookies correctly except for a cookie called ...
0
votes
1answer
48 views
Mixing ordinary and httponly cookies
I am using PHP setcookie to set ordinary cookies, then later setting one with httponly. It seems this does not work. The setcookie function returns success but the cookie is not set in $_COOKIE.
Is ...
-1
votes
1answer
249 views
ASPSESSIONID missing HTTPONLY attribute for classic ASP
I am trying to find a way to enable HTTPONLY on the ASPSESSIONID cookie that is auto generated for classic ASP sites. I know that .NET 2.0+ sites have the ASP session cookie defaulted to HTTPONLY, but ...
1
vote
0answers
130 views
Setting HttpOnly Classic ASP in IIS 5
After reading this SO post, I too need to set ASPSESSIONID[random-string-here] cookies to be HttpOnly for Classic ASP pages. But, in IIS 5.
So, what are my options? I'm not generating these ...
1
vote
1answer
270 views
HttpOnly / secure cookies with Play Framework and Google App Engine
We're developing an application using Play! 1.2.5 and deploying to Google App Engine.
In the application.conf I have set the session cookie to be httpOnly and secure:
...
0
votes
0answers
480 views
ASP.NET HttpOnly cookie in web.config not working
From everything I've read online, a web.config like this should enable HttpOnly cookies, in ASP.NET 2.0. However this is not working.
<configuration>
<system.web>
<httpCookies ...
0
votes
1answer
298 views
Need Cookies value on client side with Httponly attribute true
We are setting the parameter httpOnly true in web.xml file to prevent the cookie creation at client side.
This is causing the reading the cookies values .we are using the following way to read the ...
1
vote
3answers
770 views
httpOnly cookie
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 ...
0
votes
1answer
214 views
httpservletrequest is null when http-only is set to true
I am using JBoss 7 and I have configure my session config in web.xml as follows:
<session-config>
<session-timeout>240</session-timeout>
<http-only>true</http-only>
...
1
vote
2answers
504 views
Alternative to VB.NET WebBrowser Control for Crawler
I'm volunteering for an amazing site that has pretty limited resources that needs some help with a bottleneck in their site crawler. It's written in VB.NET using WebBrowser Control and crawls a ...
1
vote
1answer
461 views
HttpOnly cookies on Tomcat 5.5.36
I saw on the thread How do you configure HttpOnly cookies in tomcat / java webapps? that Tomcat 5.5.(>28) is supposed to support vendor specific useHttpOnly attribute specified in <Context> ...
1
vote
1answer
577 views
Making JSESSIONID cookie be httpOnly in Jetty 7
We're running grails 2.0 + jetty 7.6.6 and need to set JSESSIONID cookie to be httpOnly.
All of the answers on stackoverflow seem to refer to either Servlet 3.0 (which requires jetty 8) or to tomcat.
...
0
votes
1answer
209 views
httponly cookie web 3.0 causing unexpected timeout
Just recently, I migrated from web 2.4 to web 3.0. One of the requirements of this migration was that, I need to introduce the 'httponly' cookie in my application. So, I added the following ...
0
votes
0answers
422 views
XHR and cross-domain “httponly”, “secure” cookies and “Origin not allowed by Access-Control-Allow-Origin”
I think this is going to require some special knowledge to answer or even to query more details, so no guessing, please.
I'm having trouble getting browsers (Chrome and Firefox) to issue this XHR GET ...
0
votes
1answer
205 views
How to use WebBrowser to obtain HttpOnly's Cookie?
I want to get through the WebBrowser login cookie and ultimately send the cookie to the HttpWebRequest. They webBrowser1.Document.Cookie get less than the HttpOnly that cookie. Way WebBrowser HttpOnly ...
3
votes
1answer
376 views
How to make rack session cookies httponly?
I am using Ruby and Sinatra to develop an application.
I use
enable :sessions
in order to use the session variable provided by rack. How can I make all of the session cookies be HTTPOnly? Is it ...
0
votes
0answers
175 views
Getting session null when cookie is set to httponly in ssl environment
I am setting cookie as following in servlet.
Cookie ck = new Cookie("test", "test; HttpOnly");
if(request.isSecure()){
ck.setSecure(true);
}
response.addCookie(ck);
<
I am using tomcat and ...
4
votes
7answers
340 views
Drop any session from client side
I'm preparing some diagnostic tool. It operates on the website in the iframe - only by javascript.
Now what I need is to get rid of session cookie in the website that I have in my iframe. I just ...
0
votes
2answers
556 views
Get HttpOnly cookies with javascript
do you know of any way to get access to HttpOnly cookies using javascript. I know that the point of those cookies is that you won't be able to get them this way (for security reasons). But still, is ...
1
vote
1answer
664 views
Chrome developer tools > resources > cookies > http column, does a checkmark here indicate HttpOnly cookie?
Does the checkmark at the Http column of Chrome devtool's Cookie resource panel indicate a HttpOnly cookie?
I can't find docs that confirm this, though I suspect it is the case. I am trying to verify ...
0
votes
0answers
342 views
Login issues with php and curl, cookies not sent
I have a mod for my script WLOL to autopost to pinterest.
Until now was working fine on all my clients but now i tried installling on a site and isn't working.
The cookies aren't saved correctly i ...
2
votes
1answer
427 views
Django CSRF cookie HttpOnly
Is it possible to set the django csrf cookie to be http-only? Alike to SESSION_COOKIE_HTTPONLY with session cookie, but for the csrf one?
0
votes
1answer
307 views
Understanding the intended behaviour of HTTPOnly flag
I have a slight confusion regarding HTTPOnly attribute in cookies. I am aware that its main use is for protection against XSS attacks. Let us assume there is web application which has set httponly ...
0
votes
0answers
311 views
Sending session id to server from Flash or Java Applet when cookies are marked as httpOnly
Is it possible to use either Flash or a Java Applet to upload files to a server, where the target URL is protected via some form of authentication and the cookies are marked as 'httpOnly', without ...
0
votes
1answer
582 views
HttpServletRequest.getCookies(): Array, Why The isHttpOnly() function always return false?
hi I'm trying to have httponly cookies so far this is the code that I've written
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
...
0
votes
0answers
920 views
Setting HttpOnly flag in Classic ASP
I'm working on a legacy classic ASP using server side Java script application in which I need to set HttpOnly flag on cookies to make application cookies more secured so that they could not be ...
2
votes
1answer
563 views
jQuery redirects and HttpOnly cookies
We're using JQuery AJAX to login. The login service issues a HTTP 302, with the location being the GET for the user logged in, or (in the case of a log in failure), a REST endpoint that always ...
3
votes
2answers
2k views
Missing HttpOnly Attribute in Session Cookie
in sign.jsp, I have written the following so that, if a user is already logged in then immediately he would be forwarded to his home page
<%
try{
HttpSession session1 = request.getSession(false);
...
0
votes
2answers
435 views
HTTPOnly sets cookie expiration to session
I am writing a "Remember My Username" Cookie that expires in a custom duration of time e.g. one month. I noticed that when I add HttpOnly = true, the expiration changes to session. Why is this? I ...
0
votes
1answer
260 views
What are the methods to protect against session-hijacking without httpOnly support?
I'm going to be building my first mobile web app, and I found out that Android 2.3's browser doesn't implement httponly.
What are some techniques to mitigate this problem? Is this a lost cause?
0
votes
1answer
1k views
Check if httponly cookie exists in Javascript
As the question says can you find out if a cookie exists within Javascript if it is a HttpOnly? I don't need to access the information inside of it, just know it has one.
A little more information on ...
0
votes
1answer
9k views
Secure and HttpOnly flags for session cookie Websphere 7
In Servlet 3.0 complaint application servers I can set the HttpOnly and secure flags for the session cookie (JSESSIONID) by adding the following to the web.xml:
<session-config>
...
2
votes
1answer
711 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?
0
votes
0answers
1k 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.
...
3
votes
2answers
1k 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
...
1
vote
0answers
250 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
687 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
261 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
0
votes
1answer
2k 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>
...
