URL-Encoded Angle Brackets in URL? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T14:39:05Z http://stackoverflow.com/feeds/question/217447 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/217447/url-encoded-angle-brackets-in-url 2 URL-Encoded Angle Brackets in URL? Coding the Wheel 2008-10-20T03:23:43Z 2008-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 "&lt;sometext&gt;":</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#217454 3 Answer by DV for URL-Encoded Angle Brackets in URL? DV 2008-10-20T03:26:45Z 2008-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] &lt; &gt; </code></pre>