1

Suppose i have a login page i.e username and password and the website only uses the GET method to transfer the credentials. But thanks for SSL/TLS certificate to make the communication secure. But In this situation to submit password "Is it really secure using GET with HTTPS?"

januu agrawal
  • 45
  • 1
  • 9

1 Answers1

1

The entire query string will be encrypted using SSL, but keep in mind that the URL will still be logged in any traffic analyzer on the server.

POST will always be more secured.