<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/10209" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2005-08-06T20:58:49-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/10209</id>

		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-08-06T20:58:49-04:00</updated>

		<published>2005-08-06T20:58:49-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53791#p53791</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53791#p53791"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53791#p53791"><![CDATA[
$thelist should be something like this:<blockquote class="uncited"><div>id pass nick idnet host chan<br>id2 pass2 nick2 idnet2 host2 chan2<br>id3 pass3 nick3 idnet3 host3 chan3<br>...etc</div></blockquote>each <strong class="text-strong">line</strong> is an element of $thelist, not each word.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sat Aug 06, 2005 8:58 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2005-08-06T18:17:52-04:00</updated>

		<published>2005-08-06T18:17:52-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53787#p53787</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53787#p53787"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53787#p53787"><![CDATA[
oh. I was thinking that they would be seperate like<br><div class="codebox"><p>Code: </p><pre><code>set thelist {"id""pass""nick""ident""host""chan"} but itsset thelist {"id pass nick idnet host chan"}etc</code></pre></div>Thanks demond <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy">.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Sat Aug 06, 2005 6:17 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-08-06T17:13:16-04:00</updated>

		<published>2005-08-06T17:13:16-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53785#p53785</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53785#p53785"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53785#p53785"><![CDATA[
<em class="text-italics">thelist</em> in your case will be Tcl list comprised of strings which contain your data: "$ID $password $nick $ident $host $channel"<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Sat Aug 06, 2005 5:13 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2005-08-06T15:43:48-04:00</updated>

		<published>2005-08-06T15:43:48-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53782#p53782</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53782#p53782"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53782#p53782"><![CDATA[
<div class="codebox"><p>Code: </p><pre><code>set thelist {} if ![catch {set fd [open datafile.txt]}] {    eval lappend thelist [split [read $fd] \n]    close $fd }  if {...} { ;# add    lappend thelist $data } elseif {...} { ;# search    if {[set idx [lsearch $thelist $data]] != -1} {       # found    } else {       # not found    } } elseif {...} { ;# update    if {[set idx [lsearch $thelist $data]] != -1} {       lset thelist $idx $newdata ;# ot use [lreplace] for older Tcl installs    }    } elseif {...} { ;# delete    if {[set idx [lsearch $thelist $data]] != -1} {       set thelist [lreplace $thelist $idx $idx]    } }  bind time - ?0* save proc save {m h d mo y} {    set fd [open datafile.txt w]    foreach elem $thelist {puts $fd $elem}    close $fd } </code></pre></div>Thats the script which demond posted. <br><br>I dont know how i could modify that so it will write to the file in this format:<br><br>ID# password nick ident host channel <br><br>It includes channel as im banning them channel specific. Dont ask me why, i just feel banning channel specific seems better. <br>So can you give me any ideas of how to modify that script so it writes to the file in that format. <br><br>Thanks in advance!!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Sat Aug 06, 2005 3:43 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2005-08-06T15:29:58-04:00</updated>

		<published>2005-08-06T15:29:58-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53781#p53781</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53781#p53781"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53781#p53781"><![CDATA[
Yes. I was just looking for the post at which demond posted that script for memory.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Sat Aug 06, 2005 3:29 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sir_Fz]]></name></author>
		<updated>2005-08-06T15:27:59-04:00</updated>

		<published>2005-08-06T15:27:59-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53780#p53780</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53780#p53780"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53780#p53780"><![CDATA[
As demond suggested before, and you never listened, store into a variable and bind to time for example every hour store the variable into a file.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3085">Sir_Fz</a> — Sat Aug 06, 2005 3:27 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2005-08-06T15:21:35-04:00</updated>

		<published>2005-08-06T15:21:35-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53779#p53779</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53779#p53779"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53779#p53779"><![CDATA[
Thanks Sky and demond for this help <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy">. It now works, just some small bugs which i can correct. Just a database system. I dont know if i should manipulate the data in memory or open the database file and write to the end of the file every time a pjen is detected. What would any of you suggest. Memory or file...?<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Sat Aug 06, 2005 3:21 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[sKy]]></name></author>
		<updated>2005-08-06T08:43:29-04:00</updated>

		<published>2005-08-06T08:43:29-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53752#p53752</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53752#p53752"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53752#p53752"><![CDATA[
<blockquote class="uncited"><div>proc pjen:nick {nick host hand chan newnick} { <br>  if {![isbotnick $nick] || ![string equal -nocase $nick $newnick]} { <br>    [pjen:check $newnick $host $hand $chan] <br>  } <br>}</div></blockquote>the [ ] will execute the command and give you the return value from that command(/proc) back.<br><br>On each nickchange you will get an error: Tcl error: invalid command name "0". To correct this you have to write:<br>set returncode [pjen:check $newnick $host $hand $chan]<br>or just  pjen:check $newnick $host $hand $chan<br><br>Well, to set the returncode won`t make much sense in your case tbh.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6101">sKy</a> — Sat Aug 06, 2005 8:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2005-08-04T20:04:13-04:00</updated>

		<published>2005-08-04T20:04:13-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53722#p53722</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53722#p53722"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53722#p53722"><![CDATA[
Yes. But half of my brain is dead. Its the morning lol!!!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Thu Aug 04, 2005 8:04 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-08-04T19:59:06-04:00</updated>

		<published>2005-08-04T19:59:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53721#p53721</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53721#p53721"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53721#p53721"><![CDATA[
tosser, no offense, but anyone with half a brain would dig that all instances of <em class="text-italics">$foo-bar</em> need to be substituted with <em class="text-italics">${foo-bar}</em><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Thu Aug 04, 2005 7:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2005-08-04T19:42:34-04:00</updated>

		<published>2005-08-04T19:42:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53720#p53720</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53720#p53720"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53720#p53720"><![CDATA[
So are you saying i should change<br><div class="codebox"><p>Code: </p><pre><code>variable pjen-check "1" </code></pre></div>To <br><div class="codebox"><p>Code: </p><pre><code>variable {$pjen-check} "1" </code></pre></div>?????<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Thu Aug 04, 2005 7:42 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-08-04T19:39:27-04:00</updated>

		<published>2005-08-04T19:39:27-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53719#p53719</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53719#p53719"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53719#p53719"><![CDATA[
<em class="text-italics">$foo-bar</em> is syntax error<br><br><em class="text-italics">${foo-bar}</em> is not<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Thu Aug 04, 2005 7:39 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[r0t3n]]></name></author>
		<updated>2005-08-04T18:24:43-04:00</updated>

		<published>2005-08-04T18:24:43-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=53716#p53716</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=53716#p53716"/>
		<title type="html"><![CDATA[antipjen]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=53716#p53716"><![CDATA[
Ok. The error: <br><div class="codebox"><p>Code: </p><pre><code>[23:20] Tcl error [pjen:check]: syntax error in expression "$pjen-check": variable references require preceding $</code></pre></div>The code<br><div class="codebox"><p>Code: </p><pre><code>setudef flag pjensetudef str pjendetectedsetudef str pjenkickedsetudef str pjenjoinbind join - * pjen:checkbind nick - * pjen:nickbind pub - !trojan pub:pjenbind pub - !pjen pub:pjenproc pub:pjen {nick host hand chan arg} {  set cmd [lindex [split $arg] 0]  switch -exact -- [string tolower $cmd] {    "on" {      if {![matchattr $hand nmo|nmo $chan]} {        putserv "NOTICE $nick :Error: You do not have access to this command."        } else {        if {[channel get $chan "pjen"]} {          putserv "NOTICE $nick :Antipjen scan is already enabled for $chan."          } else {          putserv "NOTICE $nick :Antipjen scan is now enabled for $chan."          channel set $chan +pjen          putserv "PRIVMSG $chan :Antipjen scan is now enabled for this channel."        }      }    }    "off" {      if {![matchattr $hand nmo|nmo $chan]} {        putserv "NOTICE $nick :Error: You do not have access to this command."        } else {        if {![channel get $chan "pjen"]} {          putserv "NOTICE $nick :Antipjen scan is already disabled for $chan."          } else {          putserv "NOTICE $nick :Antipjen scan is now disabled for $chan."          channel set $chan -pjen          putserv "PRIVMSG $chan :Antipjen scan is now disabled for this channel."        }      }    }    "stats" {      if {([channel get $chan "pjenjoin"] == "")} {        channel set $chan pjenjoin 0      }      if {([channel get $chan "pjendetected"] == "")} {        channel set $chan pjendetected 0      }      if {([channel get $chan "pjenkicked"] == "")} {        channel set $chan pjenkicked 0      }      putserv "NOTICE $nick :Antipjen stats for $chan."      putserv "NOTICE $nick :Joins: [channel get $chan "pjenjoin"]"      putserv "NOTICE $nick :Detected: [channel get $chan "pjendetected"]"      putserv "NOTICE $nick :Kicked/Banned: [channel get $chan "pjenkicked"]"      putserv "NOTICE $nick :End of Antipjen stats for $chan."    }    "default" {      if {[channel get $chan "pjen"]} {        set pjen_status enabled        } else {        set pjen_status disabled      }      putserv "NOTICE $nick :Antipjen scan for $chan is: $pjen_status."      putserv "NOTICE $nick :Commands: !antipjen on|off|stats."    }  }}proc pjen:nick {nick host hand chan newnick} {  if {![isbotnick $nick] || ![string equal -nocase $nick $newnick]} {    [pjen:check $newnick $host $hand $chan]  }}proc pjen:check {nick host hand chan} {  if {![channel get $chan "pjen"]} {    return 0   }   if {[matchattr $hand nmoT|nmof $chan]} {    return 0  }  if {[string match "*quakenet.org" $host]} {    return 0  }  variable pjen-check "1"  set pjen-nick "$nick"  if {$pjen-check} {    if {[string is alpha $pjen-nick]} {      return 0    }     if {[string match "*\[{}()^*|-_`\]" $pjen-nick]} {      return 0    }    scan $uhost %\[^@\]@%s ident host     set pjen-host $host    set pjen-newhost *!*[lindex [split $pjen-host @]  1]    set pjen-ident $ident    set pjen-newident [string trimleft $pjen-ident ~]    if {[string match "*$pjen-newident*" $pjen-nick] || [string match "*$pjen-nick*" $pjen-newident]} {      set pjen-method "Nick/Ident matching"      incr $pjen(joined,$chan); channel set $chan pjenjoined $pjen(joined,$chan)      incr $pjen(detected,$chan); channel set $chan pjendetected $pjen(detected,$chan)      if {[botisop $chan]} {        incr $pjen(kicked,$chan); channel set $chan pjenkicked $pjen(kicked,$chan)        set pjen-kickmsg "Pjen infected drone. Detection method: $pjen-method ID: [channel get $chan pjenkicked]"        putquick "KICK $chan $pjen-nick $pjen-kickmsg"        newchanban $chan $pjen-newhost $::botnick "$pjen-kickmsg" 30        newchanban $chan *!$ident@* $::botnick "$pjen-kickmsg" 0        putquick "MODE $chan +bb $pjen-newhost *!$pjen-newident@*"        putlog "\[$::botnick\] \[Pjen detected\] \[Idents: $pjen-ident $pjen-newident\] \[Host: $pjen-host\] \[Detection method: $pjen-method\] \[Added to database\]"        set pjen(ident,db) "$pjen(ident,db) $pjen-ident $pjen-newident"        set pjen(hosts,db) "$pjen(hosts,db) $pjen-host"        } else {        putlog "\[$::botnick\] \[Pjen detected\] \[Idents: $pjen-ident $pjen-newident\] \[Host: $pjen-host\] \[Detection method: $pjen-method\] \[Added to database\]"        set pjen(ident,db) "$pjen(ident,db) $pjen-ident $pjen-newident"        set pjen(hosts,db) "$pjen(hosts,db) $pjen-host"      }      return 0    }    if {[string is integer [string range $pjen-nick end-1 end]] &amp;&amp; [string is alpha [string range $pjen-nick 0 3]]} {      set pjen-method "Last 2 letters of your nick contains numbers \(integers \[0-9\]\)"      incr $pjen(joined,$chan); channel set $chan pjenjoined $pjen(joined,$chan)      incr $pjen(detected,$chan); channel set $chan pjendetected $pjen(detected,$chan)      if {[botisop $chan]} {        incr $pjen(kicked,$chan); channel set $chan pjenkicked $pjen(kicked,$chan)        set pjen-kickmsg "Pjen infected drone. Detection method: $pjen-method ID: [channel get $chan pjenkicked]"        putquick "KICK $chan $pjen-nick $pjen-kickmsg"        newchanban $chan $pjen-newhost $::botnick "$pjen-kickmsg" 30        newchanban $chan *!$ident@* $::botnick "$pjen-kickmsg" 0        putquick "MODE $chan +bb $pjen-newhost *!$pjen-newident@*"        putlog "\[$::botnick\] \[Pjen detected\] \[Idents: $pjen-ident $pjen-newident\] \[Host: $pjen-host\] \[Detection method: $pjen-method\] \[Added to database\]"        set pjen(ident,db) "$pjen(ident,db) $pjen-ident $pjen-newident"        set pjen(hosts,db) "$pjen(hosts,db) $pjen-host"        } else {        putlog "\[$::botnick\] \[Pjen detected\] \[Idents: $pjen-ident $pjen-newident\] \[Host: $pjen-host\] \[Detection method: $pjen-method\] \[Added to database\]"        set pjen(ident,db) "$pjen(ident,db) $pjen-ident $pjen-newident"        set pjen(hosts,db) "$pjen(hosts,db) $pjen-host"      }      return 0    }    if {[string is integer [string range $pjen-newident end-1 end]] || [string match "~" [string range $pjen-ident 0]]} {      set pjen-method "Unresolved ident or ident contains numbers \(integers \[0-9\]\} in the ident"      incr $pjen(joined,$chan); channel set $chan pjenjoined $pjen(joined,$chan)      incr $pjen(detected,$chan); channel set $chan pjendetected $pjen(detected,$chan)      if {[botisop $chan]} {        incr $pjen(kicked,$chan); channel set $chan pjenkicked $pjen(kicked,$chan)        set pjen-kickmsg "Pjen infected drone. Detection method: $pjen-method ID: [channel get $chan pjenkicked]"        putquick "KICK $chan $pjen-nick $pjen-kickmsg"        newchanban $chan $pjen-newhost $::botnick "$pjen-kickmsg" 30        newchanban $chan *!$ident@* $::botnick "$pjen-kickmsg" 0        putquick "MODE $chan +bb $pjen-newhost *!$pjen-newident@*"        putlog "\[$::botnick\] \[Pjen detected\] \[Idents: $pjen-ident $pjen-newident\] \[Host: $pjen-host\] \[Detection method: $pjen-method\] \[Added to database\]"        set pjen(ident,db) "$pjen(ident,db) $pjen-ident $pjen-newident"        set pjen(hosts,db) "$pjen(hosts,db) $pjen-host"        } else {        putlog "\[$::botnick\] \[Pjen detected\] \[Idents: $pjen-ident $pjen-newident\] \[Host: $pjen-host\] \[Detection method: $pjen-method\] \[Added to database\]"        set pjen(ident,db) "$pjen(ident,db) $pjen-ident $pjen-newident"        set pjen(hosts,db) "$pjen(hosts,db) $pjen-host"      }      return 0    }    variable $pjen-check "0"  }}proc pjen:db:info {nick host hand arg} {  set id [lindex [split $text] 0]  set database(pjen) [open pjen.db r]  set data [gets $database(pjen)]  close $database(pjen)  set data [split $data "\n"]  if {![string match "$id*" $data]} {    putserv "PRIVMSG $nick :Unique ID Number: $id does not exist in the database. Please contact a admin for futher help."    } elseif {[string match "$id*" $data]} {    set pjen(data) $data    set pjen(nick) [lindex [split $pjen(data)] 2]    set pjen(password) [lindex [split $pjen(data)] 1]    set pjen(ident) [lindex [split $pjen(data)] 3]    set pjen(host) [lindex [split $pjen(data)] 4]    set pjen(reason) [ range [lindex [split $pjen(data)] 4 end]]    putserv "PRIVMSG $nick :Info for ID: $id"    if {[matchattr $hand nm|]} {      putserv "PRIVMSG $nick :Password: $pjen(password)"      } else {      putserv "PRIVMSG $nick :Password: Admin's only!!"    }    putserv "PRIVMSG $nick :Nickname: $pjen(nick)    putserv "PRIVMSG $nick :Ident: $pjen(ident)"    putserv "PRIVMSG $nick :Host: $pjen(host)"    putserv "PRIVMSG $nick :Reason: $pjen(reason)  }}putlog "Antipjen script by Tosser^^ loaded. Beta script!!"</code></pre></div>I dont know why this error is occured and how to fix it. Also, i have never written a antipjen script before so this is a start. So expect to find errors if you find loads and please report them to me with fixs if possible. Atleast im trying <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_biggrin.gif" width="15" height="15" alt=":D" title="Very Happy">.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6300">r0t3n</a> — Thu Aug 04, 2005 6:24 pm</p><hr />
]]></content>
	</entry>
	</feed>
