Usage Tips:
- Click on a keyword to enable inline editing.
- Click inside a code block to copy (excludes comments).
- Use the button to view examples.
- Click outside to collapse all examples.
Browse History
# Locate sqlite
$firefoxProfile = Get-ChildItem -Path "$env:APPDATA\Mozilla\Firefox\Profiles\" -Directory | Where-Object { $_.Name -like "*.default-release*" }; $historyDb = Join-Path $firefoxProfile.FullName "places.sqlite"; $historyDb
Sample Output:
TO-DO
Extract saved passwords
# Auto detect path
python3 firefox_decrypt.py
Sample Output:
TO-DO
# Specify path
python3 firefox_decrypt.py /<PATH>/profiles.ini/
Sample Output:
TO-DO
Ref: firefox_decrypt
# With key4.db, logins.json in the same directory
python3 firepwd.py
Sample Output:
TO-DO
Ref: firepwd