vote up 0 vote down star

Does an SSL request show the page being requested or just the domain?

I am trying to hide files in a directory on a webserver by using random folder names. i.e. https://www.mydomain.com/DKSLW3020SLK43J9S0935KJSLK350S9/MyFile.pdf

The random folder name providing the security instead of a password. The risk of this is any third party intercepting router hops to see the page request and then the hidden folder is not so hidden.

If is access it using SSL is the SSL connection made to mydomain.com first, then the page requested or will a snooper see the entire:

/DKSLW3020SLK43J9S0935KJSLK350S9/MyFile.pdf

ending of the request made?

Thanks for your help!

flag

3 Answers

vote up 2 vote down

A normal man-in-the-middle attack will not see the full URL. However, your end user might choose to pass around the URL. Is that a concern?

link|flag
Also, keep in mind that any hyperlinks FROM that file to another secure site will expose your "secret" URL in the HTTP Referer header. – EricLaw -MSFT- Nov 3 at 23:52
vote up 0 vote down

Yes, SSL will protect the URL from third parties.

link|flag
vote up 0 vote down

If you mean HTTPS, then the snooper will see nothing at all; just the address of the site to which the user is connecting.

Try it yourself using a HTTP sniffer like Fiddler. (Fiddler has an option to decrypt HTTPS, but this is not possible for a snooper.)

link|flag

Your Answer

Get an OpenID
or

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