vote up 5 vote down star
3

I'd like to block requests to any .php or .cgi regardless of the pathing information.

For example, when the following url is used:

http://mysite/Admin/Scripts/Setup.php

It matches an existing route:

routeCollection.MapRoute("Admin", "admin/{controller}/{action}/{uid}/{*pathInfo}", new { controller = "Admin", action = "Index", uid = "" });

However there is no controller for scripts so MVC throws the following:

The IControllerFactory '' did not return a controller for a controller named 'scripts'.

What I'd really prefer is that the request is simply met with a hard fail before MVC ever got to the controller.

I know that I can do this by hooking the Application_BeginRequest in the Global.asax and throwing a new HttpException(404, "Not Found") but that's not quite the elegant solution I'm looking for.

I was really hoping that this would work:

routeCollection.IgnoreRoute("{resource}.php/{*pathInfo}");

But it doesn't.

NOTE: Sean Lynch's answer works great but I still would really like a System.Web.Routing or System.Web.Mvc based solution. That way I can allow my users to add their own exclusions at runtime.

flag

This isn't an answer but I would certainly play around with Phil Haack 's route debugger. haacked.com/archive/2008/… It will let you know what route takes whatever url you are testing. Also I would look into disabling existing file mapping – Hurricanepkt Oct 8 at 18:32

3 Answers

vote up 2 vote down check

If you hosting provider supports the IIS7 URL Rewrite module then you could check out this link:

http://learn.iis.net/page.aspx/499/request-blocking---rule-template/

Update here is what you would put into your web.config in the system.webserver section:

<system.webServer>
    <rewrite>
        <rules>
            <rule name="RequestBlockingRule1" patternSyntax="Wildcard">
                <match url="*" />
                <conditions>
                    <add input="{URL}" pattern="*.php*" />
                </conditions>
                <action type="CustomResponse" statusCode="403" />
            </rule>
        </rules>
    </rewrite>
</system.webServer>
link|flag
I second that. Use the AbortRequest action type and the request will never get any further. – Mark B Oct 8 at 17:53
Can URL Rewrite module rules be added from within my application, or from within the application directory on the disk or must I use IIS Manager to configure them? – Hellfire Oct 8 at 18:19
You can define the rules in the web.config of your application, so don't need to use IIS Manager to configure them. However, I am not sure of the exact XML that would be used though. I don't have access to IIS Manager right now to try it out. – Sean Lynch Oct 8 at 18:58
But I have done it was the path rewriting, and just copied the web.config up. – Sean Lynch Oct 8 at 18:59
I have added the code for the web.config that IIS Manager generated. – Sean Lynch Oct 8 at 19:40
show 3 more comments
vote up 0 vote down

I found http://stackoverflow.com/questions/273447/how-to-ignore-route-in-asp-net-forms-url-routing which might work for this, it uses the StopRoutingHandler class, and as long as the requests to .php do run through the routing this will probably work.

If the .php requests are not going through the routing handler then this probably wouldn't work.

link|flag
vote up 0 vote down

You could block these extensions before it even hits IIS with Microsoft's UrlScan ISAPI Filter.

link|flag

Your Answer

Get an OpenID
or

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