<?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"
	>
<channel>
	<title>Comments for Musings on Database Security</title>
	<atom:link href="http://www.slaviks-blog.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.slaviks-blog.com</link>
	<description>Slavik's Blog</description>
	<pubDate>Sat, 05 Jul 2008 08:54:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on Mass SQL Injection attack is still out there by Slavik</title>
		<link>http://www.slaviks-blog.com/2008/06/20/mass-sql-injection-attack-is-still-out-there/#comment-1546</link>
		<dc:creator>Slavik</dc:creator>
		<pubDate>Thu, 26 Jun 2008 09:09:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.slaviks-blog.com/?p=57#comment-1546</guid>
		<description>@Qwaider - The attacks are automated coming from a zombie botnet so they will keep trying to hit your site even if you are not vulnerable. Thanks for the suggestion about ';'. Actually, the last replace will replace ';' with ','.</description>
		<content:encoded><![CDATA[<p>@Qwaider - The attacks are automated coming from a zombie botnet so they will keep trying to hit your site even if you are not vulnerable. Thanks for the suggestion about &#8216;;&#8217;. Actually, the last replace will replace &#8216;;&#8217; with &#8216;,&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mass SQL Injection attack is still out there by Luary</title>
		<link>http://www.slaviks-blog.com/2008/06/20/mass-sql-injection-attack-is-still-out-there/#comment-1530</link>
		<dc:creator>Luary</dc:creator>
		<pubDate>Thu, 26 Jun 2008 01:07:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.slaviks-blog.com/?p=57#comment-1530</guid>
		<description>The regular expression did not work in my case. I ended up doing a Split(stringtoscan, ";")(0) and with that result replaced "'" with "''", removing "@" as well as removing SQL key words such as DROP, EXECUTE, UPDATE, etc.</description>
		<content:encoded><![CDATA[<p>The regular expression did not work in my case. I ended up doing a Split(stringtoscan, &#8220;;&#8221;)(0) and with that result replaced &#8220;&#8216;&#8221; with &#8220;&#8221;&#8221;, removing &#8220;@&#8221; as well as removing SQL key words such as DROP, EXECUTE, UPDATE, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mass SQL Injection attack is still out there by Qwaider</title>
		<link>http://www.slaviks-blog.com/2008/06/20/mass-sql-injection-attack-is-still-out-there/#comment-1461</link>
		<dc:creator>Qwaider</dc:creator>
		<pubDate>Tue, 24 Jun 2008 19:52:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.slaviks-blog.com/?p=57#comment-1461</guid>
		<description>I'm facing the very same attack, and I'm monitoring it very closely. I wish I could figure out what these people want. I mean, it's obvious that I've got everything parametrized and they will not get through. But this doesnt stop them from trying as I can see it.

Quick suggestion on your function above. Unless the querystring has a use for ";", you might want to check for that in specific simply because someone might have ";drop" or something else that could be harmful

Just my 2c</description>
		<content:encoded><![CDATA[<p>I&#8217;m facing the very same attack, and I&#8217;m monitoring it very closely. I wish I could figure out what these people want. I mean, it&#8217;s obvious that I&#8217;ve got everything parametrized and they will not get through. But this doesnt stop them from trying as I can see it.</p>
<p>Quick suggestion on your function above. Unless the querystring has a use for &#8220;;&#8221;, you might want to check for that in specific simply because someone might have &#8220;;drop&#8221; or something else that could be harmful</p>
<p>Just my 2c</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mass SQL Injection attack is still out there by DBA</title>
		<link>http://www.slaviks-blog.com/2008/06/20/mass-sql-injection-attack-is-still-out-there/#comment-1458</link>
		<dc:creator>DBA</dc:creator>
		<pubDate>Tue, 24 Jun 2008 19:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.slaviks-blog.com/?p=57#comment-1458</guid>
		<description>THANK YOU VERY MUCH FOR THIS FIX.</description>
		<content:encoded><![CDATA[<p>THANK YOU VERY MUCH FOR THIS FIX.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on So, you think you&#8217;ve removed that sensitive data by So, you think you’ve removed that sensitive data (part II) &#187; Musings on Database Security</title>
		<link>http://www.slaviks-blog.com/2008/05/26/so-you-think-youve-removed-that-sensitive-data/#comment-1163</link>
		<dc:creator>So, you think you’ve removed that sensitive data (part II) &#187; Musings on Database Security</dc:creator>
		<pubDate>Tue, 03 Jun 2008 00:55:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.slaviks-blog.com/?p=54#comment-1163</guid>
		<description>[...] I wrote in a previous post, truncating tables or scrambling content might not remove the actual data from the datafiles. The [...]</description>
		<content:encoded><![CDATA[<p>[...] I wrote in a previous post, truncating tables or scrambling content might not remove the actual data from the datafiles. The [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on So, you think you&#8217;ve removed that sensitive data by Paul Vallee</title>
		<link>http://www.slaviks-blog.com/2008/05/26/so-you-think-youve-removed-that-sensitive-data/#comment-1161</link>
		<dc:creator>Paul Vallee</dc:creator>
		<pubDate>Sat, 31 May 2008 10:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.slaviks-blog.com/?p=54#comment-1161</guid>
		<description>Hi Slavik,

You could take a look at a company called Plato Systems. They make a special purpose software suite especially designed for the use case you describe, called "camouflage". You can find out more about them at &lt;a href="http://www.datamasking.com/" rel="nofollow"&gt;http://www.datamasking.com&lt;/a&gt;.

HTH

Paul</description>
		<content:encoded><![CDATA[<p>Hi Slavik,</p>
<p>You could take a look at a company called Plato Systems. They make a special purpose software suite especially designed for the use case you describe, called &#8220;camouflage&#8221;. You can find out more about them at <a href="http://www.datamasking.com/" rel="nofollow">http://www.datamasking.com</a>.</p>
<p>HTH</p>
<p>Paul</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.481 seconds -->
