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

I never leave backdoors in my system, but out of curiosity I was wondering if I left a secret URL like /x52d23r that allowed to bypass some sort of security, and this was only for my personal use---would that be somehow discovered by a third party without getting the information from me?

For example, secret ports can be port scanned and fingerprinted, but can the same sort of tactic be done for secret URLs?

share|improve this question
1  
I'm tempted to write a long answer, but since I'm short on time, I'll just say, listen to @Michael Irigoyen. There are many ways, some clever and some brute-force, by which this scheme can be exploited. Just... don't do it. – Michael Petrotta Jan 28 '11 at 21:43
9  
URIs are for resource identification and not for access authorization. – Gumbo Jan 28 '11 at 21:53
3  
The URL will end up in your log files (who has access to them?), your configuration files, probably in your browser bookmarks, your backup files, etc. and then... you forget about them (they're not as security relevant as a passwor database, are they?) - until somebody finds them for you. – Chris Lercher Jan 28 '11 at 21:59
Yeah, the idea came to me, because I was using a different authentication module, in place of the default authentication module. And the secret URL would be my own backdoor for logging in the default-way, if the new authentication service went down. But I know it wouldn't be secure--well as secure as the default system is. – Dexter Jan 28 '11 at 22:08
I was looking for more depth than this question or its answers provided. I started a new question, <em>[How can I generate a "private URL" with state of the art balance between security and convenience?][new question]</em> rather than trying to expand the scope of this one. [new question]: stackoverflow.com/q/12479398/168740 – Matt McClure Sep 18 '12 at 14:48

7 Answers

up vote 14 down vote accepted

Security through obscurity is something that should never be practiced.

share|improve this answer
That's exactly the phrase I was going to use in my response. – Phrogz Jan 28 '11 at 21:42
10  
I think sometimes this phrase is taken out of context (but not in this case.) Passwords are secure because they are obscure, the same with cryptographic keys. If theses were open, clear and freely available these security tools would be worthless. If you can guarantee that your resource is obscure, AND you have a mechanism in place to measure and respond to attempts at accessing this resource, then you aren't in any different situation than using a username / password. For example, if after three incorrect URL requests, you blacklist an IP, you have basically implemented a password system. – Brian Stinar Jan 28 '11 at 21:50
2  
This isn't a good idea to do in this case though. I think Michael Irigoyen has the right answer to your question. – Brian Stinar Jan 28 '11 at 21:51
7  
-1 For misuse of the term "security through obscurity." The obscurity referred to in that term is the obscurity of the algorithm, not the obscurity of a strong password, key, or secret. – Mike Samuel Jul 22 '11 at 0:51
1  
All security is through obscurity. A URL is simply insufficiently obscure (compared to, say, a password) – Mark Sowul May 14 '12 at 16:47
show 2 more comments

The reason using a "secret URL" is often considered insecure is not because it is "security through obscurity". In theory, a secret URL is no different than a password. Are passwords considered a poor practice because they are "security through obscurity"? No.

So what's the difference between a hard-to-guess URL and a hard-to-guess password?

The difference is in the myriad of insecure places and ways that URLs are stored, displayed, and transmitted. Examples:

  1. In web browser address bars, histories, and caches
  2. In web server access logs
  3. In layer 7 firewall access logs
  4. In proxy access logs
  5. In packet dumps
  6. Web browser HTTP Referer headers
  7. In web stats traffic reports (e.g. AWStats, Google Analytics)

HTTPS can protect some of these, but not all of them (e.g. web browsers and httpd access logs will still show plaintext URLs even when HTTPS is in use).

In a highly controlled environment, hard-to-guess URLs can be secure. But when using common web browsers, web servers and web frameworks, hard-to-guess URLs should not be relied upon unless no other option exists (and even then you should consider carefully).

share|improve this answer
+1 for thoroughness – Jens Frandsen May 15 at 20:14

It's not secure.

For HTTP traffic your secret URL would effectively be public as soon as you use it. Without any password protection an eavesdropper listening to your network traffic could see the URL you send and then visit the same page.

share|improve this answer
7  
They would be encrypted when using HTTPS. – Gumbo Jan 28 '11 at 21:46
3  
@Gumbo: Yeah, that's an excellent point +1. I guess you could use HTTPS to keep the URL secret, however it's still a bad idea IMHO. Imagine if you accidentally forget to type the 's' on https... oops! – Mark Byers Jan 28 '11 at 21:53
Well first of all they'd have to sort through all the urls used and how often do people just sit on a network listening to all the URLs you visit. Usually they look for certain things, like .gov links, or HTTP authentication transmissions, POST/GET data--right? Just playing devil's advocate, I agree with your concern. – Dexter Jan 28 '11 at 22:05
@Dexter: Even if no-one is actively listening, the chances are that the URLs for all the pages you visit are going to be logged in multiple databases. For example ISPs in many countries are required by law to log what their customers are doing when online, and in those countries where it's not required I bet many do it anyway. – Mark Byers Jan 28 '11 at 22:09
4  
Another very nice variation of this: If the page contains a link to an external site (say, google.com), then a click on that link sends the "secret" URL via the "Referer" header (directly to Google). – Chris Lercher Jan 28 '11 at 22:13
show 2 more comments

Not good idea because:

  1. Someone may reveal your url be gaining local access to your system/database/application
  2. Someday some administrator will put your access log files public and google will find them.
  3. You will migrate/upgrade something in your server setup and will forgot to protect/hide those urls
share|improve this answer
1  
I never thought of the stupid-future-administrator scenario. Good point. – Dexter Jan 28 '11 at 22:06

The Waterken web server is a web platform designed by the security folk at HP research around secret (specifically cryptographically unguessable) URLs.

Applications built on it have some very interesting security properties as a result.

Done right, cryptographically strong secret URLs can provide high levels of security.

ACLs Don't is a paper from the waterken team on their security architecture.

Comparing the suggested defense to the capability based solution for the compilation scenario, and again assuming a Unix-like system: the URL is like the filename; and the unguessable token is like a file descriptor, approximating the unforgeability of a capability with unguessability. A legitimate page from the stock broker’s Web site first opens the stock purchase resource, receiving an unguessable secret. The browser then uses this unguessable secret to write to the stock purchase resource.

share|improve this answer

I'd say if you're careful they can be secure. The biggest security hole would be the people using it. It will be unintentionally shared or posted somewhere Google will index it. Design for that, and use it appropriately - like the Google docs "Anyone with this link" sharing method.

  1. Use HTTPS

    Stops the URL being sent in plaintext

    Doesn't set referrer headers if they click a HTTP link

  2. If people access your secret URL via HTTP, warn them and immediately change it

  3. It's not security through obscurity - that's a misunderstanding of the normal use of the phrase.

    "A system relying on security through obscurity may have theoretical or actual security vulnerabilities, but its owners or designers believe that the flaws are not known, and that attackers are unlikely to find them."

    In contrast here you're being open about implementation and design.

    I don't see that this is less secure than the average password when used with a long secret URL (64 characters anyone? 2000 - domain_length?), in combination with a tar-pit.

I'm planning to use it in an app where I feel people will value simplicity above security.

share|improve this answer

would that be somehow discovered by a third party without getting the information from me? For example, secret ports can be port scanned and fingerprinted, but can the same sort of tactic be done for secret URLs?

Yes. You are thinking of the threat as a human being sitting at a computer typing the URL into their browser. The reality is that attackers use automated programs that perform reconnaissance on systems and use that information to attempt a variety of attacks. Trying random URLs has little cost for an automated system than can produce hundreds of HTTP requests per second. Second as others have noted, once you use the URL it is no longer secret. Those automated programs listen to internet traffic and collect URLs to attempt attacks on. The fact that only you know the URL means that no other person can divulge its value. It does not prevent technical means from divulging the value.

share|improve this answer

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.