Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do querystring parameters get encrypted in HTTPS when sent with a request?

share|improve this question
Duplicate of stackoverflow.com/questions/893959/… – Michael Freidgeim Feb 20 '12 at 12:01
possible duplicate of Is an HTTPS query string secure? – andand May 12 at 5:00

3 Answers

up vote 47 down vote accepted

Yes. The querystring is also encrypted with SSL. As this article shows, it isn't a good idea to put sensitive information in the URL. For example:

URLs are stored in web server logs - typically the whole URL of each request is stored in a server log. This means that any sensitive data in the URL (e.g. a password) is being saved in clear text on the server

share|improve this answer

remember, SSL/TLS operates at the Transport Layer, so all the crypto goo happens under the application-layer HTTP stuff.

http://en.wikipedia.org/wiki/File:IP_stack_connections.svg

that's the long way of saying, "Yes!"

share|improve this answer

The entire transmission, including the query string, the whole URL, and even the type of request (GET, POST, etc.) is encrypted when using HTTPS.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.