Aint Login Insecure? #1403
-
Title. aint login insecure if ur sending the password in plain text to the web server like this:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Im gonna post my custom code which hashes the password client side then sends it to the server as a hash. |
Beta Was this translation helpful? Give feedback.
-
No, it's not. Actually, most forms are sent like this in 99% of websites out there. The security is provided at a lower level thanks to HTTPS / SSL. That's why it's crucial to use HTTPS in production. Hence, it's unnecessary to encrypt the data on the client side. |
Beta Was this translation helpful? Give feedback.
No, it's not. Actually, most forms are sent like this in 99% of websites out there. The security is provided at a lower level thanks to HTTPS / SSL. That's why it's crucial to use HTTPS in production. Hence, it's unnecessary to encrypt the data on the client side.