Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it secure to submit from a HTTP form to HTTPS?

Tags:

security

https

Is it acceptable to submit from an http form through https? It seems like it should be secure, but it allows for a man in the middle attack (here is a good discussion). There are sites like mint.com that allow you to sign-in from an http page but does an https post. In my site, the request is to have an http landing page but be able to login securely. Is it not worth the possible security risk and should I just make all users go to a secure page to login (or make the landing page secure)?

like image 292
Tai Squared Avatar asked Nov 08 '08 03:11

Tai Squared


People also ask

Is it safer to use HTTP or HTTPS?

HTTPS is HTTP with encryption and verification. The only difference between the two protocols is that HTTPS uses TLS (SSL) to encrypt normal HTTP requests and responses, and to digitally sign those requests and responses. As a result, HTTPS is far more secure than HTTP.

Is data sent through HTTP secure?

HTTP POST is not encrypted, it can be intercepted by a network sniffer, by a proxy or leaked in the logs of the server with a customised logging level. Yes, POST is better than GET because POST data is not usualy logged by a proxy or server, but it is not secure.

Why HTTP links are not secure?

Why HTTPS? The problem is that HTTP data is not encrypted, so can be intercepted by third parties to gather data passed between the two systems. This can be addressed by using a secure version called HTTPS, where the S stands for Secure.


2 Answers

Posting a form from an http page to an https page does encrypt the data in the form when it is transmitted in the most simple terms. If there is a man-in-the-middle attack, the browser will warn you.

However, if the original http form was subjected to man-in-the-middle and the https post-back address was modified by the attacker, then you will get no warning. The data will still actually be encrypted, but the man-in-the-middle attacker would be able to decrypt (since he sent you the key in the first place) and read the data.

Also, if the form is sending things back through other means (scripted connections) there may be a possibility of unencrypted data being sent over the wire before the form is posted (although any good website would never do this with any kind of sensitive data).

like image 80
Jason Coco Avatar answered Sep 25 '22 01:09

Jason Coco


Is there any reason not to use HTTPS for the entire transaction? If you can't find a very good one, use it!

  • It's arguably simpler than switching protocols.

  • The MITM risk is real.

  • Following your link, the user "Helios" makes an excellent point that using 100% HTTPS is far less confusing to the user.

like image 32
Adam Liss Avatar answered Sep 23 '22 01:09

Adam Liss