What makes https more secure than http?
|
The short answer is that https communication between your browser and the server are encrypted. While http traffic is sent in plain text. This means that anyone who can listen to the traffic can read it - this would include usernames and passwords). It also verifies the server to which you are connecting. |
|||
|
That it is encrypted. Read: en.wikipedia.org/wiki/HTTP_Secure Anything not over HTTPS can be read by anyone snooping on your network. |
|||
|
|
|
Im quoting:
More information on TLS:
|
|||
|
|
|
Also, HTTPS verifies that the site is who it claims to be, if the certificates are correct (signed by a known CA). |
|||
|
|
|
|||
|
|
|
I want to be really pedantic, as I'm a security nerd :) HTTPS uses SSL, and it's IETF-ratified cousin, TLS. SSL/TLS can offer four security services: 1) server authentication Usually you'll get server auth for free, but only if the host name and the common name in the server's SSL/TLS certificate match. If they don't match your browser will warn you. You usually get the channel defenses for free too, but that's only because the server and client negotiate to require such defenses. In theory, but rarely in practice, a server and client could agree to not use one or more of the channel defenses. Finally, client authentication is when the server wants you to present a certificate (actually, to prove you have an associated private key) to verify you are you. Client authentication is rarely used. |
|||
|