<?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 #chroot</title>
	<atom:link href="http://brentscheffler.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://brentscheffler.com/blog</link>
	<description>A renaissance view of technology</description>
	<lastBuildDate>Mon, 04 Jul 2011 23:27:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on PHP hotspot login script for Chillispot by Mickael</title>
		<link>http://brentscheffler.com/blog/2005/11/18/php-hotspot-login-script-for-chillispot/#comment-20969</link>
		<dc:creator>Mickael</dc:creator>
		<pubDate>Mon, 04 Jul 2011 23:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://brentscheffler.com/blog/archives/10#comment-20969</guid>
		<description>link dead :-(</description>
		<content:encoded><![CDATA[<p>link dead <img src='http://brentscheffler.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WebSVN Installation by Rob</title>
		<link>http://brentscheffler.com/blog/2008/08/12/websvn-installation/#comment-19393</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Thu, 10 Mar 2011 15:34:42 +0000</pubDate>
		<guid isPermaLink="false">http://brentscheffler.com/blog/2008/08/12/websvn-installation/#comment-19393</guid>
		<description>full instructions on setting up websvn:

http://www.duchnik.com/tutorials/vc/setting-up-and-configuring-websvn</description>
		<content:encoded><![CDATA[<p>full instructions on setting up websvn:</p>
<p><a href="http://www.duchnik.com/tutorials/vc/setting-up-and-configuring-websvn" rel="nofollow">http://www.duchnik.com/tutorials/vc/setting-up-and-configuring-websvn</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WebSVN Installation by ollie</title>
		<link>http://brentscheffler.com/blog/2008/08/12/websvn-installation/#comment-13150</link>
		<dc:creator>ollie</dc:creator>
		<pubDate>Wed, 28 Jul 2010 23:07:51 +0000</pubDate>
		<guid isPermaLink="false">http://brentscheffler.com/blog/2008/08/12/websvn-installation/#comment-13150</guid>
		<description>would have been useful to know where i can find this &quot;include&quot; directory!</description>
		<content:encoded><![CDATA[<p>would have been useful to know where i can find this &#8220;include&#8221; directory!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yet Another Autoresponder (YAA) installation by Peter</title>
		<link>http://brentscheffler.com/blog/2008/02/14/yet-another-autoresponder-yaa-installation/#comment-9880</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Wed, 04 Mar 2009 16:26:38 +0000</pubDate>
		<guid isPermaLink="false">http://brentscheffler.com/blog/archives/20#comment-9880</guid>
		<description>Hey,

These tips helped a lot for me. I had a wrong line in the yaa.conf as well and I could find it with Errvee&#039;s comment.
(The problem was: I used an @(at) sign in my sql password so I had to use another kind of apostrophe.)

Thanks and cheers,
Peter</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>These tips helped a lot for me. I had a wrong line in the yaa.conf as well and I could find it with Errvee&#8217;s comment.<br />
(The problem was: I used an @(at) sign in my sql password so I had to use another kind of apostrophe.)</p>
<p>Thanks and cheers,<br />
Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yet Another Autoresponder (YAA) installation by Errvee</title>
		<link>http://brentscheffler.com/blog/2008/02/14/yet-another-autoresponder-yaa-installation/#comment-9415</link>
		<dc:creator>Errvee</dc:creator>
		<pubDate>Thu, 15 Jan 2009 10:36:38 +0000</pubDate>
		<guid isPermaLink="false">http://brentscheffler.com/blog/archives/20#comment-9415</guid>
		<description>in my case there were problems with yaa.conf (perl syntax error)

I added print command to yaa.pl find out error:


sub parse_config_file {
        my ($file) = @_;
        unless (my $result = do $file) {
                if ($@) {
                        $error = &quot;Syntax error in file &quot; . $file . &quot;: &quot; . $@;
                }
                elsif (! defined $result) {
                        $error = &quot;Couldn&#039;t open file &quot; . $file . &quot;: &quot; . $!;
                }
                elsif (! $result) {
                        $error = &quot;Couldn&#039;t run config file &quot; . $file;
                }
                # return error
# ------ this -- line -- added -------------------------------------
                print STDERR &quot;parse_config_file return 0 error=$error\n&quot;;
# ------ this -- line -- added -------------------------------------
                return 0;
        }
        return 1;
}</description>
		<content:encoded><![CDATA[<p>in my case there were problems with yaa.conf (perl syntax error)</p>
<p>I added print command to yaa.pl find out error:</p>
<p>sub parse_config_file {<br />
        my ($file) = @_;<br />
        unless (my $result = do $file) {<br />
                if ($@) {<br />
                        $error = &#8220;Syntax error in file &#8221; . $file . &#8220;: &#8221; . $@;<br />
                }<br />
                elsif (! defined $result) {<br />
                        $error = &#8220;Couldn&#8217;t open file &#8221; . $file . &#8220;: &#8221; . $!;<br />
                }<br />
                elsif (! $result) {<br />
                        $error = &#8220;Couldn&#8217;t run config file &#8221; . $file;<br />
                }<br />
                # return error<br />
# &#8212;&#8212; this &#8212; line &#8212; added &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
                print STDERR &#8220;parse_config_file return 0 error=$error\n&#8221;;<br />
# &#8212;&#8212; this &#8212; line &#8212; added &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
                return 0;<br />
        }<br />
        return 1;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anatomy of an SSH Brute Force Dictionary Attack by piper</title>
		<link>http://brentscheffler.com/blog/2005/11/28/anatomy-of-an-ssh-brute-force-dictionary-attack/#comment-9329</link>
		<dc:creator>piper</dc:creator>
		<pubDate>Wed, 31 Dec 2008 09:24:48 +0000</pubDate>
		<guid isPermaLink="false">http://brentscheffler.com/blog/?p=11#comment-9329</guid>
		<description>Thanks for sharing the information I was actually looking at my SSH logs and decided to do some google searching. I guess that&#039;s one of the problems we faced when sharing a server with other people.</description>
		<content:encoded><![CDATA[<p>Thanks for sharing the information I was actually looking at my SSH logs and decided to do some google searching. I guess that&#8217;s one of the problems we faced when sharing a server with other people.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CafeRadius by Collin</title>
		<link>http://brentscheffler.com/blog/2006/04/03/caferadius/#comment-8989</link>
		<dc:creator>Collin</dc:creator>
		<pubDate>Fri, 28 Nov 2008 19:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://brentscheffler.com/blog/archives/17#comment-8989</guid>
		<description>Hi sir,

I am really looking forward to your solution on a small radius server. I am trying to get a radius server working on windows xp, but it is all linux based. Due this Windows XP PC acts like a server, and i think it is not nessesairy to put another pc online forever, i was looking for some embedded system with radius. If I could participate in anyway, please contact me. Also if you have news on this project, I would be happy to know.

Collin</description>
		<content:encoded><![CDATA[<p>Hi sir,</p>
<p>I am really looking forward to your solution on a small radius server. I am trying to get a radius server working on windows xp, but it is all linux based. Due this Windows XP PC acts like a server, and i think it is not nessesairy to put another pc online forever, i was looking for some embedded system with radius. If I could participate in anyway, please contact me. Also if you have news on this project, I would be happy to know.</p>
<p>Collin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Regular expression for CSV files by Braheem</title>
		<link>http://brentscheffler.com/blog/2006/08/22/regular-expression-for-csv-files/#comment-7200</link>
		<dc:creator>Braheem</dc:creator>
		<pubDate>Thu, 24 Apr 2008 00:48:05 +0000</pubDate>
		<guid isPermaLink="false">http://brentscheffler.com/blog/archives/19#comment-7200</guid>
		<description>Thanks! That worked perfectly :)</description>
		<content:encoded><![CDATA[<p>Thanks! That worked perfectly <img src='http://brentscheffler.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anatomy of an SSH Brute Force Dictionary Attack by F4LL3N</title>
		<link>http://brentscheffler.com/blog/2005/11/28/anatomy-of-an-ssh-brute-force-dictionary-attack/#comment-3919</link>
		<dc:creator>F4LL3N</dc:creator>
		<pubDate>Mon, 08 Oct 2007 06:24:55 +0000</pubDate>
		<guid isPermaLink="false">http://brentscheffler.com/blog/?p=11#comment-3919</guid>
		<description>losers? lol. You sound disgruntled. perhaps you had this same thing happen to you. ;)  Every Hacker exploits (in some form or another) somones stupidity. It could be a hole in a program, or as simple as a No password/crackable ssh login. Not to mention people... these &quot;lamers&quot; (lol ok..) dont need root account to get root account. Many kernels are exploitable to gain root ax by running a simple app. so its not only a root users login u will need to worry about. (obviously)  U get foolish people like Sadox who have had it happen to them, then claim to be the allknowing hacker master. foolish child. and finally, I come to the conclusion of my book.    Please.... do not remove my files from your boxes. Have a pleasent day.</description>
		<content:encoded><![CDATA[<p>losers? lol. You sound disgruntled. perhaps you had this same thing happen to you. <img src='http://brentscheffler.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   Every Hacker exploits (in some form or another) somones stupidity. It could be a hole in a program, or as simple as a No password/crackable ssh login. Not to mention people&#8230; these &#8220;lamers&#8221; (lol ok..) dont need root account to get root account. Many kernels are exploitable to gain root ax by running a simple app. so its not only a root users login u will need to worry about. (obviously)  U get foolish people like Sadox who have had it happen to them, then claim to be the allknowing hacker master. foolish child. and finally, I come to the conclusion of my book.    Please&#8230;. do not remove my files from your boxes. Have a pleasent day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anatomy of an SSH Brute Force Dictionary Attack by Sadox</title>
		<link>http://brentscheffler.com/blog/2005/11/28/anatomy-of-an-ssh-brute-force-dictionary-attack/#comment-1146</link>
		<dc:creator>Sadox</dc:creator>
		<pubDate>Sun, 22 Jul 2007 22:05:35 +0000</pubDate>
		<guid isPermaLink="false">http://brentscheffler.com/blog/?p=11#comment-1146</guid>
		<description>God... guys... thos` are not hackers... are &quot;the biggest lamers&quot;... pff i&#039;m so sorry to hear that u call these hackers.... these are nothing more than some losers from IRC@Undernet... they don&#039;t know a shit about linux they just have scanners made by someone else... they use these scanners and they know only a set of commands... they don&#039;t even know how the scanner works exactly... damn.... anyway try to read this : http://unixcod.org/forum/index.php?topic=12.0 - so u don&#039;t have to worry about these pathetic losers in the future.</description>
		<content:encoded><![CDATA[<p>God&#8230; guys&#8230; thos` are not hackers&#8230; are &#8220;the biggest lamers&#8221;&#8230; pff i&#8217;m so sorry to hear that u call these hackers&#8230;. these are nothing more than some losers from IRC@Undernet&#8230; they don&#8217;t know a shit about linux they just have scanners made by someone else&#8230; they use these scanners and they know only a set of commands&#8230; they don&#8217;t even know how the scanner works exactly&#8230; damn&#8230;. anyway try to read this : <a href="http://unixcod.org/forum/index.php?topic=12.0" rel="nofollow">http://unixcod.org/forum/index.php?topic=12.0</a> &#8211; so u don&#8217;t have to worry about these pathetic losers in the future.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

