I currently use SHA512 with per user random salt to hash user passwords and store them in a database. I thought this was pretty secure until I read this article about the use of cheap GPU's to brute force attack passwords.

As an alternative to changing over to bcrypt would it improve security to simply use the SHA512 multiple times? Running it say 100 or 1000 times on its own output to slow down the process and make it that much harder to brute force? Or does iteration of SHA512 actually yield no security benefit?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You shouldn't fear GPU attacks on SHA-512: GPUs don't break MD5 entirely yet (10+ passwords with complex characters are, so far, very, very long to break, even with huge amounts of power).

SHA-512 is good enough. I'd even say vastly good enough. bcrypt is not superior to SHA-512, but if you feel like using it, do so.

Using a per-user random salt as you do is a very good idea and will make bruteforce attack useless. Running a random (> 0) times SHA-512 on its own output (this number based on user too, like the salt) is an improvement.

Still, you should know that it's much more likely that one of your users uses a weak password (flowers, cherry, date of birth, and others) than your database getting 1) compromised and 2) the SHA-512 passwords getting broken.

On a personal note, I use Whirlpool with a random salt and a random number of iterations, between 256 and 512.

link|improve this answer
How would per user salt make brute force useless?Hacker steals the db,steals the auth code,sees that its sha512,generates a word list,use the stolen salt, and compares. You need one password recovered to hack an account and your salt in this brute force scenario for a single user does almost nothing that I can see. Sure, you can't hash 'userSalt'+'password' and use it for other users in the db to compare hashes, but you can iterate through these quite fast to find simple passwords. Seems if someone steals your auth code and knows the # of iterations, thats only a mild inconvenience then no? – Adam Tuliper Jan 20 at 7:06
@AdamTuliper To crack sha-512 passwords you need absolutely huge rainbow tables and an execution time probably older than the universe itself. A per-user salt requires the hacker to regenerate a new rainbow table for each password he wants to crack, therefore making it even more difficult. It's certainly feasible if you have a few hundred billion years of time. – Cicada Jan 20 at 9:15
You don't need a rainbow table. You simply brute force it using the salt and a word list. It completely negates having to spend the time up front. This will find simple password VERY easily. A high factor on bcrypt can slow this down considerably (ok to be fair so can 200 hash enumerations) but you dont need a rainbow table. If the goal is to get a single user's password (could be a single high profile target) this method would work extremely well any way I look at it,no? – Adam Tuliper Jan 20 at 19:17
You mentioned above "Using a per-user random salt as you do is a very good idea and will make bruteforce attack useless. " trying to understand how that is the case here? It may be, I could be missing something, but if your password is 'mary' and your salt is 'hcsyd' and I go through all 4,5,6 letter combinations with that salt, the time is likely minutes to crack via brute force. – Adam Tuliper Jan 20 at 19:26
@AdamTuliper You've chosen a case in which both the password and salt are awfully bad. A good salt is something of good random quality, for example a hash, a guid, or a fair amount of random bytes. Certainly not a 5-character string composed of lowercase letters only. – Cicada Jan 20 at 19:41
show 5 more comments
feedback

Iteration technique is well known and effective in hashing especially against Rainbow tables. Classes like Rfc2898DeriveBytes use up to 10K iterations to derive proper passwords. Iterating the hash makes it more difficult to brute force back to the original string since it would be needed to store multiple iterations of strings to be able to crack them which whould mean massive amounts of data with larger hashes (i.e. SHA512).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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