vote up 12 vote down star
1

When sending data over HTTPS, I know the content is encrypted, however I hear mixed answers about whether the headers are encrypted, or how much of the header is encrypted.

How much of HTTPS headers are encrypted?

Including GET/POST request URLs, Cookies, etc.

flag

6 Answers

vote up 20 vote down check

The whole lot is encrypted - all the headers. That's why SSL on vhosts doesn't work too well - you need a dedicated IP address because the Host header is encrypted.

link|flag
vote up 1 vote down

With SSL the encryption is at the transport level, so it takes place before a request is sent.

So everything in the request is encrypted.

link|flag
vote up 6 vote down

The headers are entirely encrypted. The only information going over the network 'in the clear' is related to the SSL setup and D/H key exchange. This exchange is carefully designed not to yield any useful information to eavesdroppers, and once it has taken place, all data is encrypted.

link|flag
vote up 0 vote down

found this so far...

"no, the headers are not encrypted"

reference: http://www.expertsrt.net/main/forum/topic,672.0/

link|flag
vote up 1 vote down

HTTPS (HTTP over SSL) sends all HTTP content over a SSL tunel, so HTTP content and headers are encrypted as well.

link|flag
vote up 2 vote down

HTTP version 1.1 added a special HTTP method, CONNECT - intended to create the SSL tunnel, including the necessary protocol handshake and cryptographic setup.
The regular requests thereafter all get sent wrapped in the SSL tunnel, headers and body inclusive.

link|flag

Your Answer

Get an OpenID
or

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