<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Against All Odds &#187; Dos</title>
	<atom:link href="http://ppshein.wordpress.com/tag/dos/feed/" rel="self" type="application/rss+xml" />
	<link>http://ppshein.wordpress.com</link>
	<description>All of my solutions in my web developer life.</description>
	<lastBuildDate>Fri, 13 Nov 2009 05:35:40 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ppshein.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/5c7d9584ae0c9554627c3a575a746e86?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Against All Odds &#187; Dos</title>
		<link>http://ppshein.wordpress.com</link>
	</image>
			<item>
		<title>Prevent spontaneously attempted login attack</title>
		<link>http://ppshein.wordpress.com/2008/09/30/prevent-brute-force-login-attack/</link>
		<comments>http://ppshein.wordpress.com/2008/09/30/prevent-brute-force-login-attack/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 02:45:42 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[CFMX]]></category>
		<category><![CDATA[Dos]]></category>
		<category><![CDATA[prevent]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=105</guid>
		<description><![CDATA[Sometimes, most of our websites have been attacked by spontaneously attempted login attack by bots. That&#8217;s why we gotta prevent anyone cannot do like that in our web application. Fortunately, it&#8217;s very simple to do in ColdFusion. Here is coding&#8230;
&#60;cfif session.FailedLogin GT 3&#62;
&#60;cfabort message=&#8221;Sorry.! Please contact website administrator to get your password.&#8221;&#62;
&#60;/cfif&#62;
&#60;cfif loginsuccessfully &#8230;.&#62;
Write your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=105&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2008/09/30/prevent-brute-force-login-attack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>
	</item>
		<item>
		<title>Make simple DOS attach with ASP.NET</title>
		<link>http://ppshein.wordpress.com/2008/09/30/make-simple-dos-attach-with-aspnet/</link>
		<comments>http://ppshein.wordpress.com/2008/09/30/make-simple-dos-attach-with-aspnet/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 02:39:06 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[ASP.NET #C]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[Dos]]></category>
		<category><![CDATA[prevent]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=103</guid>
		<description><![CDATA[I&#8217;ve describe how to make simple DOS attack with Asp.Net. My purpose of writing this thread isn&#8217;t to annoy web administrator. My point is how to prevent Dos attack and how to abort Dos attack for our website.
 for( int i = 0; i &#60; 100000; i ++ )
 {
 WebClient client = new WebClient();
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=103&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2008/09/30/make-simple-dos-attach-with-aspnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Injection attacks by Store Procedure</title>
		<link>http://ppshein.wordpress.com/2008/08/23/sql-injection-attacks-by-store-procedure/</link>
		<comments>http://ppshein.wordpress.com/2008/08/23/sql-injection-attacks-by-store-procedure/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 04:48:14 +0000</pubDate>
		<dc:creator>ppshein</dc:creator>
				<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[Dos]]></category>
		<category><![CDATA[prevent]]></category>
		<category><![CDATA[SQL injection]]></category>

		<guid isPermaLink="false">http://ppshein.wordpress.com/?p=20</guid>
		<description><![CDATA[I was in dilemma in these days because our website has been attacked by SQL Injection Attacks by the way of using store procedure command in URL variable. Finally, I can prevent this one cannot attack to our site by using like that anymore. The one use following store procedure command the after &#8220;?&#8221; of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ppshein.wordpress.com&blog=2328232&post=20&subd=ppshein&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://ppshein.wordpress.com/2008/08/23/sql-injection-attacks-by-store-procedure/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ppshein</media:title>
		</media:content>
	</item>
	</channel>
</rss>