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?
|
|
|||
|
|
|
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. |
|||||||||||||||||||
|
|
If HTTP is disabled, and you only use HTTPS, then you're not really transmitting the password as plain text anyway. |
|||
|
|
|
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. |
|||
|
|
|
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... |
|||
|
|
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? |
|||||||
|