Linux amd.servercpanel.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
LiteSpeed
Server IP : 161.248.188.165 & Your IP : 216.73.216.219
Domains :
Cant Read [ /etc/named.conf ]
User : oishifashion
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
add-ons /
webcachemgr /
Delete
Unzip
Name
Size
Permission
Date
Action
src
[ DIR ]
drwxrwxr-x
2025-09-11 15:22
MIN_VER
7
B
-rw-r--r--
2025-11-19 13:36
VERSION
6
B
-rw-rw-r--
2025-09-11 15:22
autoloader.php
885
B
-rw-rw-r--
2025-09-11 15:22
bootstrap.php
513
B
-rw-rw-r--
2025-09-11 15:22
bootstrap_cli.php
531
B
-rw-rw-r--
2025-09-11 15:22
Save
Rename
<?php /* * ********************************************* * LiteSpeed Web Server Cache Manager * @Author: LiteSpeed Technologies, Inc. (https://www.litespeedtech.com) * @Copyright: (c) 2018 * ******************************************* */ spl_autoload_register(function($class) { /** * project-specific namespace prefix */ $prefix = 'Lsc\\Wp\\'; /** * base directory for the namespace prefix */ $base_dir = __DIR__ . '/src/'; $len = strlen($prefix); if ( strncmp($prefix, $class, $len) !== 0 ) { /** * Class use the namespace prefix, * move to the next registered autoloader. */ return; } $relative_class_name = substr($class, $len); $file = $base_dir . str_replace('\\', '/', $relative_class_name) . '.php'; if ( file_exists($file) ) { require $file; } });