vote up 1 vote down star
1

Where does Firefox store cookies and in what format are they stored

flag

52% accept rate

5 Answers

vote up 3 vote down check

For Windows, Firefox stores your cookies in a:

For Windows, it is located under your profile folder:

C:\Documents and Settings\username\Application Data\Mozilla\Firefox\Profiles\xxxx.default

where xxxx is some random-appearing string.

You might want to install the Firefox plugin View Cookies to better manage them.

alt text

link|flag
Tools > Options > Privacy > Show Cookies works just as well without the plugin, IMO. – amdfan Nov 19 '08 at 15:45
In Windows XP, Joe's answer of C:\Documents and Settings\\Application Data\Mozilla\Firefox\Profiles\cookies.sqllite is correct, not what you currently have. – Thomas Owens Nov 19 '08 at 16:52
@Thomas: nope, cookies are in your profile folder: support.mozilla.com/tiki-view_forum_thread.php?lo… – VonC Nov 19 '08 at 16:58
Ok: to all, I convert this answer in a community-wiki one. Edit away ;) – VonC Nov 19 '08 at 17:01
vote up 1 vote down

Note that in Firefox 3.5, cookies.sqlite is locked exclusively by Firefox, so you have to make a copy of it before reading.

Also, cookies.sqlite may not be flushed to disk until Firefox exits, so you can't assume that the file on disk contains the cookies you need if Firefox is still running.

link|flag
vote up 0 vote down

The directory depends on your OS, but they appear to be stored in a SQLite database.

link|flag
vote up 0 vote down

On XP, in the Application Data\Mozilla folder in C:\documents and settings.

For example, on my machine this is:

C:\Documents and Settings\\Application Data\Mozilla\Firefox\Profiles\\cookies.sqllite

link|flag
vote up 0 vote down

It's stored in PathFromCSIDL(CSIDL_APPDATA) + "Mozilla\Firefox\Profiles\" + [[profiledirectory]] + "\" + "cookies.sqlite" . There's also a cookies.txt file, but if will probably be empty. PathFromCSIDL can be implemented relatively easily via the windows API.

If your goal is to access cookies programmatically, you'll probably want to do this rather than hard-coding paths. Note that [[profiledirectory]] varies and there may be more than one profile and thus more than one directory, each profile/directory having its own cookies.

link|flag

Your Answer

Get an OpenID
or

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