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

If on a login screen user submits a form with his username and password, the password is sent in plain text (even with POST, correct me if I am wrong).

So the question is what is the right way to protect the user and his password against the third party who might be eavesdropping on the communication data?

I am aware that HTTPS is asolution to the problem, but is there any way to ensure at least some level of security using standard HTTP protocol (POST request)? (perhaps using javascript in some way)

EDIT I may have left out some important things.

What I was about was a page - that is PHP generated login page, which is of course sent to user in HTTP GET request as a HTML file. There is no (@Jeremy Powel) connection established between server and the client so I can't create such handshaking protocol. And I want the complete process to be transparent to the user - he wants to submit a password, not deal with cryptography.

Thanks.

share|improve this question
Good point about the persistent connection. – Jeremy Powell Oct 17 '09 at 18:47
You probably won't be able to accomplish this without the client using cryptography, but the user doesn't have to see such a process. He just enters his password and the code your PHP generates (javascript for example) handles it all for you. – Jeremy Powell Oct 17 '09 at 18:48
6  
The problem you describe is the reason HTTPS was invented. If you send a secret down to the client to encrypt the password an eavesdropper will be able to sniff it and decrypt the password on the return trip. – user123067 Oct 17 '09 at 18:51
So S in your suggestion could be only password (or username+password combined in any way), as this is the only "secret" the user has. Am I correct? So the solution would be as folows: - Server provides the HTML page with a hidden form field R - The user enters the password, and before the password is sent, the javascript calculates H(R,S) and sends it to the server, perhaps even by using AJAX - The server calculates H(R,S) and compares it with received and sends a response to ajax request whether the authentification passed - The javascript redirects the browser to desired webpage – Kornelije Petak Oct 17 '09 at 18:56
1  
@jeremy powell - while what you describe is common practice, it is also vulnerable to an intermediary who can sniff the cookie from a header and impersonate the user by reusing the cookie. Man in the middle attacks are hard to secure against unless you are using HTTPS – user123067 Oct 17 '09 at 20:03
show 4 more comments

4 Answers

up vote 13 down vote accepted

Using HTTP with SSL will make your life much easier and you can rest at ease very smart people (smarter than me at least!) have scrutinized this method of confidential communication for years.

share|improve this answer
2  
...and "But I have to pay for an SSL certificate!!" is not a valid complaint, since you can get them for $30 these days. Is your data really not worth 30 bucks to protect? – caf Oct 18 '09 at 2:08

You can use a challenge response scheme. Say the the client and server both know a secret S. Then the server can be sure that the client knows the password (without giving it away) by:

  1. Server sends a random number, R, to client.
  2. Client sends H(R,S) back to the server (where H is a cryptographic hash function, like SHA-256)
  3. Server computes H(R,S) and compares it to the client's response. If they match, the server knows the client knows the password.

Edit:

There is an issue here with the freshness of R and the fact that HTTP is stateless. This can be handled by having the server create a secret, call it Q, that only the server knows. Then the protocol goes like this:

  1. Server generates random number R. It then sends to the client H(R,Q) (which cannot be forged by the client).
  2. Client sends R, H(R,Q), and computes H(R,S) and sends all of it back to the server (where H is a cryptographic hash function, like SHA-256)
  3. Server computes H(R,S) and compares it to the client's response. Then it takes R and computes (again) H(R,Q). If the client's version of H(R,Q) and H(R,S) match the server's re-computation, the server deems the client authenticated.

To note, since H(R,Q) cannot be forged by the client, H(R,Q) acts as a cookie (and could therefore be implemented actually as a cookie).

Another Edit:

The previous edit to the protocol is incorrect as anyone who has observed H(R,Q) seems to be able to replay it with the correct hash. The server has to remember which R's are no longer fresh. I'm CW'ing this answer so you guys can edit away at this and work out something good.

share|improve this answer
+1 - you'll need to compute the response on the client side with javascript (or Flash/Silverlight/etc.) – orip Oct 17 '09 at 18:42
I was just going to say the same thing. Not sure of any js libraries out there to do this. It will be interesting to follow this post. – J.Hendrix Oct 17 '09 at 18:45
3  
Doesn't stop man in the middle or impersonation attacks. E.g. through wifi. Seems like this will just give a false sense of security, IMO. – Tom Hawtin - tackline Oct 17 '09 at 18:55
1  
That protects against passive attacks, but a Man in the Middle can still attack. – Douglas Leeder Oct 17 '09 at 18:56
4  
Also it requires the server to know the original password. – Douglas Leeder Oct 17 '09 at 18:57
show 4 more comments

HTTPS is so powerful because it uses asymmetric cryptography. This type of cryptography not only allows you to create an encrypted tunnel but you can verify that you are talking to the right person, and not a hacker.

Here is Java source code which uses the asymmetric cipher RSA (used by PGP) to communicate: http://www.hushmail.com/services/downloads/

share|improve this answer

I would use a server-side and client-side Diffie-Hellman key exchange system with AJAX or multiple form submits(I recommend the former), although I don't see any good implementations thereof on the internet.

share|improve this answer

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.