vote up 0 vote down star

We're are looking to utilized extensionless URL's for the first time in our organization. We've requested our sys admins add a wildcard mapping to IIS6 so all requests get processed through the asp.net. They are pushing back, citing security concerns. I don't have enough information about potential security issues with the wildcard mapping to know what security issues it may or may not create. Any feedback would be appreciated.

flag

50% accept rate

3 Answers

vote up 0 vote down

Big issue, I suspect, is that most admin types fear that which they don't understand. They grok IIS, but the whole ASP.NET pipeline is foreign. Get them to document their concerns then you can shoot them down one-by-one.

There is a pretty legitimate performance concern with wildcard mapping, but that can easily be solved by pushing the non-secured static files to another virtual site (or even a separately mapped virtual directory within the site sans mappings).

link|flag
vote up -2 vote down

The potential issue is you would now be allowing requests for extensions such as .exe to be executed on the server, and not filtered out by IIS before handing requests off to the ISAPI.

If you have any .exe, bat, or other executable files anywhere in an IIS path, any user would be able to execute them.

If you're careful in setting up IIS websites, and virtual directories so they don't contain anything that could be used maliciously, then you should be OK.

link|flag
1  
To my knowledge this is wrong. Adding a wildcard handler would not change how an exe or bat file is handled. More specifically, unless it's specifically set up this way, the request should either be filtered out by the web application as a resource not found, or would be handled by the default handler, which would just return the file. (I've tested this locally, and was unable to reproduce the behavior you describe) – CoderTao Jul 24 at 16:00
What about the web.config file then? Will IIS return this file if someone were to request it? – Striker Jul 24 at 16:22
ASP.net does have it's own set of safeguards around this. However, you are still taking out the first line of defense of not allowing them to reach the ISAPI in the first place. – AaronS Jul 24 at 16:31
This stuff won't execute in the aspnet_isapi pipeline anyhow. Of course, admins tend to fear that which they don't understand. – Wyatt Barnett Jul 24 at 16:49
vote up 1 vote down

Basically by adding wildcard mapping to IIS6 then ALL requests will be processed through the .net framework. I am not sure about security concerns but know that the performance disadvantage has never been provern

see link text

link|flag
1  
I'd ask them to document their security concerns. – Jon Galloway Jul 24 at 15:44
I too would ask them! – Fred Richards Jul 24 at 15:50

Your Answer

Get an OpenID
or

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