firepwd
firepwd copied to clipboard
firepwd.py, an open source tool to decrypt Mozilla protected passwords
fix bug I meeted a str param not windowspath Exception on 376 line sqlite3.connect() method。
Hello I forgot my master pasword and Im trying to find my master password from my profile folder. Im trying this code: `python firepwd.py -p 'MISC*' -d [MY_PROFILE_PATH]` on windows...
Sometimes the row might not have the `encryptedUsername` or `encryptedPassword` fields, this PR aims to fix said issue.
Ist there a script to modify or add new password to logins.json? Thanks
As of v144, Firefox updated the encryption scheme on how usernames and passwords are stored on disk. https://www.firefox.com/en-US/firefox/144.0/releasenotes/ They don't use 3DES-CBC anymore, but AES256-CBC, _in casu_ the algo_oid changed...
With this PR we make firepwd compatible with AES256_CBC decryption as implemented since v144. However, I had to make a choice here since it's just a quick patch and not...