first of all, the question from a naive point of view:

I've got a WebApplication with a URL to a product like Products?id=123. Let's say I've got an administration page reachable from Products?id=123&editable=true.

If I consider that no one will ever try to enable the editable parameter, and thus don't need any further security mechanism to protect this page, that's security by obscurity, and that's not a good idea, right?

-

In my real case problem, it's slightly more subtle: is there any danger in allowing anyone to know my administration URLS? for instance, while working with XSL, I would like to write:

<xsl:if test="/webAlbums/mode/@admin">
    (compute edit link)
</xsl:if>

but wouldn't it be easier for a potential attacker to find a weakness in 'important' pages?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Security through obscurity is barely security at all. Don't count on it.

You should make an authentication system that prevents people from using the admin page through actual security.

As for people knowing your admin URLs, it should be fine as long as your admin page is protected and there is no sensitive data being shown in the URL (such as the internal representation of a data type, the internal ID of some data, etc).

link|improve this answer
Remember that a password is also security through obscurity. – Gabe Oct 24 '10 at 15:36
@Gabe: Security through obscurity generally means that there are easy access paths to a system, but the designers are counting on the possibility that attackers won't find them. A password would actively protect these access paths so that even if they were found, they would be hard to break through. – Chetan Oct 24 '10 at 19:31
How is knowing the password not an "easy access path"? – Gabe Oct 24 '10 at 19:48
@Gabe: Because you don't just "stumble" across a password. Instead of counting on attackers to not happen to find an easy access path, you're preventing them from using it without actively trying to break it. It's the difference between hiding the door to your house in an overgrown bush and putting a troll in front of it to guard it. – Chetan Oct 24 '10 at 20:16
1  
@Gabe and @Chetan: I think you're both missing the point that passwords are never sent across the wire in the clear (at least, they should never be sent in the clear), whereas URLs most certainly are in cleartext. A password is a defined secret with proper storage and disclosure rules (hash and don't, respectively) whereas a URL is public information in the sense that it is not a defined secret. – Cameron Skinner Oct 25 '10 at 11:41
show 15 more comments
feedback

Your Answer

 
or
required, but never shown

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