Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is a POST from HTTP to HTTPS secure?

Tags:

security

https

I have a HTTP page with a form. If I set the action to a HTTPS page, is the request secure? Does the browser process all the data before it sends it to the net? Or should I use HTTPS for my entire site?

like image 389
Castro Roy Avatar asked Oct 20 '10 13:10

Castro Roy


People also ask

Is HTTP post protected by HTTPS?

The only difference between HTTP GET and HTTP POST is the manner in which the data is encoded. In both cases it is sent as plain-text. In order to provide any sort of security for login credentials, HTTPS is a must.

Is HTTP GET more secure than POST?

GET is less secure than POST because sent data is part of the URL. POST is a little safer than GET because the parameters are stored neither in the browser history nor in the web server logs.

Is a HTTP link secure?

A secure URL should begin with “https” rather than “http.” The “s” in “https” stands for secure, which indicates that the site is using a Secure Sockets Layer (SSL) Certificate.

How does HTTP GET secured?

Data sent using HTTPS is secured via Transport Layer Security protocol (TLS), which provides three key layers of protection: Encryption: Encrypting the exchanged data to keep it secure from eavesdroppers.


Video Answer


1 Answers

Yes, it'll be secure if the location your form is posting to is HTTPS.

Users, however, may freak out that there's no lock icon in their browser on the page with the form. You may be better off from a usability standpoint having both pages be HTTPS.

like image 170
ceejayoz Avatar answered Sep 26 '22 02:09

ceejayoz