Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Plain text password over HTTPS

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?

like image 375
WhyNotHugo Avatar asked Jun 07 '09 16:06

WhyNotHugo


1 Answers

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.

like image 99
Eduardo Scoz Avatar answered Dec 09 '22 06:12

Eduardo Scoz