I'm following the example on http://marakana.com/blog/examples/php-implementing-secure-login-with-php-javascript-and-sessions-without-ssl.html

The thing I don't fully understand is what is the gain by doing this? The secret word is posted in the form, so anyone who might be sniffing would surely see that secret word, as well as the javascript and be able to figure out the password anyways. Does it really make sense to do this?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

An eavesdropper would not be able to derive the password, because they only know:

  • the secret word
  • the hash of the secret word/password combination

Since hashes are one-way, you cannot derive the password itself from these.

What you gain: The user has set up a password which the server is able to verify, without having to send the plaintext password itself.

link|improve this answer
1  
I will note that all this does is avoid sending the password in plain text. This provides no security against session hijacking (simply stealing the session cookie once the user is logged on). – Dark Falcon Oct 19 '11 at 16:34
Downvoter: Please correct me if I 'm wrong. Thanks. – Jon Oct 19 '11 at 16:34
@DarkFalcon: How is session hijacking related to the question? – Jon Oct 19 '11 at 16:35
1  
@DarkFalcon: It says secure "login" (only), so IMHO it works as advertised. But in any case, I think such comments would be better targeted at that article itself. The question asked here is much more specific: "why do this?" – Jon Oct 19 '11 at 16:44
1  
@jfriend00: Well said, but there is an important difference: if the password is compromised then the attacker can use it to login on their own, at any time. Stealing your session would involve eavesdropping on the spot, and would not allow the attacker to keep using a stolen session forever. – Jon Oct 19 '11 at 16:59
show 15 more comments
feedback

If you do some md5-hashing, the man-in-the-middle-attacker would have to crack that hash to have the password, which makes it much more difficult. Use some salt to make rainbow-attacks more difficult.

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.