I'm relying on Firefox to remember my passwords, using a Master Password of more than 25 characters. How secure is this set-up?
5 Answers
In short - Firefox uses triple DES in CBC mode with Master Password.
More details: nice article about this topic is here: http://luxsci.com/blog/master-password-encryption-in-firefox-and-thunderbird.html and if you want some more details, here is mozillaZine article: http://kb.mozillazine.org/Master_password. This article gives you a detailed comparison between the major browsers.
It is believed that it is safe to store passwords such way, however, I do not trust any software. Maybe it sounds too paranoid, but we can never know where the vulnerability hides.
- 4,315
- 21
- 33
-
3One article says to enable FIPS for improved protection. Why isn't FIPS enable by default then? – Roger C S Wernersson Nov 18 '10 at 08:36
In order to answer "How secure are my passwords in the hands of Firefox using a Master Password?" If Firefox has any exploitable bug, then it is not secure no matter how much encryption is wrapped around your passwords. Had the question started with "Assuming Firefox is the most secure browser available in terms of exploits and ignoring any plugins..." then i would agree the answer may be irrelevant. If a click interface that is not susceptible to keystroke logging is used, then the passwords may still be safe even with a keystroke-logger in the browser. If there is a "man-in-the-browser", physically typing in a password can be intercepted and if Mozilla emulates key-presses then these would also be intercepted. If Firefox uses more direct memory access, i still would not be surprised if it could be intercepted.
"Man-in-the-browser" is not a machine level rootkit, but at the application level. Most common is malicious AJAX which can easily listen to every keystroke -- that is AJAX 101. Or could be malicious binary code injected remotely into the browser or into a plugin.
To mitigate "man-in-the-browser", use several different firefox profiles siloed for banking, email accounts, ClipperZ, and others or just use Qubes-OS.
If there is a "man-in-the-machine" or system level rootkit, then all your passwords are owned no matter if they are stored in KeePassX or ClipperZ or Firefox.
- 284
- 1
- 5
-
5Sounds correct, but irrelevant. This is true even if I don't let Firefox save my passwords. The root-kit problem is true for all applications on the infected computer, not specific to Firefox. – Roger C S Wernersson Jun 28 '11 at 10:30
Firefox uses a fairly weak hashing method: just one iteration of SHA-1. You could use a more secure password to compensate for this, but it's less secure than what something like something like LastPass would offer.
Wladimir Palant (creator of Adblock Plus) wrote a post about this in March 2018:
It is common knowledge that storing passwords there without defining a master password is equivalent to storing them in plain text. While they will still be encrypted in logins.json file, the encryption key is stored in key3.db file without any protection whatsoever.
when I looked into the source code, I eventually found the sftkdb_passwordToKey() function that converts a password into an encryption key by means of applying SHA-1 hashing to a string consisting of a random salt and your actual master password. Anybody who ever designed a login function on a website will likely see the red flag here. This article sums it up nicely:
Out of the roughly 320 million hashes, we were able to recover all but 116 of the SHA-1 hashes, a roughly 99.9999% success rate.
The problem here is: GPUs are extremely good at calculating SHA-1 hashes. Judging by the numbers from this article, a single Nvidia GTX 1080 graphics card can calculate 8.5 billion SHA-1 hashes per second. That means testing 8.5 billion password guesses per second. And humans are remarkably bad at choosing strong passwords. This article estimates that the average password is merely 40 bits strong, and that estimate is already higher than some of the others. In order to guess a 40 bit password you will need to test 239 guesses on average. If you do the math, cracking a password will take merely a minute on average then. Sure, you could choose a stronger password. But finding a considerably stronger password that you can still remember will be awfully hard.
There is a ten-year-old bug for this, which is still open as of August 2019.
-
SHA-1 is not an encryption method, it's a cryptographic hash being (mis)used as a key derivation function. – AndrolGenhald Aug 02 '19 at 22:54
Firefox sync stores your passwords and transfers them to other synced computers, but doesn't secure them with your master password.
So if an attacker can open your browser and activate sync, then sync with a profile on their browser, your passwords will be synchronised!
- 61,367
- 12
- 115
- 320
- 7
- 1
-
5I finally found the time to test this and it seems activating sync requires my master password, if I have one set. This should make your point a non-issue. – Roger C S Wernersson Sep 28 '12 at 17:08
I believe that the password recovery tool from nirsoft.net can just bypass this, but I have not checked this specifcally
- 18,885
- 6
- 58
- 107
-
2I though such tools used a brute-force approach, if protected by a Master Password. – Roger C S Wernersson Nov 22 '10 at 08:42
-
1Nah, usually this crap can just be reverse engineered and the flow of execution modified to skip little requirements like passwords to access local datastores. – atdre Nov 22 '10 at 21:27
-
3Hmm. Define "this crap" please. :-) Also, I believe the password file on Firefox is encrypted – Roger C S Wernersson Jun 28 '11 at 10:31
-
1@RogerWernersson It is, there is an option for FIPS-140 support too (https://developer.mozilla.org/en/docs/NSS/FIPS_Mode_-_an_explanation). atdre please gives sources rather than telling lies. – Shadok Oct 10 '13 at 15:01