URL-Encoded Angle Brackets in URL? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T14:39:05Zhttp://stackoverflow.com/feeds/question/217447http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/217447/url-encoded-angle-brackets-in-url2URL-Encoded Angle Brackets in URL?Coding the Wheel2008-10-20T03:23:43Z2008-10-20T03:36:51Z
<p>Hi,</p>
<p>I'm working on a legacy app and for whatever reason it's trying to stuff URL-encoded angle brackets into a URL. For example, to get a URL ending with "<sometext>":</p>
<p><a href="http://somesite.com/somefolder/%3csometext%3e" rel="nofollow">http://somesite.com/somefolder/%3csometext%3e</a></p>
<p>When the above URL-encoded URL is fetched, it generates a 400 error (Bad Request) on IIS6 and I can't quite figure out why. Probably something simple, but I'm stumped.</p>
<p>Ideas? Thanks.</p>
http://stackoverflow.com/questions/217447/url-encoded-angle-brackets-in-url/217454#2174543Answer by DV for URL-Encoded Angle Brackets in URL?DV2008-10-20T03:26:45Z2008-10-20T03:26:45Z<p>You must have URLScan tool installed (<a href="http://technet.microsoft.com/en-us/security/cc242650.aspx" rel="nofollow">http://technet.microsoft.com/en-us/security/cc242650.aspx</a>) which disallows angle brackets (in any form).</p>
<p>According to <a href="http://blogs.iis.net/nazim/archive/2008/06/24/using-the-new-rules-configuration-in-urlscan-v3-0-beta-part-1.aspx" rel="nofollow">this</a>, </p>
<pre><code> The new default urlscan.ini contains a rule in it to protect against these sort of patterns and the rule is just simply:
[DenyQueryStringSequences]
<
>
</code></pre>