Clear Firefox cookies
- Single actionThis page belongs to a script, containing basic changes to achieve a task.
- Linux onlyThis script improves your privacy on Linux
- Impact: HighSystem Functionality Loss Risk: High
This action improves privacy with high impact when you run the recommended script. - Bash (Shell script)These changes use Linux system commands to update your settings.
- Fully reversible
You can fully restore this action (revert back to the original behavior) using this website.
The restore/revert methods provided here can help you fix issues.
Overview
This script deletes Firefox browser cookies to reduce online tracking.
A cookie is a small piece of data stored by websites on your browser. Websites use cookies to remember your preferences and track your browsing activity. While some cookies help websites function properly, others may be used for tracking your online behavior.
Deleting cookies:
- Reduces tracking of your browsing habits
- May improve browser performance by freeing up storage space
- Requires you to sign in again to websites
- May reset some website preferences and settings
You will be signed out of all websites and need to log in again.
Technical Details
Firefox stores cookies in a SQLite database file named 'cookies.sqlite' in the browser profile folder 1. This script clears contents of this table.
This script should only be used by advanced users.
This script is not recommended for daily use as it breaks important functionality.
Consider creating a system backup before doing any changes.
Sources
- Cookies.sqlite - MozillaZine Knowledge Base. kb.mozillazine.org. (2022).
Original: https://kb.mozillazine.org/Cookies.sqlite
Archived: https://web.archive.org/web/20221029140816/https://kb.mozillazine.org/Cookies.sqlite
Apply Now
Choose one of three ways to apply:
Apply with privacy.sexy
Guided, automated application with safety checks- Recommended for most users
- Includes safety checks
- Free
- Open-source
- Popular
- Offline/Online usage
- Apply
- Revert
# Delete files matching pattern: "~/.mozilla/firefox/*/cookies.sqlite"
if ! command -v 'python3' &> /dev/null; then
echo 'Skipping because "python3" is not found.'
else
python3 <<EOF
import glob
import os
path = '~/.mozilla/firefox/*/cookies.sqlite'
expanded_path = os.path.expandvars(os.path.expanduser(path))
print(f'Deleting files matching pattern: {expanded_path}')
paths = glob.glob(expanded_path)
if not paths:
print('Skipping, no paths found.')
for path in paths:
if not os.path.isfile(path):
print(f'Skipping folder: "{path}".')
continue
os.remove(path)
print(f'Successfully delete file: "{path}".')
print(f'Successfully deleted {len(paths)} file(s).')
EOF
fi
# Delete files matching pattern: "~/.var/app/org.mozilla.firefox/.mozilla/firefox/*/cookies.sqlite"
if ! command -v 'python3' &> /dev/null; then
echo 'Skipping because "python3" is not found.'
else
python3 <<EOF
import glob
import os
path = '~/.var/app/org.mozilla.firefox/.mozilla/firefox/*/cookies.sqlite'
expanded_path = os.path.expandvars(os.path.expanduser(path))
print(f'Deleting files matching pattern: {expanded_path}')
paths = glob.glob(expanded_path)
if not paths:
print('Skipping, no paths found.')
for path in paths:
if not os.path.isfile(path):
print(f'Skipping folder: "{path}".')
continue
os.remove(path)
print(f'Successfully delete file: "{path}".')
print(f'Successfully deleted {len(paths)} file(s).')
EOF
fi
# Delete files matching pattern: "~/snap/firefox/common/.mozilla/firefox/*/cookies.sqlite"
if ! command -v 'python3' &> /dev/null; then
echo 'Skipping because "python3" is not found.'
else
python3 <<EOF
import glob
import os
path = '~/snap/firefox/common/.mozilla/firefox/*/cookies.sqlite'
expanded_path = os.path.expandvars(os.path.expanduser(path))
print(f'Deleting files matching pattern: {expanded_path}')
paths = glob.glob(expanded_path)
if not paths:
print('Skipping, no paths found.')
for path in paths:
if not os.path.isfile(path):
print(f'Skipping folder: "{path}".')
continue
os.remove(path)
print(f'Successfully delete file: "{path}".')
print(f'Successfully deleted {len(paths)} file(s).')
EOF
fi
IiI=
Similar Guides
Wider Goal
Guides below includes this guide to achieve a wider goal.See other more general settings that includes this one as one of its actions.These plans combine multiple privacy settings, including this one, for stronger protection.
- Clear Firefox history
- Clear browser history
- Privacy cleanup
This category encompasses a series of scripts aimed at helping users manage and delete their browsing history and related data in Mozilla Firefox. The sc...
A web browser (commonly just called a browser) is software that is used to visit websites. The browsing history, cache entries, and other potentially sen...
These scripts allow you to increase privacy by deleting collected data about you and your behavior.
Same Goal
Other guides in Clear Firefox history See settings that are in the same category as this guide.Using other actions in the same category may help you achieve your goal better.
About the Creators
These people have authored this documentation and written its scripts:
Reviewed By
This guide has undergone comprehensive auditing and peer review:Expert review by undergroundwires
- Verified technical accuracy and editorial standards
- Assessed system impact and user privacy risks
- Audited and verified using automated security tests
Public review by large community
- Privacy enthusiasts and professionals peer-reviewed
- Millions of end-users tested across different environments
- Audited and verified using third-party security software
History
We continually monitor our guides, their impact and other potential privacy options. We update our guides when new information becomes available. On every update, we publicly store who made the change, what has been changed, why the change was made and when the change was made.