Secure hash and salt for PHP passwords - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T00:26:21Z http://stackoverflow.com/feeds/question/401656 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/401656/secure-hash-and-salt-for-php-passwords 11 Secure hash and salt for PHP passwords luiscubal 2008-12-30T22:02:45Z 2009-05-26T00:25:11Z <p>It is currently said that MD5 is partially unsafe. Taking this into consideration, I'd like to know which mechanism to use for password protection.</p> <p><a href="http://stackoverflow.com/questions/348109/is-double-hashing-a-password-less-secure-than-just-hashing-it-once">Is “double hashing” a password less secure than just hashing it once?</a> Suggests that hashing multiple times may be a good idea. <a href="http://stackoverflow.com/questions/55862/how-to-implement-password-protection-for-individual-files#55904">How to implement password protection for individual files?</a> Suggests using salt.</p> <p>I'm using PHP. I want a safe and fast password encryption system. Hashing a password a million times may be safer, but also slower. How to achieve a good balance between speed and safety? Also, I'd prefer the result to have a constant number of characters.</p> <ol> <li>The hashing mechanism must be available in PHP</li> <li>It must be safe</li> <li>It can use salt (in this case, are all salts equally good? Is there any way to generate good salts?)</li> </ol> <p>Also, should I store two fields in the database(one using MD5 and another one using SHA, for example)? Would it make it safer or unsafer?</p> <p>In case I wasn't clear enough, I want to know which hashing function(s) to use and how to pick a good salt in order to have a safe and fast password protection mechanism.</p> <p>EDIT: The website shouldn't contain anything <strong>too</strong> sensitive, but still I want it to be secure.</p> <p>EDIT2: Thank you all for your replies, I'm using hash("sha256",$salt.":".$password.":".$id)</p> <p><em>Questions that didn't help:</em> <a href="http://stackoverflow.com/questions/157998/whats-the-difference-between-sha-and-md5-in-php">What's the difference between SHA and MD5 in PHP</a><br> <a href="http://stackoverflow.com/questions/30946/simple-password-encryption">Simple Password Encryption</a><br> <a href="http://stackoverflow.com/questions/198803/secure-methods-of-storing-keys-passwords-for-asp-net">Secure methods of storing keys, passwords for asp.net</a><br> <a href="http://stackoverflow.com/questions/205153/how-would-you-implement-salted-passwords-in-tomcat-5-5">How would you implement salted passwords in Tomcat 5.5</a></p> http://stackoverflow.com/questions/401656/secure-hash-and-salt-for-php-passwords/401663#401663 1 Answer by Gerald Kaszuba for Secure hash and salt for PHP passwords Gerald Kaszuba 2008-12-30T22:05:30Z 2008-12-30T22:28:49Z <p>Salt and a SHA1 is generally what I use. It's secure and if your data is compromised it will take a very long time to crack.</p> <p>A random salt is your best bet including extra information such as a user name, e.g.:</p> <pre><code>"salt:password:username" </code></pre> <p>This makes rainbow tables unfeasible.</p> http://stackoverflow.com/questions/401656/secure-hash-and-salt-for-php-passwords/401684#401684 17 Answer by The Wicked Flea for Secure hash and salt for PHP passwords The Wicked Flea 2008-12-30T22:15:09Z 2009-05-26T00:25:11Z <p>I highly recommend the use of a salt, and the use of only 1 hashing algorithm <em>once</em>. Even MD5 is still safe, as aside from a brute-force attack the computational power needed to decrypt doesn't exist yet. (And if it does, it isn't available to your run-of-the-mill hacker.)</p> <p>A good salt should incorporate letters, numbers, and symbols. I'd suggest a length longer than 8 characters; 32 is a good idea if you aren't hashing by the email address.</p> <p>My algorithm typically looks like the following:</p> <pre><code>return sha1( $salt . $password . $email ) </code></pre> <p><strong>Addendum:</strong></p> <p>As discussed in the comments, a secret in your hash doesn't do any good if your database is compromised. For this matter, making the hash algorithm a stored procedure is a security risk (as you put the hash algorithm with the hashes themselves). If your database becomes compromised you should always change your salt, and send out an administrative message with a temporary password for each user (don't exclude the explanation).</p> <p>While the computational power to crack a hash doesn't exist, and this hash is roughly as secure as they come ... none of it will guard against a weak password. For this purpose brute-force attacks will always be more effective, and so must be guarded against more strongly. I'd suggest a 15 minute ban for 5 failed attempts, and of course a logging of the event.</p> <p>In summary:</p> <ol> <li>Make your DB password as secure and as complicated as you can possibly make it. I usually use the <a href="https://www.grc.com/passwords.htm" rel="nofollow">GRC password generator</a> because it is 64 characters long with maximum entropy. Only write it down in a place that isn't: in source control, in a shared folder, in a system location.</li> <li>Hash more than just the password and salt. In fact, the more you cram in the more secure the hash is. However, any time the profile fields are changed that are used for the hash the password must be given to regenerate it; which is why the primary email address works best.</li> <li>Enforce some kind of password strength indicator in your software. Really, this shouldn't even be omitted! Not only that, but require a minimum strength to actually accept the password. While yes, this is a minor inconvenience to the users it makes them far safer from a brute force attack.</li> <li>Ensure your salt and algorithm are stored separately from the database, IE not in a stored procedure. Passwords are typically compromised one at a time, and usually the database itself is attacked instead of the filesystem; if your algorithm is there you've given the hacker all they need to crack your passwords on their own system without your brute force protections.</li> </ol> <p><hr /></p> <p>In light of some comments, plus some further knowledge, please understand that my suggestion is for <em>general software</em> that isn't for something that has to be extremely secure. IE, if someone steals the password to your forum account, most the time you'll be ticked about it&ndash;but not harmed outright. But, if someone steals the password to something highly personal or financially related, it's a whole other ball park!</p> <p>For highly secure environments, I suggest the following.</p> <ol> <li>Use a military-grade hash algorithm like SHA512, GOST, or Whirlpool.</li> <li>For each installation of your software, enforce a policy of mixed characters plus frequent (2x monthly) password rotation.</li> <li>For each installation of your product, generate a very long (very, very!) random number that is stored in the configuration file as a secondary salt. I'd suggest numbers in the range of 1 trillion.</li> <li>NEVER STORE THE PASSWORD OUTSIDE THE DATABASE, EVER. If you must, key the user's account (in the database) to a specific login code that is then placed in the session (not a cookie) which differs at each login.</li> <li>Enforce a maximum login duration such as 1-2 days.</li> <li>Do not restrict password length, save the hashed result that is stored in the database. If the user memorizes a 60+ character long mnemonic let him use it, rather than enforcing "your password must be between 6 and 24 characters in length." This is the stupidest policy I see on every website, as the longer the length is, with more variations, the more secure the password is.</li> <li>Treat all input with absolute paranoia; allow nothing that could possibly lead to a session hijacking.</li> <li>Enforce a failure policy of 3 attempts-per-hour. Frankly, the user should be emailed immediately with the option to unlock if they've forgotten their password. But then again, assume it is compromised and limit that to 3 attempts as well. If someone uses all 9 attempts, then there's an obvious attack going on and the IP should be banned (or the incompetent user forced to pick another password).</li> </ol> <p>And last but not least: I am not an expert. Be as paranoid as possible, make things as hard to intrude as possible, then, if you are still worried, contact a white-hat hacker to see what they say about your code/system.</p> http://stackoverflow.com/questions/401656/secure-hash-and-salt-for-php-passwords/401691#401691 3 Answer by Tom Haigh for Secure hash and salt for PHP passwords Tom Haigh 2008-12-30T22:18:10Z 2008-12-31T16:35:22Z <p>I wouldn't store the password hashed in two different ways - your system is then at least as weak as the weakest of the hash algorithms you are using.</p> http://stackoverflow.com/questions/401656/secure-hash-and-salt-for-php-passwords/401693#401693 0 Answer by rmeador for Secure hash and salt for PHP passwords rmeador 2008-12-30T22:18:25Z 2008-12-30T22:18:25Z <p>I usually use SHA1 and salt with the user ID (or some other user-specific piece of information), and sometimes I additionally use a constant salt (so I have 2 parts to the salt).</p> <p>SHA1 is now also considered somewhat compromised, but to a far lesser degree than MD5. By using a salt (any salt), you're preventing the use of a generic <a href="http://en.wikipedia.org/wiki/Rainbow_table" rel="nofollow">rainbow table</a> to attack your hashes (some people have even had success using Google as a sort of rainbow table by searching for the hash). An attacker could conceivably generate a rainbow table using your salt, so that's why you should include a user-specific salt. That way, they will have to generate a rainbow table for each and every record in your system, not just one for your entire system! With that type of salting, even MD5 is decently secure.</p> http://stackoverflow.com/questions/401656/secure-hash-and-salt-for-php-passwords/401696#401696 2 Answer by Alejandro Atienza Ramos for Secure hash and salt for PHP passwords Alejandro Atienza Ramos 2008-12-30T22:20:54Z 2008-12-30T22:20:54Z <p>Google says SHA256 is available to PHP.</p> <p>You should definitely use a salt. I'd recommend using random bytes (and not restrict yourself to characters and numbers). As usually, the longer you choose, the safer, slower it gets. 64 bytes ought to be fine, i guess.</p> http://stackoverflow.com/questions/401656/secure-hash-and-salt-for-php-passwords/401698#401698 1 Answer by Henrik Paul for Secure hash and salt for PHP passwords Henrik Paul 2008-12-30T22:21:57Z 2008-12-30T22:29:51Z <p><a href="http://php.net/sha1" rel="nofollow">SHA1</a> and a salt should suffice (depending, naturally, on whether you are coding something for <a href="http://en.wikipedia.org/wiki/United_States_Bullion_Depository" rel="nofollow">Fort Knox</a> or a login system for your shopping list) for the foreseeable future. If SHA1 isn't good enough for you, use <a href="http://php.net/manual/en/function.hash.php" rel="nofollow">SHA256</a>.</p> <p>The idea of a salt is to throw the hashing results off balance, so to say. It is known, for example, that the MD5-hash of an empty string is <code>d41d8cd98f00b204e9800998ecf8427e</code>. So, if someone with good enough a memory would see that hash and know that it's the hash of an empty string. But if the string is salted (say, with the string "<code>MY_PERSONAL_SALT</code>"), the hash for the 'empty string' (i.e. "<code>MY_PERSONAL_SALT</code>") becomes <code>aeac2612626724592271634fb14d3ea6</code>, hence non-obvious to backtrace. What I'm trying to say, that it's better to use <em>any</em> salt, than not to. Therefore, it's not too much of an importance to know <em>which</em> salt to use.</p> <p>There are actually <a href="http://gdataonline.com/seekhash.php" rel="nofollow">websites that do just this</a> - you can feed it a (md5) hash, and it spits out a known plaintext that generates that particular hash. If you would get access to a database that stores plain md5-hashes, it would be trivial for you to enter the hash for the admin to such a service, and log in. But, if the passwords were salted, such a service would become ineffective.</p> <p>Also, double-hashing is generally regarded as bad method, because it diminishes the result space. All popular hashes are fixed-length. Thus, you can have only a finite values of this fixed length, and the results become less varied. This <em>could</em> be regarded as another form of salting, but I wouldn't recommend it.</p> http://stackoverflow.com/questions/401656/secure-hash-and-salt-for-php-passwords/401704#401704 1 Answer by frankodwyer for Secure hash and salt for PHP passwords frankodwyer 2008-12-30T22:24:48Z 2008-12-30T22:24:48Z <p>A salt and hash (SHA1) is probably OK. However I generally also store an iteration count with this. So the algorithm is (pseudocode):</p> <pre><code>iterations=random(1..max_iterations) salt = random(saltbits) hash=password for (iterations) hash=SHA1(hash+salt) </code></pre> <p>then store salt, iterations and the hash (plus it's a good idea to store an identifier of the hash function - say 0 = SHA1. This allows the hash function to be replaced in future.)</p> <p>With this scheme you can configure to use just 1 iteration or a random number up to as many as you want.</p> http://stackoverflow.com/questions/401656/secure-hash-and-salt-for-php-passwords/401721#401721 1 Answer by Max for Secure hash and salt for PHP passwords Max 2008-12-30T22:29:28Z 2008-12-30T22:29:28Z <p>In the end, double-hashing, mathematically, provides no benefit. In practice, however, it is useful for preventing rainbow table-based attacks. In other words, it is of no more benefit than hashing with a salt, which takes far less processor time in your application or on your server.</p>