views:

263

answers:

3

To what extent, if at all, are HTTPS headers encrypted?

+4  A: 

They are encrypted in transit through SSL. There is no special encryption dedicated to headers, HTTPS encrypts the entire message.

Kekoa
+1  A: 

All headers are encrypted in HTTPS. You may want to look at some documentation on how SSL and TLS work.

altCognito
+1  A: 

SSL sets up a private authenticated link to the server and then sends an http request over that link. The evil-doer snooping on the link cant actually tell from just watching the connection that http is being used. SSL its self has some unencrypted headers that it uses to establish this connection though these should not be confused with the headers that are part of the http protocol.

Arthur Ulfeldt