<?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/"
		>
<channel>
	<title>Comments for AskApache searching on protection</title>
	<atom:link href="http://www.askapache.com/search/protection/feed/?withcomments=1" rel="self" type="application/rss+xml" />
	<link>http://www.askapache.com</link>
	<description>Advanced Web Development</description>
	<lastBuildDate>Thu, 16 May 2013 00:37:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on PHP fsockopen for FAST DNS lookups over UDP by pantonini</title>
		<link>http://www.askapache.com/php/php-fsockopen-dns-udp.html#comment-14730</link>
		<dc:creator>pantonini</dc:creator>
		<pubDate>Mon, 13 May 2013 02:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=8835#comment-14730</guid>
		<description><![CDATA[My previous fix was wrong.

After the test &quot; if empty response or bad response, return original ip &quot;, you have to add a test to verify that the last character of the response is a 0 :

   // Verify the last character of response is 0
$responseLength = hexdec(bin2hex(substr( $response, $requestsize + 11, 1 ))); 
if ( bin2hex(substr( $response, $requestsize + $responseLength + 11, 1 )) != &#039;00&#039; ) {
   return $ip;
}]]></description>
		<content:encoded><![CDATA[<p>My previous fix was wrong.</p>
<p>After the test " if empty response or bad response, return original ip ", you have to add a test to verify that the last character of the response is a 0 :</p>
<p>   // Verify the last character of response is 0<br />
$responseLength = hexdec(bin2hex(substr( $response, $requestsize + 11, 1 )));<br />
if ( bin2hex(substr( $response, $requestsize + $responseLength + 11, 1 )) != '00' ) {<br />
   return $ip;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP fsockopen for FAST DNS lookups over UDP by pantonini</title>
		<link>http://www.askapache.com/php/php-fsockopen-dns-udp.html#comment-14729</link>
		<dc:creator>pantonini</dc:creator>
		<pubDate>Sun, 12 May 2013 17:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=8835#comment-14729</guid>
		<description><![CDATA[I fixed the problem by adding a test for an STX character at position requestsize +12 :

   if ( empty( $response ) &#124;&#124; bin2hex( substr( $response, $requestsize + 2, 2 ) ) != &#039;000c&#039; &#124;&#124; bin2hex( substr( $response, $requestsize + 12, 1 ) ) != &#039;02&#039; ) {

      return $ip;

   }]]></description>
		<content:encoded><![CDATA[<p>I fixed the problem by adding a test for an STX character at position requestsize +12 :</p>
<p>   if ( empty( $response ) || bin2hex( substr( $response, $requestsize + 2, 2 ) ) != '000c' || bin2hex( substr( $response, $requestsize + 12, 1 ) ) != '02' ) {</p>
<p>      return $ip;</p>
<p>   }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP fsockopen for FAST DNS lookups over UDP by pantonini</title>
		<link>http://www.askapache.com/php/php-fsockopen-dns-udp.html#comment-14728</link>
		<dc:creator>pantonini</dc:creator>
		<pubDate>Sat, 11 May 2013 23:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=8835#comment-14728</guid>
		<description><![CDATA[Nice improvement but it bugs with this address : 217.195.30.102]]></description>
		<content:encoded><![CDATA[<p>Nice improvement but it bugs with this address : 217.195.30.102</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP to handle HTTP Status Codes for ErrorDocument by gladtobegrey</title>
		<link>http://www.askapache.com/php/php-errordocument.html#comment-14727</link>
		<dc:creator>gladtobegrey</dc:creator>
		<pubDate>Thu, 09 May 2013 13:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/?p=4783#comment-14727</guid>
		<description><![CDATA[I know this is 2+years old, but I&#039;ve only just found t.  I&#039;m getting compilation errors in function askapache_global_debug - it&#039;s complaining about &#039;$v,$k&#039; in the last create_function (message &quot;FATAL ERROR: unexpected symbol sym_variable&quot; in PHP Lint Online)]]></description>
		<content:encoded><![CDATA[<p>I know this is 2+years old, but I've only just found t.  I'm getting compilation errors in function askapache_global_debug - it's complaining about '$v,$k' in the last create_function (message "FATAL ERROR: unexpected symbol sym_variable" in PHP Lint Online)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mod_Security .htaccess tricks by AskApache</title>
		<link>http://www.askapache.com/htaccess/modsecurity-htaccess-tricks.html#comment-14393</link>
		<dc:creator>AskApache</dc:creator>
		<pubDate>Sun, 05 May 2013 03:13:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/htaccess/mod_security-htaccess-tricks.html#comment-14393</guid>
		<description><![CDATA[The only way to do that would be to setup your syslog-ng, rsyslog, logwatch, logrotate, etc.. to parse the mod_security log files, then using that 3rd-party software you would trigger the logs.  Could also do this with a simplistic bash shell script that runs via a cron job.]]></description>
		<content:encoded><![CDATA[<p>The only way to do that would be to setup your syslog-ng, rsyslog, logwatch, logrotate, etc.. to parse the mod_security log files, then using that 3rd-party software you would trigger the logs.  Could also do this with a simplistic bash shell script that runs via a cron job.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mod_Security .htaccess tricks by Juanda Saputra</title>
		<link>http://www.askapache.com/htaccess/modsecurity-htaccess-tricks.html#comment-14721</link>
		<dc:creator>Juanda Saputra</dc:creator>
		<pubDate>Thu, 02 May 2013 02:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/htaccess/mod_security-htaccess-tricks.html#comment-14721</guid>
		<description><![CDATA[can i get help from you?.. i just looking for how to create rules in mod_security email alert automatically
when I get interference from outside, then mod_security will automatically send alerts to my email, 
how do I make it? 
Can you explain step by step? 
im newbie at this, i need help from you
maybe you&#039;ll email me to juandasaputra2727@yahoo.com
thank you alot!]]></description>
		<content:encoded><![CDATA[<p>can i get help from you?.. i just looking for how to create rules in mod_security email alert automatically<br />
when I get interference from outside, then mod_security will automatically send alerts to my email,<br />
how do I make it?<br />
Can you explain step by step?<br />
im newbie at this, i need help from you<br />
maybe you'll email me to juandasaputra2727@yahoo.com<br />
thank you alot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About AskApache by AskApache</title>
		<link>http://www.askapache.com/about/#comment-14718</link>
		<dc:creator>AskApache</dc:creator>
		<pubDate>Sat, 27 Apr 2013 06:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/about/#comment-14718</guid>
		<description><![CDATA[Great article http://paultyma.blogspot.co.uk/2013/04/why-well-never-meet-aliens.html  except I would say to change the FTL.  I look at light speed like the next step after the speed of sound.

The step after light speed is shown in nature by black holes.  Space-time is faster than light.  

Think of creating and using wormholes (minus all the FTL tech we currently use to define them) to &quot;escape&quot; the space-time that is currently lights boundaries as well.

That beyond FTL limit leads to the idea of escaping the universe created by the Big Bang,  which leads to the idea that universes themselves may be as numerous as the stars are within them.

Oh to see the breakthrough!]]></description>
		<content:encoded><![CDATA[<p>Great article http://paultyma.blogspot.co.uk/2013/04/why-well-never-meet-aliens.html  except I would say to change the FTL.  I look at light speed like the next step after the speed of sound.</p>
<p>The step after light speed is shown in nature by black holes.  Space-time is faster than light.  </p>
<p>Think of creating and using wormholes (minus all the FTL tech we currently use to define them) to "escape" the space-time that is currently lights boundaries as well.</p>
<p>That beyond FTL limit leads to the idea of escaping the universe created by the Big Bang,  which leads to the idea that universes themselves may be as numerous as the stars are within them.</p>
<p>Oh to see the breakthrough!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AskApache Password Protection, For WordPress by Holt Johnson</title>
		<link>http://www.askapache.com/wordpress/htaccess-password-protect.html#comment-14709</link>
		<dc:creator>Holt Johnson</dc:creator>
		<pubDate>Tue, 16 Apr 2013 16:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com/wordpress/htaccess-password-protect.html#comment-14709</guid>
		<description><![CDATA[Great aticle.]]></description>
		<content:encoded><![CDATA[<p>Great aticle.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Htaccess &#8211; The Ultimate Guide by Casey Dwayne</title>
		<link>http://www.askapache.com/htaccess/htaccess.html#comment-14707</link>
		<dc:creator>Casey Dwayne</dc:creator>
		<pubDate>Mon, 15 Apr 2013 23:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/htaccesselite-ultimate-htaccess-article.html#comment-14707</guid>
		<description><![CDATA[Awesome article. Thanks for the great resource.]]></description>
		<content:encoded><![CDATA[<p>Awesome article. Thanks for the great resource.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Htaccess &#8211; The Ultimate Guide by Abimo Corde</title>
		<link>http://www.askapache.com/htaccess/htaccess.html#comment-14706</link>
		<dc:creator>Abimo Corde</dc:creator>
		<pubDate>Mon, 15 Apr 2013 14:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.askapache.com.com/htaccess/htaccesselite-ultimate-htaccess-article.html#comment-14706</guid>
		<description><![CDATA[Superb! Thanks]]></description>
		<content:encoded><![CDATA[<p>Superb! Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
