Build "exit" page using Classic ASP avoiding major Cross Site Scripting pitfalls - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T17:04:16Zhttp://stackoverflow.com/feeds/question/231204http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/231204/build-exit-page-using-classic-asp-avoiding-major-cross-site-scripting-pitfalls0Build "exit" page using Classic ASP avoiding major Cross Site Scripting pitfallsNip2008-10-23T19:51:02Z2008-10-26T17:32:03Z
<p>I'm working on updating a classic ASP web page used by a number of sub-sites maintained at the company I work for.</p>
<p>The purpose of the page is to notify the user that they are leaving "our" site and going to another site. It's basically a disclaimer, but due to resource limitations and time limitations I can't add the disclaimer to every site we manage.</p>
<p>This is the crux of the problem. The current code pulls a variable from the query string to create the "continue" link in the new window. This obviously creates many problems in the form of cross site scripting.</p>
<p>How do I approach this update to eliminate most (if not all) of the cross site scripting issues using vbScript/ASP.</p>
<p>The code I'm using is below.</p>
<pre><code><%@ Language = vbScript %>
<% Option Explicit %>
<%
Dim strLink
strLink = Request.QueryString("site")
strLink = Replace(strLink, "<", "&lt")
strLink = Replace(strLink, ">", "&gt;")
strLink = Replace(strLink, chr(34), "")
strLink = Replace(strLink, "script", "", 1, -1, 1)
strLink = Replace(strLink, "onclick", "", 1, -1, 1)
strLink = Replace(strLink, "ondblclick", "", 1, -1, 1)
strLink = Replace(strLink, "onmousedown", "", 1, -1, 1)
strLink = Replace(strLink, "onmouseover", "", 1, -1, 1)
strLink = Replace(strLink, "onmousemove", "", 1, -1, 1)
strLink = Replace(strLink, "onmouseout", "", 1, -1, 1)
strLink = Replace(strLink, "onkeypress", "", 1, -1, 1)
strLink = Replace(strLink, "onkeydown", "", 1, -1, 1)
strLink = Replace(strLink, "onkeyup", "", 1, -1, 1)
strLink = Replace(strLink, "onfocus", "", 1, -1, 1)
strLink = Replace(strLink, "onblur", "", 1, -1, 1)
strLink = Replace(strLink, "&&", "")
strLink = Replace(strLink, "##", "")
strLink = Replace(strLink, "&#", "")
%>
<a href="<%= strLink %>">Continue</a>
</code></pre>
http://stackoverflow.com/questions/231204/build-exit-page-using-classic-asp-avoiding-major-cross-site-scripting-pitfalls/231606#2316061Answer by Michael for Build "exit" page using Classic ASP avoiding major Cross Site Scripting pitfallsMichael2008-10-23T21:32:08Z2008-10-23T21:32:08Z<p>This is what I recommend for HTML sanitizing -</p>
<p>HTML Whitelist is the latest in the "cool little Python Web service thrown up on App Engine" by my good colleague DeWitt Clinton.</p>
<p>It does one thing, and it does it well. You can pass the service HTML and it will return a sanitized version.</p>
<p><a href="http://html-whitelist.appspot.com/" rel="nofollow">http://html-whitelist.appspot.com/</a></p>
http://stackoverflow.com/questions/231204/build-exit-page-using-classic-asp-avoiding-major-cross-site-scripting-pitfalls/235813#2358132Answer by Bryan Batchelder for Build "exit" page using Classic ASP avoiding major Cross Site Scripting pitfallsBryan Batchelder2008-10-25T02:57:46Z2008-10-25T02:57:46Z<p>You need to implement an approach that follows the concept of "Positive Security Model". You should parse the "site" variable and make sure it conforms explicitly to what is allowed, rather than write something that looks for what should be disallowed. This will make your approach much more resilient to attacks, especially unanticipated ones.</p>
<p>I suggest writing a regex (or ask how to write such a regex on stackoverflow).</p>
<p>Also, while the web service posted by Michael is pretty cool, you should evaluate if it is acceptable or not to take a dependency on such a thing.</p>
http://stackoverflow.com/questions/231204/build-exit-page-using-classic-asp-avoiding-major-cross-site-scripting-pitfalls/238316#2383160Answer by Toby Mills for Build "exit" page using Classic ASP avoiding major Cross Site Scripting pitfallsToby Mills2008-10-26T17:32:03Z2008-10-26T17:32:03Z<p>You could add logic to continue page to ensure that it is only called by a page on one of your sites either based on url or IP address. You could also pass a time and hashed code through for added security.</p>