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 /
ows /
[ HOME SHELL ]
Name
Size
Permission
Action
ConfValidation.php
1.48
KB
-rw-r--r--
DAttr.php
410
B
-rw-r--r--
DPageDef.php
19.2
KB
-rw-r--r--
DTblDef.php
28.01
KB
-rw-r--r--
Product.php
1.94
KB
-rw-r--r--
RealTimeStats.php
11.2
KB
-rw-r--r--
Service.php
48
B
-rw-r--r--
UI.php
172
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Product.php
<?php class Product { const PROD_NAME = 'OpenLiteSpeed'; private $version; private $new_version; private function __construct() { $matches = []; $str = $_SERVER['LSWS_EDITION']; if (preg_match('/(\d.*)$/i', $str, $matches)) { $this->version = trim($matches[1]); } $releasefile = SERVER_ROOT . 'autoupdate/release'; $releasefilecb = $releasefile . 'cb'; $newver = ''; $rel0 = $rel1 = ''; if (file_exists($releasefilecb)) { $rel = trim(file_get_contents($releasefilecb)); if (($pos = strpos($rel, ' ')) !== false) { $rel0 = substr($rel, 0, $pos); } else { $rel0 = $rel; } if ($this->version != $rel0) { $newver = $rel . ' (' . DMsg::UIStr('note_curbranch') . ') '; // will carry over extra string if it's in release } } if (file_exists($releasefile)) { $rel = trim(file_get_contents($releasefile)); if (($pos = strpos($rel, ' ')) !== false) { $rel1 = substr($rel, 0, $pos); } else { $rel1 = $rel; } if ($this->version != $rel1 && $rel0 != $rel1) { $newver .= $rel; // will carry over extra string if it's in release } } $this->new_version = $newver; } public static function GetInstance() { if (!isset($GLOBALS['_PRODUCT_'])) $GLOBALS['_PRODUCT_'] = new Product(); return $GLOBALS['_PRODUCT_']; } public function getVersion() { return $this->version; } public function refreshVersion() { $versionfile = SERVER_ROOT . 'VERSION'; $this->version = trim(file_get_contents($versionfile)); } public function getNewVersion() { return $this->new_version; } }
Close