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

I have an mvc app that has a catch all route setup that occasionally throws a dangerous request path exception on '?'.

I have the route setup like

routes.MapRoute(
  "ImageResponse", // Route name
  "{*_*}", // Just cute
  new { controller = "ImageResponse", action = "RenderImage" } // Parameter defaults
);

I get exceptions on paths saying that '?' was a dangerous request, but I can't reproduce it (copy and paste it straight out of event logs). This seems to happen when I put a bit of load on the machine.

For example, I found something like this in my event logs (everything left of the .jpg has been change to protect the innocent, although there are three dirs and a file name).

/an/example/path/image.jpg?Size=Thumb

Has anyone run into this issue before? It seems like something isn't detecting my filename there.

share|improve this question
Are you using SquishIt by any chance? – Andrew Whitaker Aug 12 '12 at 23:42
I have no idea what that is, so I doubt it :) – Khanzor Aug 12 '12 at 23:48
are you're certain there's no special characters in the actual path? you're not URL encoding the ? are you? and you have .jpg mime type setup correctly? – timothyclifford Aug 13 '12 at 8:04
and shouldn't your catch all be {*url} rather than {*_*}? – timothyclifford Aug 13 '12 at 8:09
@timothyclifford - Hmm, looks like the url encoding might be the issue! I can reproduce the issue when doing that, and checking the logs after that has happened shows the '?' "helpfully" unencoded. Do you want to put that into an answer? – Khanzor Aug 14 '12 at 0:53
show 2 more comments

1 Answer

up vote 1 down vote accepted

are you're certain there's no special characters in the actual path? you're not URL encoding the ? are you? this would cause it to be interpreted as part of the path rather than the beginning of the querystring.

More info/examples here:

Why is using a URL containing a questionmark when redirecting gets a “potentially dangerous request”?

A potentially dangerous Request.Path value.... contains only alphanumerics and an underscore?

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.