I want to find out where are firefox cookies getting stored in Linux. there is a similar old question here which says that the cookies are stored at ~.mozilla/firefox/<profile name>/cookies.sqlite
but i think this is not true anymore because i remove this file but i still have cookies in firefox itself. also i tested the entire ~.mozilla/firefox
folder with inotifywait
using the following command:
$ inotifywait -mr .mozilla/firefox -e open -e access -e modify
and got nothing!. not even an access event occur when i open firefox and search or open any sites.
~/snap/firefox/common/.mozilla/firefox/
– ams Jun 09 '23 at 10:39~/.mozilla/firefox/<profile name>/cookies.sqlite
is the correct location unless you're using snap/flatpak. – Artem S. Tashkinov Jun 09 '23 at 11:54~/snap/firefox/common/.mozilla/firefox
thank you @ams – GHOST mHBr Jun 09 '23 at 12:57