vote up 18 vote down star
8

In our ASP.NET MVC application, we've noticed that we cannot have The Forbidden DOS File Names—COM1 through COM9, LPT1 through LPT9, CON, AUX, PRN, and NUL—anywhere in our routes. They inevitably result in IIS telling us the file cannot be found, even when we set routing not to check for the existence of files first. How can we work around this?

flag

11  
For fun, hit stackoverflow.com/com1 and compare to stackoverflow.com/ThisDoesNotExist – kamens Jun 12 at 15:09
interestingly, stackoverflow.com/clock$ works fine, even though CLOCK$ is a reserved device filename as well. – Jacob Jun 12 at 15:30
10  
And leveraging this knowledge, I have now successfully made it impossible to navigate to my user page. Woot. – Benjamin Pollack Jun 12 at 16:49
3  
I like how you DOS'd yourself. – Michael Pryor Jun 12 at 21:15
2  
Very cool; but not impossible - the username isn't required in the user info route ;) – Tom Ritter Jun 12 at 21:27

3 Answers

vote up 12 vote down check

Since asking the question, I've found that the bug is in ASP.NET proper, not IIS or ASP.NET MVC, meaning that there's no way to work around it. The only solution is to manually forbid URLs matching these names and these names followed by a period and random characters.

link|flag
1  
Yup. :) The ASP.NET team is aware of this bug and is looking into it for ASP.NET 4. Can't guarantee if it will be fixed, but at least there is interest in making this better for developers. – Levi Jun 13 at 1:09
vote up 3 vote down

For a similar reason, there can't be a web.config tag in StackOverflow.

http://stackoverflow.uservoice.com/pages/1722-general/suggestions/98871-web-config-tag-404-error

link|flag
vote up 0 vote down

for another similar reason you can't have urls with a dot and a slash http://stackoverflow.com/questions/294495/semantic-urls-with-dots-in-net

link|flag

Your Answer

Get an OpenID
or

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