Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Since the introduction of Rainbow tables, and using only hashed passwords (e.x: MD5) to stored passwords in database is not the best secured way.

When people talk about salted hashes, the always use it in this way hash(password . salt) or even hash(hash(password) . salt).

I don't know why to use salt, and add extra entry for each password to store the salt? Why don't we just use hash(hash(password)), or even hash(hash(hash(password)))?

Is it more secure to put salt? or just the sense of being more complex?

share|improve this question
possible duplicate of What is the purpose of the "salt" when hashing? – Lucero Dec 19 '10 at 13:48
9  
Why do you think hashing the hash would increase the security of the password without salting it? It's just like whisking batter for another 10 minutes without adding any extra condiments from the secret recipe. – BoltClock Dec 19 '10 at 14:00
@BoltClock +1 :D – Yousf Dec 19 '10 at 15:49

9 Answers

up vote 21 down vote accepted

You can build a rainbow table based on a dictionary for hash(hash(pwd)) in just twice the time as for hash(pwd) (even less because performance is mainly about disc writes) and it wouldn't even be larger. Using salt greatly expands the size needed for the table up to the amount where it becomes impractical.

Also (even more important), users often have the same password. Without an individual salt per user, if you've broken one users password, you've broken all other users that have the same password.

share|improve this answer
+1 exactly what I asked about. thanks:) – Yousf Dec 19 '10 at 15:48
But how would you know the exact number of iterations to hash? Doesn't that also count as salting? Regarding your second paragraph, it's only a solution if you use nonces and not static salts. – Alix Axel Jan 2 '11 at 3:35
2  
Hrm..second paragraph never occurred to me. That's a good argument for per-user salts. – Mark Jan 2 '11 at 4:47
@Alix Axel: That's right of course. I just implied per user salts and since the Q&A seems quite popular I will amend the answer accordingly. – TToni Jan 9 '11 at 7:14

To keep things simple, let's imagine everyone uses digits as their passwords.

If everyone uses 8 digits as their password, that's 100,000,000 possibilities. If you're trying to break the system, you need to hash all those possibilities. If you have a "hash of hash of hash", you still just need to hash those 100,000,000 possibilities - just in a slightly more complicated way.

Now let's pretend we have a 4 digit salt as well. Now, instead of 100,000,000 possibilities there are 1,000,000,000,000... we've given a potential attacker 10,000 times the work to do, instead of just 3 times as much work to do.

Basically, think of a salt as a way of artificially making everyone's password longer, and thus extending the space that a dictionary attack has to work on.

EDIT: Just to be clear, given that the salt is provided in plain-text as well, you would still only have 100,000,000 possibilities to try to attack any one hash. However, it means that after trying those possibilities for one password, the attacker wouldn't have any useful information for attacking another password. Without a salt, an attacker could create a dictionary of 100,000,000 possibilities and then know all the passwords in a database, given only their hashes. In other words, salts help to prevent bulk attacks. They also mean that you can't pregenerate the dictionary: in order to attack a single password effectively, you have to know the salt beforehand. Without a salt, you could compute the hash of every possible password before you get access to the hashes themselves.

share|improve this answer
@Downvoter: Care to comment? – Jon Skeet Dec 19 '10 at 14:06
2  
I didn't downvote, but I think your explanation is a little misleading. Because the salt is known it does not make guessing an individual password any harder. It just makes building a table to attack more than one password harder, and only if every user has an unpredictable salt. – GregS Dec 19 '10 at 14:56
@GregS: Okay, will edit. – Jon Skeet Dec 19 '10 at 15:43

If you don't use a salt then an attacker can build a single rainbow table can be used to attack every password in your database. Hashing multiple times does not protect you without a salt, because rainbow tables work by chaining hashes together in exactly the way you describe: hash(hash(password)).

If you add a random salt for each user then the attacker cannot re-use the same table to crack two passwords so their work becomes much harder. As an added benefit, two users with the same password will hash to different values if a salt is used.

Your idea of iterating the hash is still good, but you need the salt too. If you do this:

function hashPassword(password, salt) {
    result = hash(salt . password)
    for (i = 0; i < 1000; i++) {
        result = hash(salt . result)
    }
    return result
}

then you make the attacker's work 1000 times harder with a negligible effect on legitimate users. Note that attackers can test millions of candidate passwords each second on a single, low-end computer - hash functions are designed to be fast. This 1000 iteration loop can change a feasible attack into one that will take 100 years or more. When computers speed up in 18 months time just change the number of iterations to 2000.

The salt, hashing algorithm and iteration count do not need to be secret and can be stored in your database alongside the computed hash. You can choose a fixed iteration count and hash algorithm, but the salt must be randomly generated for each user.

share|improve this answer
1  
+1 for emphasizing the must for randomness – Jacco Dec 19 '10 at 16:20
Would the downvoter care to comment? Is there something you disagree with? – Cameron Skinner Jan 14 '11 at 13:03

Both iterating the hash and using a salt increase the security of password hashing. But they protect against completely different attacks.

Iterating the hash increases the work required for brute-force attacks. But you shouldn't use a naive iteration as you suggest, but an algorithm designed for it, such as PBKDF2

A salt protects against pre-calculated tables, so it should be different for every website and user.

share|improve this answer

The point of the salt is to make dictionary attacks moot. Now no matter how much you rehash a hash, the same input is always going to yield the same output hash, and therefore one can build a dictionary for that. So while multiple hashing may make it more difficult for brute-force attacks, it doesn't do anything for dictionary attacks.

share|improve this answer
the point of a hash is to protect agains precomputation attacks. Dictionary attacks are still possible. – Jacco Dec 19 '10 at 16:18
@Jacco: "the point of a hash is to protect agains precomputation attacks" - come again? – Lucero Dec 19 '10 at 16:27
hmm, didn't reread my comment. The point of salting your hash is to protect against precomputation attacks. – Jacco Dec 19 '10 at 16:50
@Jacco, I agree with that. But that implies that it does help against dictionary-based attacks, assuming that by dictionary a set of precomputed values is meant (maybe my dictionary definition is wrong). – Lucero Dec 19 '10 at 16:53
A dictionary attack makes use of the fact that many passwords are based upon actual words (as collected in a dictionary). The entropy of a 8 character string created from sequences of characters found in a dictionary is a lot lower than if it where a random string. The salt, being non-secret by definition, does not change the entropy of the hashed string. It does however (tries to) make sure that each and every hash is different. So an attacker trying a dictionary attack needs to attack every hashed value separate. In other words, the computational result of the attack cannot be reused. – Jacco Dec 19 '10 at 17:04
show 2 more comments

Nothing stops anyone for building a Rainbow table for doubly hashed passwords.

share|improve this answer

I use a comparible method to hash passwords for users that login. A salt (random value) is generated in the session and is sent to the client. The user enters their password, which is then hashed with the salt and sent back. This makes sure that the value sent from the server is different each time, making it harder to break in using a man in the middle attack.

share|improve this answer

http://www.onlinehashcalculator.com/ contains a great article on hashing and salts.

The same article can also be found at http://crackstation.net/hashing-security.htm

share|improve this answer
1  
Please summarize the gist of it here, or quote the most relevant passage or three. Link rot happens. – ЯegDwight Aug 29 '12 at 20:16

The salt is a site- or user-specific value. That means that in order to retrieve the passwords, an attacker must have both access to the database AND know the salt.

In addition, the attacker could additionally generate a table once and then use it against multiple sites. However, with salts, attackers must generate one table per site or even once per user(making the attacks slower).

Site-specific salts add very little to the security of a website. As said in comments, having a combination of site-specific and user-specific salts can significantly improve security over just a site-specific salt.

A few years ago I asked here on stackoverflow a question about password storage which might be helpful to you. See Secure hash and salt for PHP passwords.

share|improve this answer
5  
The salt would usually be in the database though. After all, you want a different salt for every user - otherwise two users with the same password would have the same hash, which is a security vulnerability. Having a single site-specific key means that if that single key is compromised, all your users are vulnerable from just a single dictionary recomputation. – Jon Skeet Dec 19 '10 at 13:44
2  
@Jon is correct: the salt is not "site-specific". It should be randomly generated for each user. Note that the salt does not need to be a secret and should not be considered as such. – Cameron Skinner Dec 19 '10 at 13:51
1  
Of course, you can use multiple salts, such as one for the site and one per user... – Lucero Dec 19 '10 at 13:57
1  
@Jon Skeet - Why not have a mix of both? Partially site-specific and NOT in the database, and another part user-specific and in the database? EDIT: @Lucero Ops. Didn't see your comment... – luiscubal Dec 19 '10 at 14:02
1  
@Lucero: No point. Just have a single, random salt for each user. This means less code and (probably) fewer bugs. Don't go claiming that having more salts makes it harder for the attacker: it doesn't. That's security through obscurity which we all know is not security at all. – Cameron Skinner Dec 19 '10 at 14:04
show 7 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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