Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cookie file for Google Chrome / unix

Where does Chrome store its cookie file on a unix system?

like image 523
Oliver Avatar asked Dec 03 '09 18:12

Oliver


People also ask

Where are cookies stored Chrome Linux?

Go to the Network tab. There you should see a Cookies option. It will show you the list of cookies sent/returned for that very specific request. In most cases, you are interested in the cookies of the GET used to load the HTML page.

Where is the Chrome cookie file?

For Google Chrome the default location for cookies is %LocalAppData%\Google\Chrome\User Data\Default\cookies.

Where is the stored cookie file?

Cookies are small, usually randomly encoded, text files that help your browser navigate through a particular website. A cookie file is generated by the site you're browsing and is accepted and processed by your computer's browser software. Once accepted, the cookie file is stored in your browser's folder or subfolder.


2 Answers

~/.config/google-chrome/Default/Cookies

like image 161
jldupont Avatar answered Oct 03 '22 06:10

jldupont


fwiw, that file is a SqLite database...

$ file ~/.config/google-chrome/Default/Cookies 
~/.config/google-chrome/Default/Cookies: SQLite 3.x database

$ sqlite -version
2.8.17

...good luck...

like image 38
MarkHu Avatar answered Oct 03 '22 04:10

MarkHu