Linux server220.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
LiteSpeed
: 198.54.116.164 | : 216.73.216.27
Cant Read [ /etc/named.conf ]
7.4.33
adnangch
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 /
add-ons /
webcachemgr /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Context
[ DIR ]
drwxrwxr-x
Panel
[ DIR ]
drwxrwxr-x
ThirdParty
[ DIR ]
drwxrwxr-x
View
[ DIR ]
drwxrwxr-x
WpWrapper
[ DIR ]
drwxrwxr-x
AjaxResponse.php
1.79
KB
-rw-rw-r--
CliController.php
40.77
KB
-rw-rw-r--
DashNotifier.php
9.89
KB
-rw-rw-r--
LSCMException.php
651
B
-rw-rw-r--
LogEntry.php
1.72
KB
-rw-rw-r--
Logger.php
17.95
KB
-rw-rw-r--
PanelController.php
50.98
KB
-rw-rw-r--
PluginVersion.php
21.91
KB
-rw-rw-r--
RedefineGlobalFuncs.php
865
B
-rw-rw-r--
UserCommand.php
28.72
KB
-rw-rw-r--
Util.php
18.15
KB
-rw-rw-r--
WPCaller.php
53.73
KB
-rw-rw-r--
WPDashMsgs.php
4.75
KB
-rw-rw-r--
WPInstall.php
16.81
KB
-rw-rw-r--
WPInstallStorage.php
32.22
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : LogEntry.php
<?php /** ********************************************* * LiteSpeed Web Server Cache Manager * * @author LiteSpeed Technologies, Inc. (https://www.litespeedtech.com) * @copyright (c) 2018-2019 * ******************************************* */ namespace Lsc\Wp; class LogEntry { /** * @var int */ protected $lvl; /** * @var string */ protected $msg; /** * * @var null|string */ protected $prefix; /** * * @var int[] */ protected $timestamp; /** * * @param string $msg * @param int $lvl */ public function __construct( $msg, $lvl ) { $this->msg = $msg; $this->lvl = $lvl; $this->timestamp = time(); } /** * * @param string $msg */ public function append( $msg ) { $this->msg .= $msg; } /** * * @return int */ public function getLvl() { return $this->lvl; } /** * * @return string */ public function getMsg() { $msg = ($this->prefix == null) ? '' : "{$this->prefix} "; if ( $this->msg ) { $msg .= $this->msg; } return $msg; } /** * * @param int $logLvl * @return string * @throws LSCMException Thrown indirectly. */ public function getOutput( $logLvl ) { if ( $this->lvl > $logLvl ) { return ''; } $timestamp = date('Y-m-d H:i:s', $this->timestamp); $addTagInfo = Logger::getAdditionalTagInfo(); $lvl = '[' . Logger::getLvlDescr($this->lvl) . ']'; $msg = $this->getMsg(); return "{$timestamp} {$addTagInfo} {$lvl} {$msg}\n"; } }
Close