vote up 10 vote down star
8

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.

Is “double hashing” a password less secure than just hashing it once? Suggests that hashing multiple times may be a good idea. How to implement password protection for individual files? Suggests using salt.

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.

  1. The hashing mechanism must be available in PHP
  2. It must be safe
  3. It can use salt (in this case, are all salts equally good? Is there any way to generate good salts?)

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?

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.

EDIT: The website shouldn't contain anything too sensitive, but still I want it to be secure.

EDIT2: Thank you all for your replies, I'm using hash("sha256",$salt.":".$password.":".$id)

Questions that didn't help: What's the difference between SHA and MD5 in PHP
Simple Password Encryption
Secure methods of storing keys, passwords for asp.net
How would you implement salted passwords in Tomcat 5.5

flag

8 Answers

vote up 17 vote down check

I highly recommend the use of a salt, and the use of only 1 hashing algorithm once. 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.)

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.

My algorithm typically looks like the following:

return sha1( $salt . $password . $email )

Addendum:

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).

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.

In summary:

  1. Make your DB password as secure and as complicated as you can possibly make it. I usually use the GRC password generator 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.
  2. 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.
  3. 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.
  4. 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.


In light of some comments, plus some further knowledge, please understand that my suggestion is for general software 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–but not harmed outright. But, if someone steals the password to something highly personal or financially related, it's a whole other ball park!

For highly secure environments, I suggest the following.

  1. Use a military-grade hash algorithm like SHA512, GOST, or Whirlpool.
  2. For each installation of your software, enforce a policy of mixed characters plus frequent (2x monthly) password rotation.
  3. 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.
  4. 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.
  5. Enforce a maximum login duration such as 1-2 days.
  6. 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.
  7. Treat all input with absolute paranoia; allow nothing that could possibly lead to a session hijacking.
  8. 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).

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.

link|flag
I see. But in my case, the person may have multiple emails. Should I use the ID(BIGINT primary key) instead? – luiscubal Dec 30 at 22:19
@luiscubal: as long as the values for your salt come from a sufficiently large space, it will be a good salt. Your ID value will probably suffice, especially if the number of records is large (the number of IDs will be large). – rmeador Dec 30 at 22:26
1  
a secret doesn't help as your password DB is supposed to be secret anyway - if they can get hold of that DB, they can also find whatever secret you're using. it is however important that the salt is random. – frankodwyer Dec 30 at 23:07
1  
note, it's not really true that 'the computational power to decrypt' doesn't exist yet. since most passwords are dictionary words or dictionary derived, a dictionary based attack is usually very effective (hence the use of password policies and iteration counts). – frankodwyer Dec 31 at 0:51
1  
@wicked flea, I'm not arguing with you. Just pointing out how convoluted and complex this area of our work is. I keep hoping to get schooled by the be-all, end-all smartest, best practice for setting up a small web site's content management system. I'm still learning here. ...every time I read something that makes sense, I soon notice 5 other posts that contradict it. that round-and-round gets dizzying quickly :) – 42 May 26 at 0:16
show 8 more comments
vote up 3 vote down

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.

link|flag
not for password hashing. the attacker only needs to break one hash to retrieve the password. the point is moot anyway as neither MD5 nor SHA1 have any practical breaks available in the password scenario. – frankodwyer Dec 30 at 23:05
sorry, i misread your answer as recommending using two hashes...you are in fact correct. Using two hashes weakens the system in the password case, as they only need to break the weaker hash. – frankodwyer Dec 30 at 23:37
vote up 2 vote down

Google says SHA256 is available to PHP.

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.

link|flag
vote up 1 vote down

A salt and hash (SHA1) is probably OK. However I generally also store an iteration count with this. So the algorithm is (pseudocode):

iterations=random(1..max_iterations)
salt = random(saltbits)
hash=password
for (iterations)
   hash=SHA1(hash+salt)

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.)

With this scheme you can configure to use just 1 iteration or a random number up to as many as you want.

link|flag
vote up 1 vote down

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.

A random salt is your best bet including extra information such as a user name, e.g.:

"salt:password:username"

This makes rainbow tables unfeasible.

link|flag
Would sha1("somesalt".sha1($password)) be safe enough? – luiscubal Dec 30 at 22:18
Sounds extra paranoid to be honest! If you salt both sha1's with extra data that would be decent. – Gerald Kaszuba Dec 30 at 22:19
vote up 1 vote down

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.

link|flag
multiple hashing also protects against dictionary and brute force attacks - i.e. it simply makes them take longer to compute. – frankodwyer Dec 30 at 23:00
double hashing won't give you a significant advantage but multi round hashing iterations are still a feasible defense against dictionary and bruce force attacks. Industrial strength password hashes use 1000+ rounds. PKCS#5's PBKDF1 suggests 1000 rounds minimum. – Berk D. Demir Jan 1 at 22:17
vote up 1 vote down

SHA1 and a salt should suffice (depending, naturally, on whether you are coding something for Fort Knox or a login system for your shopping list) for the foreseeable future. If SHA1 isn't good enough for you, use SHA256.

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 d41d8cd98f00b204e9800998ecf8427e. 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 "MY_PERSONAL_SALT"), the hash for the 'empty string' (i.e. "MY_PERSONAL_SALT") becomes aeac2612626724592271634fb14d3ea6, hence non-obvious to backtrace. What I'm trying to say, that it's better to use any salt, than not to. Therefore, it's not too much of an importance to know which salt to use.

There are actually websites that do just this - 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.

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 could be regarded as another form of salting, but I wouldn't recommend it.

link|flag
The target site shouldn't contain anything too sensitive(it's not a bank), but still I'd rather have it secured. – luiscubal Dec 30 at 22:24
double hashing does not reduce the result space. iterative hashing is a common control against dictionary and brute force attacks (it slows them down much more than it slows down your password checking). – frankodwyer Dec 30 at 23:10
vote up 0 vote down

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).

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 rainbow table 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.

link|flag
+1 for the link to "rainbow table" – Jason S Dec 30 at 23:03
constant salt is not a great idea...probably not a fatal flaw but it unnecessarily weakens the scheme. – frankodwyer Dec 30 at 23:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.