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

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.

share|improve this question
15  
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 '09 at 22:03
9  
URLs are also stored in browser history and server logs - if I wanted to have my name and password stored somewhere, it would not be in these two places. – Piskvor Jun 30 '10 at 15:33
5  
For example, suppose I visit https://somewhere_i_trust/ways_to_protest_against_the_government/. Then the URL contains confidential data, namely the suggestion that I am considering protesting against my government. – Steve Jessop Sep 26 '11 at 8:42
8  
I was asking myself this question when making an HTTP request from a native (not browser based) App. I'm guessing this may interest mobile App developers. In this case, the comments above (while true) are irrelevant (no url visible, no browsing history), making the answer, to my understanding a simple: "Yes, it's encrypted". – DannyA Jun 18 '12 at 18:11
1  
@DannyA I also came across this question while considering the case of a mobile app which made a GET request with potentially confidential information in the querystring to an https:// address. – Carson63000 Dec 15 '12 at 0:04

6 Answers

up vote 138 down vote accepted

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

share|improve this answer
9  
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. – Tall Jeff Jan 31 '09 at 22:09
1  
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 '09 at 22:18
16  
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 Ekstrand Jul 12 '09 at 1:37
2  
Not just GET or POST. Can also be DELETE, PUT, HEAD, or TRACE. – rightfold Mar 2 '11 at 22:13
1  
Or you could just say that it supports any HTTP requests... – Eric Gagnon Jun 10 '12 at 13:14
show 1 more comment

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.

share|improve this answer
3  
And URL recording is important since there are Javascript hacks that allow a completely unrelated site to test whether a given URL is in your history or not. You can make a URL unguessable by including a longish random string in it, but if it's a public URL then the attacker can tell that it has been visited, and if it has a short secret in it, then an attacker could brute-force that at reasonable speed. – Steve Jessop Sep 26 '11 at 8:38

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)

share|improve this answer
I was wondering this myself, thanks for clarifying. – bentford May 8 '12 at 15:59
Great simple answer and the real one, for pointing out the only case where someone in the middle could see a piece of unciphered data. – jjmontes Nov 6 '12 at 18:04

An addition to the helpful answer from Marc Novakowski - the URL is stored in the logs on the server (e.g., in /etc/httpd/logs/ssl_access_log), so if you don't want the server to maintain the information over the longer term, don't put it in the URL.

share|improve this answer
This is a very good point – so even if they are encrypted, maybe better not to put secret information in them anyway. – William Denniss Nov 3 '10 at 13:47

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....

share|improve this answer
3  
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 '09 at 22:11
Wait, where is the author using the word URL in an incorrect sense? – greg7gkb Jan 26 '10 at 5:16
3  
In my understanding, the OP uses the word URL in the right sense. I think this answer is more misleading, as it doesnt clearly makes the difference between the hostname in the URL and the hostname in the DNS resolution. – Guillaume Nov 2 '10 at 14:17
1  
The difference being... ? – user359996 Nov 2 '10 at 15:35
1  
The URL is encrypted. Every aspect of the HTTP transaction is encrypted. Not just 'everything else'. Period. -1. – EJP Mar 26 at 9:37
show 2 more comments

I attempting my own very simple "yet perhaps dead on" answer to the question. It repeats things that other have said, and I dont mind at all being corrected if wrong. My understanding of "SSL" is that it is not the URL (the thing you see in the browser bar-that as someone else pointed out) but rather the things (such as credit card numbers or PW's) that get filled in (I believe often) in Php forms, that do get encrypted.

I believe that "SoapBox" answered the question the Zach may have been asking, I have often wondered "why" I momentarily see these "long urls" show up on the bottom of my browser, perhaps this can lead to an interesting theoretical question:

When these 'long URl's Momentarily flash' on the users (inputters) screen, does that 'visual flash' actually display 'encrypted' info.

On truly very deep level, even though SSL (and I guess SSH) [ or now SSH2 ] are the secure ways of doing "business" on the web, it seems to me that between the government, and the banks. and the credit card companies (and dont forget PayPal) there has got to be a recording of just about all that goes "on the web". On perhaps the simplest level "your very own pc is storing just about everything you do 'somewhere' right.

The simplest answer the server part of the url is not encrypted, and SoapBox has answered the question from the point of view of how the "input" section of the SSL site you visit is set up. It makes one even think harder about the info that all computer users routinely input into the computer.

When I see SoapBox's answer about "Get" versus "Post", I believe he is sharing some valuable information that should be appreciated by those who do make Php forms. Thanks Zach for the question and to SoapBox for a deep thoroughly contemplated and well explained answer.

share|improve this answer
1  
"There has got to be a recording of just about all that goes 'on the web'" - well, it depends on what your view is of the strength of SSL encryption and the secrecy of the keys that protect it. By and large, I trust those systems, since there have been very few successful attacks against them - and researchers are trying all the time. – halfer Mar 4 '12 at 18:46
4  
HTTPS encrypts all the HTTP connection, including URI and message body. What can be visible is the server name itself (not the full URI), or at least the server certificate. The problem with sensitive information in the URI is that it can stay in the browser history (SSL only protects the connection, not what's on the machine). (More details here.) – Bruno May 14 '12 at 21:22
1  
@HostPoet You are mistaken. The URL is encrypted. Period. -1. – EJP Mar 26 at 9:36

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.