vote up 9 vote down star
3

Are all URL's encrypted when using SSL(https) encryption? I would like to know because I want all URL data to be hidden when using SSL(https).

If SSL gives you total URL encryption then I don't have to worry about hiding confidential information form URLs.

flag

It's probably a bad idea to put confidential data in the URL anyway. It will be displayed in the browser's address bad too, remember? People don't like it if their password is visible to anyone who happens to glance at the screen. Why do you think you need to put confidential data in the URL? – jalf Jan 31 at 22:03

6 Answers

vote up 14 vote down check

Yes, the SSL connection is between the TCP layer and the HTTP layer. The browser and webserver first establish a secure encrypted TCP connection (via the SSL/TLS protocol) and then the browser will send the HTTP request (either GET or POST) over that encrypted TCP connection.

link|flag
I am not sure I would say that SSL is at the TCP layer. SSL really rides on top of TCP and presents an encrypted socket channel to the normal application protocol. In this case, HTTP. – InSciTek Jeff Jan 31 at 22:09
You are correct, SSL does sit between the TCP and HTTP layers. I've edited my response to make it clearer. Thanks! – Marc Novakowski Jan 31 at 22:18
It is still worth noting the thing mentioned by @Jalf in the comment on the question itself. URL data will also be saved in the browser's history, which may be insecure long-term. – Michael E Jul 12 at 1:37
vote up 4 vote down

As the other answers have already pointed out, https "URLs" are indeed encrypted. However, your DNS request/response when resolving the domain name is probably not, and of course, if you were using a browser, your URLs might be recorded too.

link|flag
vote up 1 vote down

I'm going to take a leap here and assume you mean the "GET" portion of the https request.

In that case, yes and no. The server address portion of the URL is obviously not encrypted since it is used to set up the connection.

Everything else is encrypted in an HTTPS connection. But if you are using GET instead of POST then the user will still be able to cut and paste the URL out of the location bar, and you will probably not want to put confidential information in there that can be seen by anyone looking at the screen.

All that said, you should be careful of your terminology. To quote a famous swashbuckler: You keep using that word (URL) I do not think it means what you think it means....

link|flag
Would like to +1 this, but I find the "yes and no" misleading - you should change that to just point out that the server name will be resolved using DNS without encryption. – Software Monkey Jan 31 at 22:11
vote up 0 vote down

Entire request and response is encrypted, including URL.

Note that when you use HTTP Proxy, then proxy knows address of target server, but doesn't know requested path on this server. (i.e. request and response is always encrypted)

link|flag
vote up 0 vote down

Look here

link|flag
Even though the link may be helpful a little more content may be appropriate. – John Nolan Jan 31 at 21:28
I will remember next time :) – asvela Jan 31 at 21:50
vote up 0 vote down

Yes.

This question was asked on Google Answers in 2006 and was answered in detail:

http://answers.google.com/answers/threadview/id/758002.html

link|flag

Your Answer

Get an OpenID
or

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