BotnetStats.info.dawg0100644000076400010010000000373307505267441015441 0ustar AdministratorNoneInformation: This script generates an HTML web page displaying the current users on the partyline, a list of connected bots, and a map of the botnet. Changes log for BotnetStats.tcl: Version 1.8 * Released to the public from the |DAWG| Tcl web site. * Linked bots table is now correctly numbered. * Added total bots and average hops to the bottom of the botnet map. Version 1.7 * Released to the public from the |DAWG| Tcl web site. * Propper templates are now included. * The default template code now works correctly. * The page is now updated when a user logs in or out of the partyline or goes away/unaway. * Code cleanups. Version 1.6 * Released to the public from the |DAWG| Tcl web site. * Added proper HTML indentation. * Down-bot tracking now works independently of sharing. * Version numbers are now properly displayed. * Added a .bdel command. Version 1.5.1 * Released to the public from the |DAWG| Tcl web site. * Fixed a few possible Tcl errors. * Added a readme file to explain themes. Version 1.5 * Released to the public from the |DAWG| Tcl web site. * Added the option to hide partyline users' hosts. * Users' status prefixes are now shown on the partyline table. * Users' idle time and away messages are now shown on the partyline table. * Bots' servers are now shown on the linked bot table. * Added template support. * Minor bug fixes. Version 1.4 * Released to the public from the |DAWG| Tcl web site. * Added each bot's version to the linked bot list. * Added a HTML tag. * Added "Generated By: " to the end of the page. * Cleaned up code. Version 1.3 * Released to the public from the |DAWG| Tcl web site. * Fixed a minor typo on the web page. Version 1.2 * Released to the public from the |DAWG| Tcl web site. * Script should now be compatible with older Tcl versions. Version 1.1 * Released to the public from the |DAWG| Tcl web site. * Fixed the map. BotnetStats1.8.tcl0100644000076400010010000003667607505270660014607 0ustar AdministratorNone################################## ### BotnetStats.tcl ### ### Version 1.8 ### ### By Wcc ### ### wcc@techmonkeys.org ### ### http://www.dawgtcl.com:81/ ### ### EFnet #|DAWG|Tcl ### ################################## ############################################################################ ### Copyright 2000 - 2002 |DAWG| Scripting Group. All rights reserved. ### ############################################################################ ########################################################################## ## This script generates an HTML web page displaying the current users ## ## on the partyline, a list of connected bots, and a map of the botnet. ## ########################################################################## ############## ## COMMANDS ## ############################################# ## DCC ## .bhtml (Can be changed) ## ######### Manually updates the stats page. ## ############################################# ########################################################## ## Just load the script, edit the settings, and rehash. ## ########################################################## ################################################################ # Set the command used to manually update the stats page here. # ################################################################ set botnetstats_setting(command) "bhtml" ###################################################################### # Set the command used to remove a bot from the down bots list here. # ###################################################################### set botnetstats_setting(dcommand) "bdel" ########################################################################### # Set the flag required to manually update the stats page and remove down # # bots here. # ########################################################################### set botnetstats_setting(flag) "+t" ################################################ # Set the filename of the stats web page here. # ################################################ set botnetstats_setting(page) "../public_html/botnet.html" ########################################################################### # Set the path to the DAWG template file you would like to use. You can # # obtain templates by visiting http://dawg.oc255.net:81/ and clicking the # # templates link. # ########################################################################### set botnetstats_setting(tpl) "./scripts/BotnetStats_DAWG.tpl" ################################################# # Show users' hostmasks in the partyline table? # ################################################# set botnetstats_setting(showparty) 0 ######################################### # How often should the data be updated? # ######################################### set botnetstats_setting(timer) "60" ############################################### # Show which server each bot is connected to? # ############################################### set botnetstats_setting(showserver) 0 ############################################################ # Set the directory in which to store database files here. # ############################################################ set botnetstats_setting(db) "./scripts/" ################################### # Enable use of bold in DCC chat? # ################################### set botnetstats_setting(bold) 1 ############################################### # Prefix "BOTNETSTATS:" in DCC chat messages? # ############################################### set botnetstats_setting(BOTNETSTATS:) 1 #################### # Code begins here # #################### if {![string match 1.6.* $version]} { putlog "\002BOTNETSTATS:\002 \002WARNING:\002 This script is intended to run on eggdrop 1.6.x or later." } if {[info tclversion] < 8.2} { putlog "\002BOTNETSTATS:\002 \002WARNING:\002 This script is intended to run on Tcl Version 8.2 or later." } bind dcc $botnetstats_setting(flag) $botnetstats_setting(command) botnetstats_man_update bind dcc $botnetstats_setting(flag) $botnetstats_setting(dcommand) botnetstats_downdel bind away - * botnetstats_do_html foreach b {311 312} { bind raw - $b botnetstats_raw } foreach b {link disc} { bind $b - * botnetstats_link } foreach b {chjn chpt} { bind $b - 0 botnetstats_do_html } set botnetstats_setting(version) "1.8" set botnetstats_notpl 0 if {![info exists botnetstats_setting(tpl)] || [catch {source $botnetstats_setting(tpl)}]} { putlog "\002BOTNETSTATS:\002 Could not open template; using default." set botnetstats_notpl 1 } foreach {s v} [list Page_CC #000000 Page_HC #000000 Page_LinkC #0000FF Page_TTextC #000000 Page_TextC #000000 Page_BGC #FFFFFF Page_TCC_2 #E0E0E0 Page_TCC_1 \ #C0C0C0 Page_THC_2 #8080E0 Page_THC_1 #8080C0 Page_TCS 4 Page_THS 5 Page_TitleS 6 Page_Title {Botnet Status} Page_TitleTag {Botnet Status} Page_Img {} \ Page_Linked_Bots 1 Page_Down_Bots 1 Page_Partyline 1 Page_Botnet_Map 1] { if {$botnetstats_notpl || ![info exists botnetstats_setting($s)]} { set botnetstats_setting($s) $v } } if {![string match "* botnetstats_getinfo *" [utimers]]} { utimer $botnetstats_setting(timer) botnetstats_getinfo } proc botnetstats_readarray {array file} { upvar $array ours if {[catch {open $file r} fd]} { return } set arraydata [split [read $fd] \n] close $fd if {[array exists ours]} { unset ours } foreach line $arraydata { if {[string range $line 0 2] != "%!%"} { continue } if {[scan [string range $line 3 end] "%\[^!!!\]!!!%s" name data] > 0} { if {![info exists data]} { set data "" } set ours($name) $data } } } proc botnetstats_savearray {array file} { upvar $array ours if {![array exists ours] || [catch {open $file w} fd]} { return } foreach entry [array names ours] { puts $fd "%!%$entry!!!$ours($entry)" } close $fd } if {![array exists botnetstats_master] && [file exists [set botnetstats_setting(db_master) ${botnetstats_setting(db)}botnetstatsmaster.db]]} { botnetstats_readarray botnetstats_master $botnetstats_setting(db_master) } proc botnetstats_dopre {} { if {!$::botnetstats_setting(BOTNETSTATS:)} { return "" } if {!$::botnetstats_setting(bold)} { return "BOTNETSTATS: " } return "\002BOTNETSTATS:\002 " } proc botnetstats_format_td {type line center text} { switch -- $type { "header" { return "[expr ${center}!=0?"
":""]$text[expr ${center}!=0?"
":""]
" } "cell" { return "[expr ${center}!=0?"
":""]$text[expr ${center}!=0?"
":""]
" } } } proc botnetstats_ncm {pattern string} { return [string match [string tolower $pattern] [string tolower $string]] } proc botnetstats_man_update {hand idx text} { botnetstats_do_html putdcc $idx "[botnetstats_dopre]Web page updated." } proc botnetstats_downdel {hand idx text} { global botnetstats_master if {[set text [join [lrange [split $text] 0 0]]] == ""} { putdcc $idx "[botnetstats_dopre]Usage: .$::botnetstats_setting(dcommand) " ; return } if {![info exists botnetstats_master($text)]} { putdcc $idx "[botnetstats_dopre]$text is not a known bot." ; return } unset botnetstats_master($text) botnetstats_savearray botnetstats_master $::botnetstats_setting(db_master) botnetstats_do_html putdcc $idx "[botnetstats_dopre]$text has been removed from the down-bot list." } proc botnetstats_raw {from keyword text} { switch -- $keyword { "311" { if {[set nick2hand [nick2hand [lindex [split $text] 1]]] != "*"} { set ::botnetstats_hosts($nick2hand) [lindex [split $text] 1]![lindex [split $text] 2]@[lindex [split $text] 3] } } "312" { if {[set nick2hand [nick2hand [lindex [split $text] 1]]] != "*"} { set ::botnetstats_servers($nick2hand) [lindex [split $text] 2] } } } } proc botnetstats_link {bot {uplink {}}} { global botnetstats_master if {$uplink != ""} { set botnetstats_master($bot) $uplink } botnetstats_savearray botnetstats_master $::botnetstats_setting(db_master) botnetstats_do_html } proc botnetstats_getinfo {} { if {$::botnetstats_setting(showserver) && $::server != ""} { foreach bot [bots] { if {[set hand2nick [hand2nick $bot]] != ""} { putserv "WHOIS $hand2nick" } } putserv "WHOIS $::botnick" } if {![string match "* botnetstats_getinfo *" [utimers]]} { utimer $::botnetstats_setting(timer) botnetstats_getinfo } } proc botnetstats_do_html {args} { set locbot ${::botnet-nick} if {![info exists ::botnetstats_servers($locbot)] || !$::botnetstats_setting(showserver)} { set server "-" } { set server $::botnetstats_servers($locbot) } foreach bot [botlist] { set ::botnetstats_master([lindex $bot 0]) [lindex $bot 1] } set ::botnetstats_master($locbot) $locbot set stats [open $::botnetstats_setting(page) w] puts $stats "\n \n $::botnetstats_setting(Page_TitleTag)\n \n \n \n\n " if {$::botnetstats_setting(Page_Img) != ""} { puts $stats "
" } puts $stats "
$::botnetstats_setting(Page_Title)
\n
" if {$::botnetstats_setting(Page_Linked_Bots)} { puts $stats "
\n
Linked Bots
\n
\n \n " foreach {a b} [list 1 Number 2 Bot 1 Uplink 2 Server 1 Version] { puts $stats " [botnetstats_format_td header $a 1 $b]" } puts $stats " \n " foreach {a b} [list 1 1 2 $locbot 1 $locbot 2 $server 1 [join [scan $::numversion %1d%2d%2d] .]] { puts $stats " [botnetstats_format_td cell $a 1 $b]" } puts $stats " " set bnum 1 set matches 0 foreach b [botlist] { set bot [lindex $b 0] if {$::botnetstats_setting(showserver) && [validuser $bot] && [info exists ::botnetstats_hosts($bot)]} { foreach h [getuser $bot HOSTS] { regsub -all -- "~" $h "\*" h if {[string match $h $::botnetstats_hosts($bot)]} { set matches 1 ; break } } } if {!$matches || ![info exists ::botnetstats_servers($bot)]} { set ::botnetstats_servers($bot) "-" } incr bnum puts $stats " " foreach {a b} [list 1 $bnum 2 $bot 1 [lindex $b 1] 2 $::botnetstats_servers($bot) 1 [join [scan [lindex $b 2] %1d%2d%2d] .]] { puts $stats " [botnetstats_format_td cell $a 1 $b]" } puts $stats " " } puts $stats "
\n
\n
" } if {$::botnetstats_setting(Page_Down_Bots)} { puts $stats "
\n
Down Bots
\n
\n \n " foreach {a b} [list 1 Number 2 Bot 1 Uplink] { puts $stats " [botnetstats_format_td header $a 1 $b]" } puts $stats " " if {[expr [array size ::botnetstats_master] - [llength [bots]] - 1] == 0} { puts $stats " " foreach a [list 1 2 1] { puts $stats " [botnetstats_format_td cell $a 1 -]" } puts $stats " " } { set i 0 foreach bot [array names ::botnetstats_master] { if {[islinked $bot] || [string compare $bot $locbot] == 0} { continue } incr i puts $stats " " foreach {a b} [list 1 $i 2 $bot 1 [lindex $::botnetstats_master($bot) 0]] { puts $stats " [botnetstats_format_td cell $a 1 $b]" } puts $stats " " } } puts $stats "
\n
\n
" } if {$::botnetstats_setting(Page_Partyline)} { puts $stats "
Partyline
\n
\n \n " foreach {a b} [list 1 Number 2 User 1 Bot 2 Host 1 Idle 2 Away] { puts $stats " [botnetstats_format_td header $a 1 $b]" } puts $stats " " set bnum 0 foreach u [whom 0] { incr bnum foreach {a b} [list hand [lindex $u 0] bot [lindex $u 1] idle [duration [expr [lindex $u 4] * 60]] flag [lindex $u 3] host [expr ($::botnetstats_setting(showparty))?"[lindex $u 2]":"-"] away [expr {([lindex $u 5] != "")?"[join [lrange $u 5 end]]":"-"}]] { set $a $b } puts $stats " " foreach {a b} [list 1 $bnum 2 ${flag}$hand 1 $bot 2 $host 1 $idle 2 $away] { puts $stats " [botnetstats_format_td cell $a 1 $b]" } puts $stats " " } if {$bnum == 0} { puts $stats " " foreach a [list 1 2 1 2 1 2] { puts $stats " [botnetstats_format_td cell $a 1 -]" } puts $stats " " } puts $stats "
\n
\n
" } if {$::botnetstats_setting(Page_Botnet_Map)} { puts $stats "
Botnet Map
\n
\n \n \n [botnetstats_format_td header 1 1 Map]\n \n \n \n \n
\n
\n\n   $locbot   "
		botnetstats_get_uplinks $locbot
		botnetstats_mapgen "     " $stats $locbot
		puts $stats "
\n
Total Bots: [expr [llength [bots]] + 1]
\n
\n
\n
\n
" } puts $stats "
Last Updated: [clock format [clock seconds] -format "%D %I:%M %p"]
\n
Generated By: $locbot
\n \n\n" close $stats } proc botnetstats_get_uplinks {locbot} { global botnetstats_uplink catch { unset botnetstats_uplink } foreach b [botlist] { set botnetstats_uplink([lindex $b 0]) [lindex $b 1] } set botnetstats_uplink($locbot) $locbot } proc botnetstats_mapgen {indent fd bot} { foreach bot2 [array names ::botnetstats_uplink] { if {![string match $bot $bot2] && [string match $::botnetstats_uplink($bot2) $bot]} { lappend downlinks $bot2 } } if {![info exists downlinks]} { return } foreach bot2 $downlinks { if {[string match $bot2 [lindex $downlinks end]]} { puts $fd "$indent `-$bot2 " botnetstats_mapgen "$indent " $fd $bot2 } { puts $fd "$indent |-$bot2 " botnetstats_mapgen "$indent | " $fd $bot2 } } } putlog "\002BOTNETSTATS:\002 BotnetStats.tcl Version $botnetstats_setting(version) by Wcc is loaded." BotnetStats_DAWG.tpl0100644000076400010010000000675607503505043015165 0ustar AdministratorNone################################### ## BotnetStats.tcl Template File ## ############################################## ## For a list of HTML color codes, see ## ## www.webmonkey.com/reference/color_codes/ ## ############################################## ## Table Colors: Orange/Gold/Grey ## ## Background: Black ## ## Font: Orange ## #################################### ###################################################################### # Set the path to the graphic to place at the top of the page here. # # Set to "" to disable. Remember this is not the path to the actual # # file, but the relative path to the web page. E.x: "dawglogo.gif" # # would use the file called "dawglogo.gif from the directory the web # # page is in. # ###################################################################### set botnetstats_setting(Page_Img) "dawglogo.gif" ############################################################ # Set the text that appears in the browser title bar here. # ############################################################ set botnetstats_setting(Page_TitleTag) "Botnet Status" ############################ # Set the page title here. # ############################ set botnetstats_setting(Page_Title) "Botnet Status" ###################################### # Set the page title font size here. # ###################################### set botnetstats_setting(Page_TitleS) "6" ######################################## # Set the table header font size here. # ######################################## set botnetstats_setting(Page_THS) "5" ###################################### # Set the table cell font size here. # ###################################### set botnetstats_setting(Page_TCS) "4" ##################################### # Set the table header colors here. # ##################################### set botnetstats_setting(Page_THC_1) "#FF9900" set botnetstats_setting(Page_THC_2) "#FFCC00" ################################### # Set the table cell colors here. # ################################### set botnetstats_setting(Page_TCC_1) "#c0c0c0" set botnetstats_setting(Page_TCC_2) "#e0e0e0" ################################## # Set the background color here. # ################################## set botnetstats_setting(Page_BGC) "#000000" ############################ # Set the text color here. # ############################ set botnetstats_setting(Page_TextC) "#FF9900" ################################## # Set the title text color here. # ################################## set botnetstats_setting(Page_TTextC) "#FF9900" ################################# # Set the link text color here. # ################################# set botnetstats_setting(Page_LinkC) "#FF9900" ######################################### # Set the table header font color here. # ######################################### set botnetstats_setting(Page_HC) "#000000" ####################################### # Set the table cell font color here. # ####################################### set botnetstats_setting(Page_CC) "#000000" ######################################################## # Set the items to show on the botnet stats page here. # ######################################################## set botnetstats_setting(Page_Linked_Bots) 1 set botnetstats_setting(Page_Down_Bots) 1 set botnetstats_setting(Page_Partyline) 1 set botnetstats_setting(Page_Botnet_Map) 1 ###################### ## End of template. ## ######################BotnetStats_OGGBO.tpl0100644000076400010010000000674207503505102015267 0ustar AdministratorNone################################### ## BotnetStats.tcl Template File ## ############################################## ## For a list of HTML color codes, see ## ## www.webmonkey.com/reference/color_codes/ ## ############################################## ## Table Colors: Orange/Gold/Grey ## ## Background: Black ## ## Font: Orange ## #################################### ###################################################################### # Set the path to the graphic to place at the top of the page here. # # Set to "" to disable. Remember this is not the path to the actual # # file, but the relative path to the web page. E.x: "dawglogo.gif" # # would use the file called "dawglogo.gif from the directory the web # # page is in. # ###################################################################### set botnetstats_setting(Page_Img) "" ############################################################ # Set the text that appears in the browser title bar here. # ############################################################ set botnetstats_setting(Page_TitleTag) "Botnet Status" ############################ # Set the page title here. # ############################ set botnetstats_setting(Page_Title) "Botnet Status" ###################################### # Set the page title font size here. # ###################################### set botnetstats_setting(Page_TitleS) "6" ######################################## # Set the table header font size here. # ######################################## set botnetstats_setting(Page_THS) "5" ###################################### # Set the table cell font size here. # ###################################### set botnetstats_setting(Page_TCS) "4" ##################################### # Set the table header colors here. # ##################################### set botnetstats_setting(Page_THC_1) "#FF9900" set botnetstats_setting(Page_THC_2) "#FFCC00" ################################### # Set the table cell colors here. # ################################### set botnetstats_setting(Page_TCC_1) "#c0c0c0" set botnetstats_setting(Page_TCC_2) "#e0e0e0" ################################## # Set the background color here. # ################################## set botnetstats_setting(Page_BGC) "#000000" ############################ # Set the text color here. # ############################ set botnetstats_setting(Page_TextC) "#FF9900" ################################## # Set the title text color here. # ################################## set botnetstats_setting(Page_TTextC) "#FF9900" ################################# # Set the link text color here. # ################################# set botnetstats_setting(Page_LinkC) "#FF9900" ######################################### # Set the table header font color here. # ######################################### set botnetstats_setting(Page_HC) "#000000" ####################################### # Set the table cell font color here. # ####################################### set botnetstats_setting(Page_CC) "#000000" ######################################################## # Set the items to show on the botnet stats page here. # ######################################################## set botnetstats_setting(Page_Linked_Bots) 1 set botnetstats_setting(Page_Down_Bots) 1 set botnetstats_setting(Page_Partyline) 1 set botnetstats_setting(Page_Botnet_Map) 1 ###################### ## End of template. ## ######################BotnetStats_PBGBW.tpl0100644000076400010010000000674207503505073015302 0ustar AdministratorNone################################### ## BotnetStats.tcl Template File ## ############################################## ## For a list of HTML color codes, see ## ## www.webmonkey.com/reference/color_codes/ ## ############################################## ## Table Colors: Purple/Blue/Grey ## ## Background: Black ## ## Font: White ## #################################### ###################################################################### # Set the path to the graphic to place at the top of the page here. # # Set to "" to disable. Remember this is not the path to the actual # # file, but the relative path to the web page. E.x: "dawglogo.gif" # # would use the file called "dawglogo.gif from the directory the web # # page is in. # ###################################################################### set botnetstats_setting(Page_Img) "" ############################################################ # Set the text that appears in the browser title bar here. # ############################################################ set botnetstats_setting(Page_TitleTag) "Botnet Status" ############################ # Set the page title here. # ############################ set botnetstats_setting(Page_Title) "Botnet Status" ###################################### # Set the page title font size here. # ###################################### set botnetstats_setting(Page_TitleS) "6" ######################################## # Set the table header font size here. # ######################################## set botnetstats_setting(Page_THS) "5" ###################################### # Set the table cell font size here. # ###################################### set botnetstats_setting(Page_TCS) "4" ##################################### # Set the table header colors here. # ##################################### set botnetstats_setting(Page_THC_1) "#8080c0" set botnetstats_setting(Page_THC_2) "#8080e0" ################################### # Set the table cell colors here. # ################################### set botnetstats_setting(Page_TCC_1) "#c0c0c0" set botnetstats_setting(Page_TCC_2) "#e0e0e0" ################################## # Set the background color here. # ################################## set botnetstats_setting(Page_BGC) "#000000" ############################ # Set the text color here. # ############################ set botnetstats_setting(Page_TextC) "#FFFFFF" ################################## # Set the title text color here. # ################################## set botnetstats_setting(Page_TTextC) "#FFFFFF" ################################# # Set the link text color here. # ################################# set botnetstats_setting(Page_LinkC) "#0000FF" ######################################### # Set the table header font color here. # ######################################### set botnetstats_setting(Page_HC) "#000000" ####################################### # Set the table cell font color here. # ####################################### set botnetstats_setting(Page_CC) "#000000" ######################################################## # Set the items to show on the botnet stats page here. # ######################################################## set botnetstats_setting(Page_Linked_Bots) 1 set botnetstats_setting(Page_Down_Bots) 1 set botnetstats_setting(Page_Partyline) 1 set botnetstats_setting(Page_Botnet_Map) 1 ###################### ## End of template. ## ######################BotnetStats_PBGWB.tpl0100644000076400010010000000674207503505064015302 0ustar AdministratorNone################################### ## BotnetStats.tcl Template File ## ############################################## ## For a list of HTML color codes, see ## ## www.webmonkey.com/reference/color_codes/ ## ############################################## ## Table Colors: Purple/Blue/Grey ## ## Background: White ## ## Font: Black ## #################################### ###################################################################### # Set the path to the graphic to place at the top of the page here. # # Set to "" to disable. Remember this is not the path to the actual # # file, but the relative path to the web page. E.x: "dawglogo.gif" # # would use the file called "dawglogo.gif from the directory the web # # page is in. # ###################################################################### set botnetstats_setting(Page_Img) "" ############################################################ # Set the text that appears in the browser title bar here. # ############################################################ set botnetstats_setting(Page_TitleTag) "Botnet Status" ############################ # Set the page title here. # ############################ set botnetstats_setting(Page_Title) "Botnet Status" ###################################### # Set the page title font size here. # ###################################### set botnetstats_setting(Page_TitleS) "6" ######################################## # Set the table header font size here. # ######################################## set botnetstats_setting(Page_THS) "5" ###################################### # Set the table cell font size here. # ###################################### set botnetstats_setting(Page_TCS) "4" ##################################### # Set the table header colors here. # ##################################### set botnetstats_setting(Page_THC_1) "#8080C0" set botnetstats_setting(Page_THC_2) "#8080E0" ################################### # Set the table cell colors here. # ################################### set botnetstats_setting(Page_TCC_1) "#C0C0C0" set botnetstats_setting(Page_TCC_2) "#E0E0E0" ################################## # Set the background color here. # ################################## set botnetstats_setting(Page_BGC) "#FFFFFF" ############################ # Set the text color here. # ############################ set botnetstats_setting(Page_TextC) "#000000" ################################## # Set the title text color here. # ################################## set botnetstats_setting(Page_TTextC) "#000000" ################################# # Set the link text color here. # ################################# set botnetstats_setting(Page_LinkC) "#0000FF" ######################################### # Set the table header font color here. # ######################################### set botnetstats_setting(Page_HC) "#000000" ####################################### # Set the table cell font color here. # ####################################### set botnetstats_setting(Page_CC) "#000000" ######################################################## # Set the items to show on the botnet stats page here. # ######################################################## set botnetstats_setting(Page_Linked_Bots) 1 set botnetstats_setting(Page_Down_Bots) 1 set botnetstats_setting(Page_Partyline) 1 set botnetstats_setting(Page_Botnet_Map) 1 ###################### ## End of template. ## ######################BotnetStats_Templates.doc0100644000076400010010000000143307503505000016323 0ustar AdministratorNoneThis script uses DAWG HTML template files when generating the botnet stats web page. This keeps you from having to redo all of your color settings when upgrading to a new version of the script. Three sample templates are included with the script. Other templates can be obtained by visiting http://dawg.oc255.net:81/ and clicking on the 'Templates' link. Below are descriptions of each included template. BotnetStats_PBGWB.tpl Table Colors: Purple/Blue/Grey Background: White Font: Black BotnetStats_PBGBW.tpl Table Colors: Purple/Blue/Grey Background: Black Font: White BotnetStats_OGGBO.tpl Table Colors: Orange/Gold/Grey Background: Black Font: Orange BotnetStats_DAWG.tpl This is the template I use on http://dawg.oc255.net:81/ (DAWG graphic included).dawglogo.gif0100644000076400010010000001200507501543363013647 0ustar AdministratorNoneJFIFHHCreated with The GIMPC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222VY"G !1A2Qaq"#345BRbrs$Ccd%tDS0!1A"#2BQq3$a ? x/+pHrRC9㚬 %U$ED9J)O {~ bk!\હֶ\`;,,9oTX[T̋콱S6"MD M`Η.^&ѹ]k 83X)Ws)݇8 Y686YV,;1\w-_)E6иQIHY Bܥ[e+w+aw\kU`l(QnjL)ԱI:V^&Q9'403/l"N'Iċ)^)8{7+# y)&FB?CGVOb yb04sU K8&-MH]8XSc /@ pJ+&foeVXK8,-̇VB/&Ml%Z,zF-c 頨t0^Nvi]+ʛii#xKM,&+Fdi+")+b)NxR+5ЬsxhRfp)9%%[3SL94Lϒ1PQ1WSN^d-9't8suPS4=Fj`3zxs>ZZ:6J4coԗa򼈩a͎XX L,Ί.@13V\I9 MRhi%|íQ nW ;.7pff(=-l1MZQ98jC 䮍[X?GeN]{]T٪fCFƋv뫢Z$~CgUQ= *ky'Dޠ$u?{`t4Udg+Zހ,x4?,YUNyk_ qcg6n:-NҞbF \4jH#w8\'`TOQx9el~]SYMM6GcDɝE`ՆS'T+b;Z $ xOktAW2uՒ4R8!FN>˿5>4XNQ [6 X,8&4)xK %łJjw3WJoSOV0>>h:v&Ut!;6Ne8*VW` tVz M:^#G(mI`姚aE 7j^"EM/soPĩn:&#4Xz¸2 –^qQ+R=GsڳZ<گj>]O+ïxȡ6),3bMZY h_u6GAKi4D?!T: }%Ρ@y?Vp,6[ڤvƕLt?ʴ~h;84o>%7< Q3d|u ,bW㼋\op>B!ke)pPИ@t X,%K\ˡ`h1<7747Ylyb>xxÉ^4;p>7j\0TÆe\B$Xh_ =֤y|s;YxhTG$uv=Nċ yn!vtNGodeO+i*m25m I O2gcz3Um㬨I@&  ٬oHzezTRBce`CyB8Wei}y?ԟƟ A:QR6y#ќđV0HYԑ *М8Uyc qGvww<C"fvds.[tnӝQ&wm]1B@r͔"SQm*Yqw^ܪLtU2)c3XǻTbOpHJ܏7kV{%[/ac5 Tc&$?$SCThsZhF?) m\ t9>êZX pj,A)m;81nv .YB*[;B{Ah=(i]ã{conϤ3wL5߽8{`8yDTkKGS҂fRdb12bk@-KY7rZSyE%HjpĘ`Zi42^m :ҟ:E8J