<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Safe HTML and XSS</title>
	<atom:link href="http://blog.stackoverflow.com/2008/06/safe-html-and-xss/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stackoverflow.com/2008/06/safe-html-and-xss/</link>
	<description>a programming community exploit</description>
	<lastBuildDate>Mon, 23 Nov 2009 09:29:13 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jake Scott</title>
		<link>http://blog.stackoverflow.com/2008/06/safe-html-and-xss/#comment-15313</link>
		<dc:creator>Jake Scott</dc:creator>
		<pubDate>Tue, 24 Feb 2009 21:03:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=56#comment-15313</guid>
		<description>What happened to the code you posted its no longer on Refactor my code...?</description>
		<content:encoded><![CDATA[<p>What happened to the code you posted its no longer on Refactor my code&#8230;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wickethewok</title>
		<link>http://blog.stackoverflow.com/2008/06/safe-html-and-xss/#comment-6191</link>
		<dc:creator>wickethewok</dc:creator>
		<pubDate>Tue, 02 Sep 2008 15:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=56#comment-6191</guid>
		<description>This what I like about PHP.  This would simply be two calls to the built-in functions strip_tags() and then htmlspecialchars() .  Surely there are existing C# libraries out in the open-source community that already have this functionality?</description>
		<content:encoded><![CDATA[<p>This what I like about PHP.  This would simply be two calls to the built-in functions strip_tags() and then htmlspecialchars() .  Surely there are existing C# libraries out in the open-source community that already have this functionality?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Stodola</title>
		<link>http://blog.stackoverflow.com/2008/06/safe-html-and-xss/#comment-1731</link>
		<dc:creator>Josh Stodola</dc:creator>
		<pubDate>Tue, 24 Jun 2008 19:37:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=56#comment-1731</guid>
		<description>Best way to do this is to HTML encode the entire message, then un-encode the tags in the whitelist (making sure a closing element is present, the number of closing elements equals the number of opening elements, etc).  This way if they happen to accidentally screw up the tags, you the administrator will notice it and be able to correct it for them (or they could correct it, if comments have edit capabilities).  Strip ANYTHING out of the users input and you have FAILED.</description>
		<content:encoded><![CDATA[<p>Best way to do this is to HTML encode the entire message, then un-encode the tags in the whitelist (making sure a closing element is present, the number of closing elements equals the number of opening elements, etc).  This way if they happen to accidentally screw up the tags, you the administrator will notice it and be able to correct it for them (or they could correct it, if comments have edit capabilities).  Strip ANYTHING out of the users input and you have FAILED.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig</title>
		<link>http://blog.stackoverflow.com/2008/06/safe-html-and-xss/#comment-1725</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Tue, 24 Jun 2008 14:03:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=56#comment-1725</guid>
		<description>I&#039;ve used &lt;a href=&quot;http://www.codeplex.com/htmlagilitypack&quot; rel=&quot;nofollow&quot;&gt;Html Agility Pack&lt;/a&gt; to do handle &quot;messy/invalid html&quot; parsing. You&#039;d still need to do the sanitation but at least you&#039;ll get a DOM to step through.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve used <a href="http://www.codeplex.com/htmlagilitypack" rel="nofollow">Html Agility Pack</a> to do handle &#8220;messy/invalid html&#8221; parsing. You&#8217;d still need to do the sanitation but at least you&#8217;ll get a DOM to step through.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: [ICR]</title>
		<link>http://blog.stackoverflow.com/2008/06/safe-html-and-xss/#comment-1703</link>
		<dc:creator>[ICR]</dc:creator>
		<pubDate>Tue, 24 Jun 2008 07:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=56#comment-1703</guid>
		<description>Okay, maybe I was a little optimistic in saying &quot;good&quot;, but http://www.majestic12.co.uk/projects/html_parser.php is okay, I&#039;ve heard http://www.chilkatsoft.com/HtmlToXmlDotNet.asp works pretty well though annoyingly I can&#039;t find the other I&#039;ve used before.</description>
		<content:encoded><![CDATA[<p>Okay, maybe I was a little optimistic in saying &#8220;good&#8221;, but <a href="http://www.majestic12.co.uk/projects/html_parser.php" rel="nofollow">http://www.majestic12.co.uk/projects/html_parser.php</a> is okay, I&#8217;ve heard <a href="http://www.chilkatsoft.com/HtmlToXmlDotNet.asp" rel="nofollow">http://www.chilkatsoft.com/HtmlToXmlDotNet.asp</a> works pretty well though annoyingly I can&#8217;t find the other I&#8217;ve used before.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Huppie</title>
		<link>http://blog.stackoverflow.com/2008/06/safe-html-and-xss/#comment-1700</link>
		<dc:creator>Huppie</dc:creator>
		<pubDate>Tue, 24 Jun 2008 06:47:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=56#comment-1700</guid>
		<description>[ICR]
1. Removing the tags is no problem since the original input is saved in the database as well (see Jeff&#039;s comment two post above yours.
2. Please enlighten us, my first guess was there should be a few good HTML parsers for .NET but I haven&#039;t found any good ones yet. Can you provide hyperlinks to &#039;a few good .NET HTML parsers&#039;?</description>
		<content:encoded><![CDATA[<p>[ICR]<br />
1. Removing the tags is no problem since the original input is saved in the database as well (see Jeff&#8217;s comment two post above yours.<br />
2. Please enlighten us, my first guess was there should be a few good HTML parsers for .NET but I haven&#8217;t found any good ones yet. Can you provide hyperlinks to &#8216;a few good .NET HTML parsers&#8217;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: [ICR]</title>
		<link>http://blog.stackoverflow.com/2008/06/safe-html-and-xss/#comment-1641</link>
		<dc:creator>[ICR]</dc:creator>
		<pubDate>Mon, 23 Jun 2008 14:13:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=56#comment-1641</guid>
		<description>Haven&#039;t you learnt from all the trouble people have with writing generics on your blog that simply removing suspected tags isn&#039;t a good idea? Yes you can do it easier in code blocks, but I&#039;m willing to bet you&#039;ll still end up eating people&#039;s content simply because it&#039;s between angle brackets. Just escape them.

There are a few good .NET HTML parsers on the web, I&#039;d recommend using one of those over regex&#039;s.</description>
		<content:encoded><![CDATA[<p>Haven&#8217;t you learnt from all the trouble people have with writing generics on your blog that simply removing suspected tags isn&#8217;t a good idea? Yes you can do it easier in code blocks, but I&#8217;m willing to bet you&#8217;ll still end up eating people&#8217;s content simply because it&#8217;s between angle brackets. Just escape them.</p>
<p>There are a few good .NET HTML parsers on the web, I&#8217;d recommend using one of those over regex&#8217;s.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Quinn</title>
		<link>http://blog.stackoverflow.com/2008/06/safe-html-and-xss/#comment-1633</link>
		<dc:creator>Mark Quinn</dc:creator>
		<pubDate>Mon, 23 Jun 2008 09:23:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=56#comment-1633</guid>
		<description>Just ensure that you take a whitelist approach whenever doing this sort of sanitising of any type of externally-supplied input. As can be seen in the xss cheat-sheet to which you link, there are too many ways to get round blacklist implementations. 

Additionally whitelists means that you know exactly what types of tags and data you accept and need to style; More importantly: you are much more protected from new standard, changes and exploits.


... And of course, when writing the data to your db, make sure you use parameterized (prepared) statements.</description>
		<content:encoded><![CDATA[<p>Just ensure that you take a whitelist approach whenever doing this sort of sanitising of any type of externally-supplied input. As can be seen in the xss cheat-sheet to which you link, there are too many ways to get round blacklist implementations. </p>
<p>Additionally whitelists means that you know exactly what types of tags and data you accept and need to style; More importantly: you are much more protected from new standard, changes and exploits.</p>
<p>&#8230; And of course, when writing the data to your db, make sure you use parameterized (prepared) statements.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Atwood</title>
		<link>http://blog.stackoverflow.com/2008/06/safe-html-and-xss/#comment-1626</link>
		<dc:creator>Jeff Atwood</dc:creator>
		<pubDate>Mon, 23 Jun 2008 01:18:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=56#comment-1626</guid>
		<description>&gt; There are no reasons why people should be inserting live HTML or javascript into your database, in my opinion

Remember, we&#039;re like Wikipedia -- we allow editing. Thus, we are storing two representations of every edit:

1) the pre-rendered output 
2) the editable content</description>
		<content:encoded><![CDATA[<p>> There are no reasons why people should be inserting live HTML or javascript into your database, in my opinion</p>
<p>Remember, we&#8217;re like Wikipedia &#8212; we allow editing. Thus, we are storing two representations of every edit:</p>
<p>1) the pre-rendered output<br />
2) the editable content</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Anderson</title>
		<link>http://blog.stackoverflow.com/2008/06/safe-html-and-xss/#comment-1621</link>
		<dc:creator>Ian Anderson</dc:creator>
		<pubDate>Sun, 22 Jun 2008 13:24:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stackoverflow.com/?p=56#comment-1621</guid>
		<description>I don&#039;t think you should be storing HTML or JS in the database at all; if you escape all characters to their html-safe equivalents (e.g. left angel bracket as ampersand lt semicolon), then the code should display as text when it is output. There are no reasons why people should be inserting live HTML or javascript into your database, in my opinion. Or you could escape it on output. No XSS then.
Hope this helps!</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think you should be storing HTML or JS in the database at all; if you escape all characters to their html-safe equivalents (e.g. left angel bracket as ampersand lt semicolon), then the code should display as text when it is output. There are no reasons why people should be inserting live HTML or javascript into your database, in my opinion. Or you could escape it on output. No XSS then.<br />
Hope this helps!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
