I was reading this Ars article on password security and it mentioned there are sites that "hash the password before transmitting"?

Now, assuming this isn't using an SSL connection (HTTPS), a. is this actually secure and b. if it is how would you do this in a secure manor?

Edit 1: (some thoughts based on first few answers)

c. If you do hash the password before transmission, how do you use that if you only store a salted hash version of the password in your user credentials databas?

d. Just to check, if you are using a HTTPS secured connection, is any of this necessary?

link|improve this question

If you're using HTTPS, send the password as typed in. There are still potential vulnerabilities, but far less than not using SSL, and offhand I can't think of a vulnerability SSL has that this scheme doesn't. – David Thornley Jun 9 '10 at 19:51
feedback

3 Answers

up vote 4 down vote accepted

This is only secure if the server sends a non-reusable salt (and, of course, if you use a secure hash).

Otherwise, the attacker can simply sniff the users hash, then replay the hash to log in as the user.

Note that the login is vulnerable to a man-in-the middle attack.

link|improve this answer
+1 Absolutely, if the hacker can simply re-post the hash to the server it's no more secure than a plaintext password. – Paolo Jun 9 '10 at 19:15
@Paolo: At least the attacker cannot use the password on other sites. – SLaks Jun 9 '10 at 19:19
So would this be a viable implementation (assuming javascript enabled): when the user submits, do an ajax call with a unique id for the request, server responds with non-reusable salt based on id, client browser uses SHA-1 (or better) to hash salt and password, and then transmit that to server which checks password, ajax id, username? – wag2639 Jun 9 '10 at 19:31
nevermind, that wouldn't work, I just read Thorarin post and comments and realized double hashing would be a problem. If you securely store as a salted hashed in your database, you wouldn't be able to use it with the ajax salt/hash unless you use some kind of decryptable hash. – wag2639 Jun 9 '10 at 19:35
1  
PS: A decryptable hash is called an encryption. – SLaks Jun 9 '10 at 19:49
show 5 more comments
feedback

I wouldn't call it secure, but it's better than nothing. If you let the server pick a hash salt every time a user logs in, that will protects against replay. However, there's nothing protecting users from man in the middle attacks while they are logged in.

You will have to store the salt you generated somewhere on the server while the user is logging in. If that is a problem, you could hash the salt with another (fixed) salt, use the result as a checksum and add both to your login form as hidden fields.

There are some JavaScript SHA-1 implementations around that should do the trick. Don't use MD5 if you can help it.

link|improve this answer
+1 -- but it's not much better than nothing if you care about security at all. – tvanfosson Jun 9 '10 at 19:23
@tvanfosson: one problem is that you end up having to store passwords in plain text, or use some kind of double hashing. The latter makes it rather complicated, with limited benefits. – Thorarin Jun 9 '10 at 19:28
I'd be more concerned that Mallory would have generated a rainbow table based on the salt she's passing to Bob (or, since she's smart, several rainbow tables and with different salts) and will eventualy triangulate Bob's real password so she can use it in the future to talk with Alice. – tvanfosson Jun 9 '10 at 19:31
What's wrong with double-hashing? – SLaks Jun 9 '10 at 19:50
@tvanfosson: that is a concern, yes. Each new hash makes it more likely someone will be able to find the original password. If they tried hard enough :) – Thorarin Jun 9 '10 at 19:55
feedback

You can protect this scheme against man-in-the-middle attacks by using the salted database hash to generate a secret key for symmetric encryption.

It would work like this:

  • Server looks up the password hash in the database HD along with salt SD
  • Server chooses a random salt SR
  • Server generates a secret key K by hashing the database hash with SR
  • Server sends SD and SR to the client

  • Client calculates HD by hashing the user's password with SD
  • Client calculates K by hashing HD with SP
  • Client encrypts all server communication with K

This scheme creates a random session key K based on the user's password.
A man in the middle would not be able to derive K without knowing the user's password (or HD, which must be kept secret), and therefore cannot impersonate the server.

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.