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 session (generally when the browser instance closes).

IE, Opera, Safari and Chrome all support this behavior.

However firefox (3.0.9 latest proper release) appears not to follow this rule, from what I can tell it doesn't expire the cookies when the browser is closed, or when the user logs off or restarts the OS..

So, why does firefox refer to these as session cookies, when they last aparently indefinitely?

Does anyone know how Firefox handles session cookie expiration?

link|improve this question

I don't think this has actually been answered. I am seeing this too. – BRH Jul 4 '09 at 21:25
Thanks BRH for your research, I actually did see your reply and was meaning to check your research before marking your answer instead, completely forgot! apologies – meandmycode Sep 2 '09 at 18:31
feedback

4 Answers

up vote 45 down vote accepted

This is apparently by design. Check out this Bugzilla bug: https://bugzilla.mozilla.org/show_bug.cgi?id=443354

Firefox has a feature where you close Firefox and it offers to save all your tabs, and then you restore the browser and those tabs come back. That's called session restore. What I didn't realize is that it'll also restore all the session cookies for those pages too! It treats it like you had never closed the browser.

This makes sense in the sense that if your browser crashed you get right back to where you were, but is a little disconcerting for web devs used to session cookies getting cleared. I've got some old session cookies from months ago that were set by sites I always have open in tabs.

To test this out, close all the tabs in your browser, then close the browser and restart it. I think the session cookies for your site should clear in that case. Otherwise you'd have to turn off session restore.

link|improve this answer
I find this behavior quite questionable, thanks for your research. If "Save and Quit" is selected or "Restore tabs and windows", upon closing the browser, all session cookies remain intact. The only way for the "user" to get rid of them is to first close the tab(s) and then close the browser. – mark Aug 17 '09 at 14:08
Did you ever find a workaround? I really don't want Firefox to dig up old sessions as I need the session ID in my app to be unique. – ArjanP Mar 9 '10 at 3:52
Sorry, I don't know of a workaround. From your app's perspective, their browser never closed. – BRH Mar 12 '10 at 7:25
2  
I've noted some of the implications of this (IMO ill-advised) decision: mrclay.org/index.php/2010/05/02/… – mrclay May 2 '10 at 7:08
I got bitten by this behavior today, too. I thought there were something wrong with my app. Then I tested Chrome, and other browsers, then figured out firefox is the culprit. – Dingle May 6 '10 at 0:52
feedback

Two ideas :

  1. You have a problem with your session manager (the one included in FF3 or one included in an extension, like tabmixplus)
  2. Use Firebug + FireCookie (https://addons.mozilla.org/en-US/firefox/addon/6683) to debug !
link|improve this answer
feedback

This should work. I used to be one of the cookie module testers, and I don't think there is any design reason this would behave differently (although if you crash, the session cookies might be designed to live on when you restart...)

Are you viewing the cookies in the "Preferences" menu > "Privacy" Tab > "Show Cookies..." button?

Also, have you tried a new profile?

link|improve this answer
Very strange, I'm relatively happy if this is just a bug with the two systems I tested it on.. I've viewed the cookies and they survive anything.. and they are absolutely being classified as session cookies by firefox.. the only options I ever change in firefox is to turn javascript off and on.. my installed plugins are firebug and the web developer toolbar.. ah well- cheers anyway. – meandmycode Apr 29 '09 at 21:12
There are also a variety of cookie module preferences, but I don't recall any of them having this kind of functionality. FF3 did switch from a text file to a cookie database, maybe your database has mis-behaved. – benc May 1 '09 at 16:36
feedback

This is a bit of a concern in shared user environments. If I set a authentication cookie that is set to expire at the end of the session. This will persist in Firefox after the browser has been closed and another user starts up Firefox. Cookies are set with an expiry date for a reason!

link|improve this answer
Well, to be fair regarding "Cookies are set with an expiry date for a reason"- in this scenario, you aren't setting an expiry date, so its up to the browser to decide how long that cookie lasts. – meandmycode Mar 30 at 11:45
feedback

Your Answer

 
or
required, but never shown

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