Created
May 6, 2020 14:49
-
-
Save ekuiter/dcaec22356a093be2ae63f3ba367da5c to your computer and use it in GitHub Desktop.
Extract binary files from Firefox cache
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Go to the cache entry of the file: about:cache-entry?storage=disk&context=&eid=&uri=<the URI> | |
| Copy the entire HEX dump into an editor that can handle large files and save as "file.dat". Notepad++ works for me. | |
| cat file.dat | cut -d: -f2 | cut -d" " -f2-34 > file.hex && xxd -r -p file.hex my_file.mp3 (or whatever suffix the file has) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment