Handle URI hacking gracefully in ASP.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:28:34Z http://stackoverflow.com/feeds/question/594085 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/594085/handle-uri-hacking-gracefully-in-asp-net 1 Handle URI hacking gracefully in ASP.NET asbjornu 2009-02-27T09:23:07Z 2009-02-27T09:35:55Z <p>I've written an application that handles most exceptions gracefully, with the page's design intact and a pretty error message. My application catches them all in the <code>Page_Error</code> event and there adds the exception to <code>HttpContext.Curent.Context.Items</code> and then does a <code>Server.Transfer</code> to an <code>Error.aspx</code> page. I find this to be the only viable solution in ASP.NET as there seems to be no other way to do it in a centralized and generic manner.</p> <p>I also handle the <code>Application_Error</code> and there I do some inspection on the exception that occurred to find out if I can handle it gracefully or not. Exceptions I've found I can handle gracefully are such that are thrown after someone hacking the URI to contain characters the .NET framework considers dangerous or basically just illegal at the file system level.</p> <p>Such URIs can look like e.g.:</p> <ul> <li><code>http://exmample.com/"illegal"</code></li> <li><code>http://example.com/illegal"/</code></li> <li><code>http://example.com/illegal /</code></li> </ul> <p>(notice the space before the slash at the end of the last URI).</p> <p>I'd like these URIs to respond with a "404 Not Found" and a friendly message as well as not causing any error report to be sent to avoid DDOS attack vectors and such. I have, however, not found an elegant way to catch these types of errors. What I do now is inspect the <code>exception.TargetSite.Name</code> property, and if it's equal to <code>CheckInvalidPathChars</code>, <code>ValidatePath</code> or <code>CheckSuspiciousPhysicalPath</code>, I consider it a "path validation exception" and respond with a 404.</p> <p>This seems like a hack, though. First, the list of method names is probably not complete in any way and second, there's the possibility that these method names gets replaced or renamed down the line which will cause my code to break.</p> <p>Does anyone have an idea how I can handle this less hard-coded and much more future-proof way?</p> <p>PS: I'm using <code>System.Web.Routing</code> in my application to have clean and sensible URIs, if that is of any importance to any given solution.</p> http://stackoverflow.com/questions/594085/handle-uri-hacking-gracefully-in-asp-net/594110#594110 3 Answer by Rune Grimstad for Handle URI hacking gracefully in ASP.NET Rune Grimstad 2009-02-27T09:35:55Z 2009-02-27T09:35:55Z <p>It may be that System.Web.Routing supports some sort of url filtering, but it is quite easy to implement your own.</p> <p>Look at the <a href="http://msdn.microsoft.com/en-us/library/system.web.ihttpmodule.aspx" rel="nofollow">System.Web.IHttpModule</a> interface and read about <a href="http://msdn.microsoft.com/en-us/library/ms227673.aspx" rel="nofollow">implementing custom HTTP Modules</a>. Http modules enter that Asp.Net pipeline and run before your page is run. You can use it to perform logging of requests, to modify requests and in your case to filter requests. The Asp.Net routing module is also implemented as a custom HTTP Module.</p> <p>What you can do is to implement a Http Module that looks at the requested url and check if it is valid. If the url is invalid you can do whatever you need, for example redirect it to your 404 - not found page or you can just stop the request. </p>