Build "exit" page using Classic ASP avoiding major Cross Site Scripting pitfalls - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:04:16Z http://stackoverflow.com/feeds/question/231204 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/231204/build-exit-page-using-classic-asp-avoiding-major-cross-site-scripting-pitfalls 0 Build "exit" page using Classic ASP avoiding major Cross Site Scripting pitfalls Nip 2008-10-23T19:51:02Z 2008-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>&lt;%@ Language = vbScript %&gt; &lt;% Option Explicit %&gt; &lt;% Dim strLink strLink = Request.QueryString("site") strLink = Replace(strLink, "&lt;", "&amp;lt") strLink = Replace(strLink, "&gt;", "&amp;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, "&amp;&amp;", "") strLink = Replace(strLink, "##", "") strLink = Replace(strLink, "&amp;#", "") %&gt; &lt;a href="&lt;%= strLink %&gt;"&gt;Continue&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/231204/build-exit-page-using-classic-asp-avoiding-major-cross-site-scripting-pitfalls/231606#231606 1 Answer by Michael for Build "exit" page using Classic ASP avoiding major Cross Site Scripting pitfalls Michael 2008-10-23T21:32:08Z 2008-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#235813 2 Answer by Bryan Batchelder for Build "exit" page using Classic ASP avoiding major Cross Site Scripting pitfalls Bryan Batchelder 2008-10-25T02:57:46Z 2008-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#238316 0 Answer by Toby Mills for Build "exit" page using Classic ASP avoiding major Cross Site Scripting pitfalls Toby Mills 2008-10-26T17:32:03Z 2008-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>