Tagged Questions
A cookie is a piece of text stored by the user's web browser. Unless specified otherwise, cookies can be accessed both by javascript and from server-side scripts by reading the headers.
85
votes
11answers
41k views
Cookie blocked/not saved in IFRAME in Internet Explorer
I have two websites, let's say they're example.com and anotherexample.net.
On anotherexample.net/page.html, I have an IFRAME SRC="http://example.com/someform.asp". That IFRAME displays a form for the ...
75
votes
7answers
85k views
How do I expire a PHP session after 30 minutes?
I need to keep a session alive for 30 minutes and then destroy it.
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 ...
59
votes
9answers
62k views
Can jQuery read/write cookies to a browser?
Simple example: I want to have some items on a page (like divs or table rows) and I want to let the user click on them to select them. That seems easy enough in jquery. To save which items a user ...
43
votes
3answers
38k views
How do I make an http request using cookies on Android?
I'd like to make an http request to a remote server while properly handling cookies (eg. storing cookies sent by the server, and sending those cookies when I make subsequent requests). It'd be nice ...
38
votes
12answers
3k views
What's the significance of Oct 12 1999?
In the SignOut method of System.Web.Security.FormsAuthentication, the ASP.NET team chose to expire the FormsAuth cookie by setting the expiration date to "Oct 12 1999".
HttpCookie cookie = new ...
36
votes
5answers
6k views
What is the best way to implement “remember me” for a website?
I want my website to have a checkbox that users can click so that they will not have to log in each time they visit my website. What is the best way to implement this? I know I will need to store a ...
31
votes
3answers
18k views
How to set/unset cookie with jQuery?
How to set a cookie named 'test' and value '1'?
And especially, how to unset?
29
votes
1answer
21k views
How to use Python to login to a webpage and retrieve cookies for later usage?
I want to download and parse webpage using python, but to access it I need a couple of cookies set. Therefore I need to login over https to the webpage first. The login moment involves sending two ...
26
votes
3answers
10k views
Firefox session cookies
Generally speaking, when given a cookie that has no expiration period, modern browsers will consider this cookie to be a 'session cookie', they will remove the cookie at the end of the browsing ...
26
votes
16answers
12k views
How do I uniquely identify computers visiting my web site?
I need to figure out a way uniquely identify each computer which visits the web site I am creating. Does anybody have any advice on how to achieve this?
Because i want the solution to work on all ...
25
votes
2answers
12k views
Rails Sessions current practices (especially for rails 3)
Anyone have any "best practices" tips for Rails and sessions? The default session type for Rails3 is still cookie store, right? I used SqlSessionStore for a while and it worked well, but I may move ...
25
votes
3answers
12k views
Where are an UIWebView's cookies stored?
I'm building an iPhone app with cookies. Deleting cookies in the Safari settings doesn't delete them. Where are they stored? Is it possible to read them from another UIWebView?
Thanks!
25
votes
6answers
9k views
Why does Chrome ignore local jQuery cookies?
I am using the jQuery Cookie plugin (download and demo and source code with comments) to set and read a cookie. I'm developing the page on my local machine.
The following code will successfully set a ...
24
votes
5answers
782 views
Naming conventions for cookies in PHP
When it comes to cookies and PHP, what naming style do you use?
Here are a few options I can think of:
lower_case
CamelCase
Underscore_Camel_Case
UPPER_CASE
23
votes
2answers
11k views
ASP MVC Cookies not persisting
I have a ASP MVC App with some seemingly simple code to save and retrieve cookies but for some reason they won't persist. The code in the controller is :
if ...
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?
21
votes
6answers
580 views
What will web developers have to do to meet the new EU cookie law?
http://www.bbc.co.uk/blogs/thereporters/rorycellanjones/2011/03/cookie_madness_or_consumer_pro.html
Basically it says that from May 25th this year, any website using cookies will have to ask ...
21
votes
7answers
9k views
What's your favorite cross domain cookie sharing approach?
I see iframe/p3p trick is the most popular one around, but I personally don't like it because javascript + hidden fields + frame really make it look like a hack job. I've also come across a ...
20
votes
5answers
21k views
Clearing all cookies with JavaScript
How do you delete all the cookies for the current domain using JavaScript?
19
votes
2answers
4k views
Local Storage vs Cookies
I want to reduce load times on my websites by moving all cookies into local storage since they seem to have the same functionality. Is there any pros/cons (especially performance-wise) in using local ...
19
votes
5answers
5k views
Allowed characters in cookies
Hey everyone, this one's a quickie:
What are the the allowed characters in both cookie name and value? Are they same as URL or some common subset?
Reason I'm asking is that I've recently hit some ...
19
votes
5answers
2k views
Are HTTP cookies port specific?
I have two HTTP services running on one machine. I just want to know if they share their cookies or whether the browser distinguishes between the two server sockets.
19
votes
1answer
7k views
Login/session cookies, Ajax and security
I'm trying to determine the most secure method for an ajax based login form to authenticate and set a client side cookie. I've seen things about XSS attacks such as this:
...
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?
18
votes
4answers
14k views
How do you remove a Cookie in a Java Servlet
How do you remove a cookie in a Java servlet?
I tried this:
http://www.jguru.com/faq/view.jsp?EID=42225
EDIT: The following now works successfully it appears to be the combination of:
...
18
votes
9answers
11k views
How to detect if cookies are disabled? Is it possible?
How to detect on server side that cookies in browser are disabled?
Is it possible?
Detailed explanation of question:
I am processing HTTP request on the server. I want to set cookie via Set-Cookie ...
17
votes
2answers
6k views
Cookies on localhost with explicit domain
I must be missing some basic thing about cookies. On localhost, when I set a cookie on server side and specify the domain explicitly as localhost (or .localhost). the cookie does not seem to be ...
16
votes
3answers
10k views
What is the maximum size of a web browser's cookie's key?
I'm wondering what the maximum size of a web browser's cookie's key is. I know the maximum size of a cookie is 4KB, but does the key have a limitation as well?
Thanks!
16
votes
4answers
10k views
what is ASPXAUTH cookie?
While working with ASP.Net Forms Authentication I came across the .ASPXAUTH cookie. I have a couple questions:
What is the purpose of this cookie?
What is the location of this cookie?
16
votes
5answers
4k views
Best way to determine if cookies are enabled in ASP.NET?
What is the best method for determining if a users browser has cookies enabled in ASP.NET
15
votes
5answers
705 views
Shortest function for reading a cookie in JavaScript
What is the shortest, accurate, and cross-browser compatible method for reading a cookie in JavaScript?
Very often, while building stand-alone scripts (where I can't have any outside dependencies), ...
15
votes
3answers
569 views
Current state of HTTP State Management Mechanism (Cookies)
I was wondered whether there is a survey or report of the current state of browser compliance with the three Cookie specifications: Netscape’s original draft, RFC 2109, and RFC 2965 that obsoletes RFC ...
15
votes
3answers
11k views
Using CookieContainer with WebClient class
I've previously used a CookieContainer with HttpWebRequest and HttpWebResponse sessions, but now, I want to use it with a WebClient. As far as I understand, there is no built-in method like there is ...
15
votes
5answers
13k views
how to get the cookies from a php curl into a variable
So some guy at some other company thought it would be awesome if instead of using soap or xml-rpc or rest or any other reasonable communication protocol he just embedded all of his response as cookies ...
15
votes
3answers
5k views
Internet Explorer ignores cookies on some domains (cannot read or set cookies)
I have a site, e.g. example.com, where users can set their own subdomains (one user - one subdomain) and upload their own scripts, e.g. http://somedomain.example.com/xyzzy.php would map to ...
15
votes
3answers
9k views
Secure cookies and mixed https/http site usage
Lots of sites appear to support https but don't use secure cookies. I want to make my site use secure cookies but to allow for some content to be accessed using http instead.
A sensible way to do ...
15
votes
3answers
14k views
Accessing Domain Cookies within an iFrame on Internet Explorer
My domain (let's call it www.foo.com) creates a cookie.
On another site (let's say, www.myspace.com), my domain is loaded within an iFrame.
On every browser (Firefox, Opera, Camino, Safari, etc...) ...
14
votes
2answers
352 views
Do sessions really violate RESTfulness?
Is using sessions in a RESTful API really violating RESTfulness? I have seen many opinions going either direction, but I'm not convinced that sessions are RESTless. From my point of view:
...
14
votes
3answers
6k views
Get and Set a Single Cookie with Node.js HTTP Server
I want to be able to set a single cookie, and read that single cookie with each request made to the nodejs server instance. Can it be done in a few lines of code, without the need to pull in a third ...
14
votes
10answers
10k views
What encryption algorithm is best for encrypting cookies?
I'm looking for information about 'the best' encryption algorithm for encrypting cookies.
I hava the following requirements:
It must be fast
encrypting and decrypting the data will be done for ...
14
votes
1answer
17k views
Automatic Cookie Handling C#/.NET HttpWebRequest+HttpWebResponse
Is there any way to automatically handle cookies in .NET with the HttpWebRequest/HttpWebResponse objects? I'm preferably looking for an equivalent to LWP::UserAgent and its behaviour (perl), only in a ...
14
votes
5answers
6k views
Cache VS Session VS cookies?
What are the do's and don'ts about Cache VS Session VS Cookies?
For example:
Im using Session variables a lot and have sometimes problem in a booking-application when users starts to order products ...
14
votes
4answers
14k views
asp.net cookies, authentication and session timeouts
I have an asp.net website that uses forms authentication. There are a few things I keep in sessions like username, userID, email, etc.
I allow the user to stay logged into the website by setting a ...
13
votes
6answers
2k views
Can some hacker steal the cookie from a user and login with that name on a web site?
Reading this question
different users get the same cookie value in aspxanonymous
and search for a solution, I start thinking, if it is possible for some one to really steal the cookie with some way, ...
13
votes
4answers
4k views
How do PHP sessions work when cookies are disabled?
I've tried to research this mechanism but only find hints and these are not very consistent. How is the session _id sent to the browser and how is the browser instructed to return it when the user ...
13
votes
2answers
10k views
Javascript Cookie with no expiration date
I would like to set up a cookie that never expires. Would that even be possible?
document.cookie = "name=value; expires=date; path=path;domain=domain; secure";
I don't want to make the date really ...
13
votes
7answers
8k views
What is the best way to prevent session hijacking?
Specifically this is regarding when using a client session cookie to identify a session on the server.
Is the best answer to use SSL/HTTPS encryption for the entire web site, and you have the best ...
12
votes
4answers
169 views
*Really* deleting cookies with javascript
The way to delete cookies in javascript is to set the expiry date to be in the past. Now this doesn't actually delete the cookie, at least in Firefox. It just means the cookie will be deleted on ...
12
votes
4answers
6k views
phonegap: cookie based authentication (PHP) not working [webview]
I'm working on a mobile web-app using sencha touch, HTML5 and phonegap as a wrapper.
I'm using PHP-Authentication (Cookie) and ajax-requests. Everything works fine on safari or chrome, but after the ...