When you GET
https://encrypted.google.com/search?q=%s
The %s query is encrypted? Or just the response?
If it is not, why should Google serve it's public content also with encryption?
|
When you GET https://encrypted.google.com/search?q=%s The |
|||||
|
|
The entire request is encrypted, including the URL, and even the command ( |
|||||||||
|
|
The URL itself is encrypted, so the parameters in the query string do not travel in plain across the wire. However, keep in mind that URLs including the GET data are often logged by the webserver, whereas POST data seldom is. So if you're planning to do something like |
|||||||||||
|
The above is a part of a VERY comprehensive answer from Google Answers located here: http://answers.google.com/answers/threadview/id/758002.html#answer |
|||
|
The connection gets encrypted before the request is transmitted. So yes, the request is encrypted as well, including the query string. |
|||
|
|
|
Everything is encrypted, but you need to remember, that your query will stay in server's logs and will be accessible to various log analysers etc (which is usually not the case with POST request). |
|||||||
|
|
Yes, it is secure. SSL encrypts everything. Excerpt from POST request:
Excerpt from GET request:
In both cases whatever is sent on the socket is encrypted. The fact that the client sees parameters in his browser during a GET request doesn't mean that a man in the middle would see the same. |
|||
|
|
|
I'd say that would depend on who has access to the logs, or statistics generated out of the logs. Obviously the transport layer is secure, but if you enter data in GET requests which shouldn't be read by anyone but the site administrator and the user himself, I'd just stick with POST. I can imagine that there are lots of crappy hosting providers who don't really secure access to logs. |
|||
|
|
|
The portion of the URL after the host name is sent securely. For example, https://somewhere.com/index.php?NAME=FIELD The |
||||
|
|
The SSL takes place before the header parsing, this means:
A Request looks something like this (can't remember the exact syntax, but this should be close enough):
This is also why having different SSL Certificates for several hosts on the same IP are problematic, the requested Hostname is not known until decryption. |
|||||||
|
|
The GET request is encrypted when using HTTPS - in fact this is why secured websites need to have a unique IP address - there's no way to get the intended hostname (or virtual directory) from the request until after it's been decrypted. |
|||||
|
|
I just connected via HTTPS to a website and passed a bunch of GET parameters. I then used wireshark to sniff the network. Using HTTP, the URL is sent unencrypted, which means I can easily see all the GET parameters in the URL. Using HTTPS, everything is encrypted and I can't even see which packet is the GET command, let alone its contents! |
|||
|
|