<?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 Rick Deckardt</title>
	<atom:link href="http://deckardt.nl/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://deckardt.nl/blog</link>
	<description>~ linux infosec ~</description>
	<lastBuildDate>Thu, 21 Feb 2013 00:31:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Denyhosts to iptables &#8211; crontab script by Johnny</title>
		<link>http://deckardt.nl/blog/2012/10/06/denyhosts-to-iptables-crontab-script/comment-page-1/#comment-34632</link>
		<dc:creator>Johnny</dc:creator>
		<pubDate>Thu, 21 Feb 2013 00:31:23 +0000</pubDate>
		<guid isPermaLink="false">http://deckardt.nl/blog/?p=1078#comment-34632</guid>
		<description><![CDATA[I wrote a php script as well to do the same. I use password-less log in only and with an ISP that only provides DHCP the hosts.allow checks are cumbersome.  While I like bash, I fine PHP easier so anyone more familiar with PHP, enjoy:
#!/usr/bin/php
&lt;?php
// edit this line for your hosts IP addresses
$localNet = array(&quot;127.0.0.1&quot;, &quot;12.x.x.x&quot;, &quot;10.x.x.x&quot;);         
$lines = file(&quot;/etc/hosts.deny&quot;);
foreach ($lines as $line) {
        list($trash, $ip) = explode(&quot;:&quot;, $line);
        $ip = trim($ip);
        if (empty($ip) &#124;&#124; !filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) &#124;&#124; in_array($ip, $localNet)) {
                continue; // avoid blocking self and fake IPs
        }
        $cmd = &quot;/sbin/iptables -n -L INPUT &#124; grep $ip &#124; awk &#039;{print $1}&#039;&quot;;
        $status = exec($cmd, $output);
        if (empty($output[0]) &#124;&#124; $output[0] != &quot;DROP&quot;) {
                $iptables = &quot;iptables -A INPUT -s $ip -j DROP&quot;;
                exec($iptables);
                echo &quot;$iptables\n&quot;;
        }
}]]></description>
		<content:encoded><![CDATA[<p>I wrote a php script as well to do the same. I use password-less log in only and with an ISP that only provides DHCP the hosts.allow checks are cumbersome.  While I like bash, I fine PHP easier so anyone more familiar with PHP, enjoy:<br />
#!/usr/bin/php<br />
&lt;?php<br />
// edit this line for your hosts IP addresses<br />
$localNet = array(&quot;127.0.0.1&quot;, &quot;12.x.x.x&quot;, &quot;10.x.x.x&quot;);<br />
$lines = file(&quot;/etc/hosts.deny&quot;);<br />
foreach ($lines as $line) {<br />
        list($trash, $ip) = explode(&quot;:&quot;, $line);<br />
        $ip = trim($ip);<br />
        if (empty($ip) || !filter_var($ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) || in_array($ip, $localNet)) {<br />
                continue; // avoid blocking self and fake IPs<br />
        }<br />
        $cmd = &quot;/sbin/iptables -n -L INPUT | grep $ip | awk &#039;{print $1}&#039;&quot;;<br />
        $status = exec($cmd, $output);<br />
        if (empty($output[0]) || $output[0] != &quot;DROP&quot;) {<br />
                $iptables = &quot;iptables -A INPUT -s $ip -j DROP&quot;;<br />
                exec($iptables);<br />
                echo &quot;$iptables\n&quot;;<br />
        }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 10 reasons why gay marriage should be illegal by Rikki</title>
		<link>http://deckardt.nl/blog/2010/02/13/10-reasons-why-gay-marriage-should-be-illegal/comment-page-1/#comment-31167</link>
		<dc:creator>Rikki</dc:creator>
		<pubDate>Thu, 07 Jun 2012 23:16:57 +0000</pubDate>
		<guid isPermaLink="false">http://deckardt.nl/blog/2010/02/13/10-reasons-why-gay-marriage-should-be-illegal/#comment-31167</guid>
		<description><![CDATA[The reason u cant find any good reason as to why gays shouldnt be allowed to get married is because there isnt any reason. they should be allowed to get married just like everyone else]]></description>
		<content:encoded><![CDATA[<p>The reason u cant find any good reason as to why gays shouldnt be allowed to get married is because there isnt any reason. they should be allowed to get married just like everyone else</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 10 reasons why gay marriage should be illegal by sydney</title>
		<link>http://deckardt.nl/blog/2010/02/13/10-reasons-why-gay-marriage-should-be-illegal/comment-page-1/#comment-31093</link>
		<dc:creator>sydney</dc:creator>
		<pubDate>Thu, 31 May 2012 20:44:39 +0000</pubDate>
		<guid isPermaLink="false">http://deckardt.nl/blog/2010/02/13/10-reasons-why-gay-marriage-should-be-illegal/#comment-31093</guid>
		<description><![CDATA[The three doofuses posting comments are ridiculous. It&#039;s a joke! They are making fun of homophobic people!]]></description>
		<content:encoded><![CDATA[<p>The three doofuses posting comments are ridiculous. It&#8217;s a joke! They are making fun of homophobic people!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speedtouch fun &#8211; the root hack by rabih</title>
		<link>http://deckardt.nl/blog/2008/06/28/speedtouch-fun-the-root-hack/comment-page-1/#comment-30685</link>
		<dc:creator>rabih</dc:creator>
		<pubDate>Fri, 20 Apr 2012 15:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://deckardt.nl/blog/?p=266#comment-30685</guid>
		<description><![CDATA[im   very tnx   fo  hack   tril]]></description>
		<content:encoded><![CDATA[<p>im   very tnx   fo  hack   tril</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kiezen, MicroSD met muziek of goud by Sam</title>
		<link>http://deckardt.nl/blog/2012/03/16/kiezen-microsd-met-muziek-of-goud/comment-page-1/#comment-30657</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 17 Apr 2012 22:01:23 +0000</pubDate>
		<guid isPermaLink="false">http://deckardt.nl/blog/?p=1070#comment-30657</guid>
		<description><![CDATA[Ik heb het filmpje al wel 100x voorbij zien komen maar jouw inleiding was de allerbeste.]]></description>
		<content:encoded><![CDATA[<p>Ik heb het filmpje al wel 100x voorbij zien komen maar jouw inleiding was de allerbeste.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Youporn hacked, password analyses by FooBar</title>
		<link>http://deckardt.nl/blog/2012/02/23/youporn-com-hacked-password-analyses/comment-page-1/#comment-29696</link>
		<dc:creator>FooBar</dc:creator>
		<pubDate>Thu, 23 Feb 2012 10:46:53 +0000</pubDate>
		<guid isPermaLink="false">http://deckardt.nl/blog/?p=1058#comment-29696</guid>
		<description><![CDATA[Not thinking with their head... I must disagree... Would you use a serious password for a free online site where you have no need to specify any identity related data.

There&#039;s no credit-card data there, there is no special access rights (besides just having &#039;a account&#039;) ... Might as well just only ask for a login-name... since it&#039;s just a chat identifier.

There&#039;s no (mandatory) identification on IRC or other chat-systems.

But yeah, why make an account in the first place... you are right, they weren&#039;t thinking with their heads ;) ... not the one on top of their necks anyway.]]></description>
		<content:encoded><![CDATA[<p>Not thinking with their head&#8230; I must disagree&#8230; Would you use a serious password for a free online site where you have no need to specify any identity related data.</p>
<p>There&#8217;s no credit-card data there, there is no special access rights (besides just having &#8216;a account&#8217;) &#8230; Might as well just only ask for a login-name&#8230; since it&#8217;s just a chat identifier.</p>
<p>There&#8217;s no (mandatory) identification on IRC or other chat-systems.</p>
<p>But yeah, why make an account in the first place&#8230; you are right, they weren&#8217;t thinking with their heads ;) &#8230; not the one on top of their necks anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speedtouch fun &#8211; the root hack by how do i get the internet on my itouch with a speedtouch router?</title>
		<link>http://deckardt.nl/blog/2008/06/28/speedtouch-fun-the-root-hack/comment-page-1/#comment-27462</link>
		<dc:creator>how do i get the internet on my itouch with a speedtouch router?</dc:creator>
		<pubDate>Mon, 10 Oct 2011 07:35:13 +0000</pubDate>
		<guid isPermaLink="false">http://deckardt.nl/blog/?p=266#comment-27462</guid>
		<description><![CDATA[[...] Help would be much appreiciated. Check out our user posted comments/solutions, or post your own! Darren T asks, I have a speedtouch 585 v6 router and i can not connect to the internet,my ipod is ab...se it can&#039;t find the server. Help would be much appreiciated. Check out our user posted [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Help would be much appreiciated. Check out our user posted comments/solutions, or post your own! Darren T asks, I have a speedtouch 585 v6 router and i can not connect to the internet,my ipod is ab&#8230;se it can&#039;t find the server. Help would be much appreiciated. Check out our user posted [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
