Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
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 18:52
MIN_VER
7
B
-rw-r--r--
2026-03-20 17:28
VERSION
6
B
-rw-rw-r--
2025-09-11 18:52
autoloader.php
885
B
-rw-rw-r--
2025-09-11 18:52
bootstrap.php
513
B
-rw-rw-r--
2025-09-11 18:52
bootstrap_cli.php
531
B
-rw-rw-r--
2025-09-11 18:52
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; } });