<?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/9766" />

	<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-06-16T00:05:06-04:00</updated>

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

		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-06-16T00:05:06-04:00</updated>

		<published>2005-06-16T00:05:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50857#p50857</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50857#p50857"/>
		<title type="html"><![CDATA[web-overview of the botnet]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50857#p50857"><![CDATA[
well, unfortunately I don't do complete feature scripts anymore, I lost interest in that; but maybe someone will pick on this (which should generate a bare-bones webpage with the structure you need):<br><div class="codebox"><p>Code: </p><pre><code>proc members {f alist} {puts $f &lt;p&gt;set idx 0set more 1while $more {set more 0puts $f &lt;tr&gt;foreach {chan elems} $alist {if {$idx &lt; [llength $elems]} {puts $f &lt;td&gt;[lindex $elems $idx]&lt;/td&gt;set more 1 } {puts $f &lt;td&gt;&lt;/td&gt;}}puts $f &lt;/tr&gt;incr idx}}proc genpage {f} {puts $f &lt;html&gt;&lt;head&gt;botnet&lt;/head&gt;&lt;body&gt;puts $f &lt;table&gt;puts $f &lt;tr&gt;foreach chan [array names ::bbots] {puts $f &lt;td&gt;$chan&lt;/td&gt; }puts $f &lt;/tr&gt;members $f [array get ::bbots]members $f [array get ::buser]puts $f &lt;/table&gt;puts $f &lt;/body&gt;&lt;/html&gt;}</code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Thu Jun 16, 2005 12:05 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tobydude]]></name></author>
		<updated>2005-06-15T05:51:31-04:00</updated>

		<published>2005-06-15T05:51:31-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50824#p50824</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50824#p50824"/>
		<title type="html"><![CDATA[web-overview of the botnet]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50824#p50824"><![CDATA[
demond<br>Thanks for your reply.<br>Since I don´t know tcl, the code does not tell me much.  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"> <br>The idea was that the script should send data to a webpage<br>so that "we" were able to se on the web, a graphic of each<br>channel and which bots are on each channel.<br>Like a system chart of your botnet , on the web.<br>I dont know, but many other  features could<br>probobly be added to such a script, to.<br><br>e.g.<br>-Info on the bot. When it was startet, host, how long it has been running ,<br> vertion , which  shell the bots are on...e.g<br>-The hubs userlist and mybe the leafbots userlist. (with flags of each user)<br>-Users on each channel . (who is opped, vois e.g)<br>I guess the sky is the limit....<br>I em sure that such i script would be a popular script for botnet owners.<br><br>toby<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6320">tobydude</a> — Wed Jun 15, 2005 5:51 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-06-14T00:10:39-04:00</updated>

		<published>2005-06-14T00:10:39-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50755#p50755</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50755#p50755"/>
		<title type="html"><![CDATA[web-overview of the botnet]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50755#p50755"><![CDATA[
of course, requesting bot's own chans/users also need to be included:<br><div class="codebox"><p>Code: </p><pre><code>bind time - "?0 *" {set flag 1; putallbots req;#}bind bot - req gotreqproc gotreq {from cmd text} {   foreach chan [channels] {      foreach user [chanlist $chan] {         if {[nick2hand $user $chan] != "*"} {            putbot $from "ans $chan $user"         }      }   }}bind bot - ans gotansproc gotans {from cmd text} {   if $::flag {      if [info exists ::bbots] {unset ::bbots}      if [info exists ::buser] {unset ::buser}      foreach chan [channels] {         lappend ::bbots($chan) $::nick         foreach user [chanlist $chan] {            if {[nick2hand $user $chan] != "*"} {               lappend ::buser($chan) $user            }         }      }      set ::flag 0   }   set chan [lindex [split $text] 0]   set user [lindex [split $text] 1]   if {![info exists ::bbots($chan)] ||       [lsearch -exact $::bbots($chan) $from] == -1} {      lappend ::bbots($chan) $from   }   if {![info exists ::buser($chan)] ||       [lsearch -exact $::buser($chan) $user] == -1} {      lappend ::buser($chan) $user   }} </code></pre></div><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Tue Jun 14, 2005 12:10 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-06-13T22:54:14-04:00</updated>

		<published>2005-06-13T22:54:14-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50750#p50750</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50750#p50750"/>
		<title type="html"><![CDATA[web-overview of the botnet]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50750#p50750"><![CDATA[
this script (run on all bots) will update every 10 mins two global arrays, indexed by channel name and containing bot- and user lists:<br><div class="codebox"><p>Code: </p><pre><code>bind time - "?0 *" {set flag 1; putallbots req;#}bind bot - req gotreqproc gotreq {from cmd text} {foreach chan [channels] {foreach user [chanlist $chan] {if {[nick2hand $user $chan] != "*"} {putbot $from "ans $chan $user"}}}}bind bot - ans gotansproc gotans {from cmd text} {if $::flag {if [info exists ::bbots] {unset ::bbots}if [info exists ::buser] {unset ::buser}set ::flag 0}set chan [lindex [split $text] 0]set user [lindex [split $text] 1]if {![info exists ::bbots($chan)] ||    [lsearch -exact $::bbots($chan) $from] == -1} {lappend ::bbots($chan) $from}if {![info exists ::buser($chan)] ||    [lsearch -exact $::buser($chan) $user] == -1} {lappend ::buser($chan) $user}}</code></pre></div>it's trivial to construct the web layout you need using the two arrays<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Mon Jun 13, 2005 10:54 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[domp]]></name></author>
		<updated>2005-06-13T19:24:50-04:00</updated>

		<published>2005-06-13T19:24:50-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50748#p50748</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50748#p50748"/>
		<title type="html"><![CDATA[web-overview of the botnet]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50748#p50748"><![CDATA[
i've seen that before...<br><br><br>Will try to find it for u again<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6098">domp</a> — Mon Jun 13, 2005 7:24 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[awyeah]]></name></author>
		<updated>2005-06-13T03:51:37-04:00</updated>

		<published>2005-06-13T03:51:37-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50706#p50706</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50706#p50706"/>
		<title type="html"><![CDATA[web-overview of the botnet]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50706#p50706"><![CDATA[
<blockquote class="uncited"><div>split personality disorder?  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"></div></blockquote>Maybe 2 people sharing 1 ID.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=4875">awyeah</a> — Mon Jun 13, 2005 3:51 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[demond]]></name></author>
		<updated>2005-06-13T03:34:02-04:00</updated>

		<published>2005-06-13T03:34:02-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50698#p50698</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50698#p50698"/>
		<title type="html"><![CDATA[web-overview of the botnet]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50698#p50698"><![CDATA[
it's possible, I'll give you some hints later<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=5056">demond</a> — Mon Jun 13, 2005 3:34 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tobydude]]></name></author>
		<updated>2005-06-13T03:27:10-04:00</updated>

		<published>2005-06-13T03:27:10-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50696#p50696</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50696#p50696"/>
		<title type="html"><![CDATA[web-overview of the botnet]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50696#p50696"><![CDATA[
Just to get some attention but<br>I guess such a script is not possible... <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"> <br><br>toby<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6320">tobydude</a> — Mon Jun 13, 2005 3:27 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[^DooM^]]></name></author>
		<updated>2005-06-11T13:44:57-04:00</updated>

		<published>2005-06-11T13:44:57-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50577#p50577</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50577#p50577"/>
		<title type="html"><![CDATA[web-overview of the botnet]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50577#p50577"><![CDATA[
split personality disorder?  <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_rolleyes.gif" width="15" height="15" alt=":roll:" title="Rolling Eyes"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=3723">^DooM^</a> — Sat Jun 11, 2005 1:44 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tobydude]]></name></author>
		<updated>2005-06-11T09:18:03-04:00</updated>

		<published>2005-06-11T09:18:03-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50571#p50571</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50571#p50571"/>
		<title type="html"><![CDATA[web-overview of the botnet]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50571#p50571"><![CDATA[
Thank you, somedude.<br>I will wait patiently for your answer.<br>Thank you...<br><br>tobydude<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6320">tobydude</a> — Sat Jun 11, 2005 9:18 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tobydude]]></name></author>
		<updated>2005-06-11T09:15:23-04:00</updated>

		<published>2005-06-11T09:15:23-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50570#p50570</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50570#p50570"/>
		<title type="html"><![CDATA[web-overview of the botnet]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50570#p50570"><![CDATA[
hey toby.<br>This is a very good idea for a script!!!<br>I will pass this on to my scripting friends.<br>But I must tell you:<br>This is not an easy task...<br><br>somedude<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6320">tobydude</a> — Sat Jun 11, 2005 9:15 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[tobydude]]></name></author>
		<updated>2005-06-06T07:13:11-04:00</updated>

		<published>2005-06-06T07:13:11-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=50295#p50295</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=50295#p50295"/>
		<title type="html"><![CDATA[web-overview of the botnet]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=50295#p50295"><![CDATA[
The idea is a web-page which have graphics,describing the whole botnet.<br>I.E, which bots are on the different channels, which users are on <br>the different channels.<br>How nice it would have been to log on the web to check the status<br>of my bonet and mybe se the users online.<br>I have made a simple graphic illustration of what I mean.<br><a href="http://www.tessa.shellcity.no/bilder/webbotnet.jpg" class="postlink">http://www.tessa.shellcity.no/bilder/webbotnet.jpg</a><br><br><br>Some script has some of theese features. Many additional features<br>could be added to such a script (or module).<br><br>I have no knowledge of tcl-scripting<br><br>toby<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=6320">tobydude</a> — Mon Jun 06, 2005 7:13 am</p><hr />
]]></content>
	</entry>
	</feed>
