vote up 4 vote down star

Hi,

I am using PHP. I used to use native mysql function password() to store passwords. I was told that password() is not safe anymore. What would be the best method to store passwords in PHP? is it MD5?

flag

6 Answers

vote up 12 vote down check

I recommend first prepending a salt value to your password, followed by hashing the resultant string with a reasonably strong hashing function like SHA256. This secures against the obvious (plain text passwords) and the not so obvious (attack using Rainbow tables).

Keep in mind that if you store passwords in this way, you will not be able to retrieve a user's lost password. They'll only be able to reset passwords. This is because you'll be using a one way hash. But this limitation is generally worth the tradeoff for a more secure password storage system. Even if your database is compromised, your user's passwords will still be exceedingly difficult and probably unpractical to recover by a would be attacker.

link|flag
3  
+1, thanks for using the SHA2x generation of hashes. – Kyle Rozendo Oct 20 at 5:28
2  
This is one of two ways of dealing with passwords. The other is; don't. Use OpenId/Facebook Connect/Live Auth/something else; in other words; let somebody else store the password. – noocyte Oct 20 at 6:09
vote up 0 vote down

Salt and hash.

We typically use a random guid as the salt and then SHA512 to hash.

link|flag
vote up 0 vote down

If you can avoid storing the user password that's your best option, imo. Use OpenId (like Stackoverflow) to authenticate the user. Or Live Authentication (http://dev.live.com/liveid/). If you really, really need to authenticate the users yourself; do what Asaph says in his answer. :)

link|flag
vote up 1 vote down

To argue with the the other answer, VBulletin does a horrid job of hashing passwords. Their salt is only 3 characters long, only fractionally increasing the security of your application.

Check out http://www.openwall.com/phpass/ . They do an excellent job of using a long hash, unique to each password, and running the password through md5 thousands of times. It is one of the best hashing systems for php out there.

link|flag
2  
MD5? :( Thousands of times? Double :( – Kyle Rozendo Oct 20 at 5:27
Which algorithm are you looking at? Unless they suddenly changed it, it last used 2048 passes of md5, each using the salt. – phantombrain Oct 20 at 6:04
vote up -2 vote down

There is no safest method to store passwords. Saving MD5 hashes in a table usually suffices. If you are curious you can make a longer hash out of you credentials (for example using the sha1 algorithm). And of course there is a method, called salting which is considered a must have for really "safe" password storages.

link|flag
3  
I downvoted this because it is incredibly dangerous. There are pre-populated md5 hash tables available online. Heck, even just googling the hash can sometimes give an answer. Just using md5 without a salt is horrid password storage and should never be considered. – phantombrain Oct 20 at 5:25
Indeed, everyone should know 1) MD5 is basically cracked, and SHA-1 has about 15 years of life before it will probably be cracked. 2) One way hash functions do not protect against pre-generation attacks. Salting and sha256 should be the minimum standard. But you can do better: SRV knows: H = SHA256 (PUBLIC_SITE_PREFIX + ACTUAL_PASSWORD) SRV sends: P = randomly prefix generated on a per-login basis. CLIENT sends: SHA256(P + H) Traffic snoopers are basically stopped, and insiders are forced to perform a brute force attack from scratch, which SHA256 is so far safe from. – Paul Hsieh Oct 20 at 5:45
vote up 1 vote down

You need to salt the password.

vBulletin does a pretty good job at storing passwords. md5(md5(password) + salt);

link|flag
I'm not sure what the point of double-md5ing is... thats just a form of security through obsecurity isn't it? "oh they'll never guess that i md5'd it twice!" – Mark Oct 20 at 6:16
A rainbow attack gets really hard to crack. It's now 32 characters plus the three salt. – jdelator Oct 20 at 6:23
@Mark: except that their source code is shown... :P – Kaitsuli Oct 20 at 6:45

Your Answer

Get an OpenID
or

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