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

I'm currently working on a PHP OpenID provider that will work over HTTPS (hence SSL encrypted).
Is it wrong for me to transmit the password as plain text? HTTPS in theory, cannot be intercepted, so I don't see anything wrong. Or is this unsafe at some level and I'm failing to see this?

share|improve this question

5 Answers

up vote 21 down vote accepted

It is safe. That's how the entire web works. All passwords in forms are always sent in plain text, so its up to HTTPS to secure it.

share|improve this answer
5  
Minor nitpick: some login forms use JavaScript to hash the password instead of sending it plain text. – Thorarin Jun 7 '09 at 18:35
1  
@Thorarin if they truly hash it, that means the server is storing the password in plain text so it can hash with the same salt to verify. Ick! Sending the password in ssl wrapped text is better, as the server does not then need to store the password in plain text. – DGM Feb 14 '10 at 20:59
4  
@DGM: double hashing is also an option, so plain text passwords are not strictly necessary. – Thorarin Feb 16 '10 at 13:43
Yahoo used client side password hashing before switching to https implementation – Denis Jul 6 '11 at 7:46
1  
I am just saying that Yahoo felt that client side hashing was secure enough until they could afford to move all the way to ssl. But hey, I am all for https :) – Denis Jul 6 '11 at 18:16
show 2 more comments

If HTTP is disabled, and you only use HTTPS, then you're not really transmitting the password as plain text anyway.

share|improve this answer

You still need to make sure you send it via POST request, not GET. If you send it via GET request, it could be saved in plaintext in the user's browser history logs or the webserver's access logs.

share|improve this answer

The other posters are correct. Now that you're using SSL to encrypt the transmission of the password, make sure you're hashing it with a good algorithm and salt so it's protected when it's at rest, too...

share|improve this answer
Yes, I realize this, thanks, I was merely referring to the transmission here. – Hugo Jun 7 '09 at 16:43

I still have some doubts about how safe it is... If no public key certificates are used, what prevents mounting a man-in-the-middle attack? That is, assume machine A uses https to transmit a password to machine B. Then, if I (machine C) convince machine A that my identity is B (possible because no certificate), the (https protocol in) machine A will encrypt the password with my public key... and then i can recover the password... and then I keep forwarding messages to A and C so that I am not easily detected...

So, either I got something wrong, or the answers above are not completely correct. Feedback?

share|improve this answer
4  
https does use public keys. – Matt Sieker Jul 6 '11 at 4:00
Check out this answer and be sure to see the diagram – bobobobo Apr 22 at 21:49

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.