views:

418

answers:

5

Does anybody know where are cookies stored in Windows Vista? I'm looking at C:\Users\MyUser\AppData\Roaming\Microsoft\Windows\Cookies but the cookies I see there don't match the one I see through Firefox.

I'm creating a cookie in ASP.NET, localhost, Firefox shows me the cookie but I cannot locate it in the file system.

Any ideas? Tks

+1  A: 

I think FireFox stores cookies in its own storage, not under the Cookies folder in the profile. This is where IE stores its cookies.

On my system (XP Pro with FireFox 3.0.10), cookies seem to be stored unter C:\Documents And Settings\USERNAME\Application Data\Mozilla\FireFox\Profiles... in a SQLite database.

Thorsten Dittmar
+1  A: 

On vista: C:\Users\yourUsername\AppData\Roaming\Mozilla\Firefox\Profiles\someRandomNumbers.default\cookies.sqlite

cbp
A: 

Tools -> Options -> Privacy -> Show Cookies.

SpliFF
I know that one, it's stated in my question. But thanks anyway.
Dante
then it's an odd question. what do you expect to get out of the sqlite file that you can't get through the options interface?
SpliFF
The question was where is physically Firefox getting the cookie data from? I didn't know it was from SQLite.
Dante
A: 

Non persistent cookies are kept in memory.

PQW
A: 

If there is not a shared space for cookies, they are browser depedent. Strange, if a web site is sending a cookie to the client, why shouldn't all browsers share the same cookie?

If someone implements a single sing on mechanism for site authentication.... it will be limited to a single browser, you still need to authenticate for each browser you may use.

Dante