Linux s17.hosterpk.com 6.12.0-124.55.3.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:54:02 EDT 2026 x86_64
LiteSpeed
Server IP : 192.169.89.90 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : hamzalar
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home4 /
hamzalar /
.trash /
wp-includes /
sodium_compat /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-xr-x
2024-11-13 19:40
namespaced
[ DIR ]
drwxr-xr-x
2023-08-29 14:14
src
[ DIR ]
drwxr-xr-x
2023-08-29 14:14
LICENSE
860
B
-rw-r--r--
2023-04-30 14:08
autoload-php7.php
890
B
-rw-r--r--
2020-09-27 04:46
autoload.php
3.04
KB
-rw-r--r--
2024-11-13 19:40
composer.json
1.57
KB
-rw-r--r--
2021-05-25 13:55
Save
Rename
<?php /* This file should only ever be loaded on PHP 7+ */ if (PHP_VERSION_ID < 70000) { return; } spl_autoload_register(function ($class) { $namespace = 'ParagonIE_Sodium_'; // Does the class use the namespace prefix? $len = strlen($namespace); if (strncmp($namespace, $class, $len) !== 0) { // no, move to the next registered autoloader return false; } // Get the relative class name $relative_class = substr($class, $len); // Replace the namespace prefix with the base directory, replace namespace // separators with directory separators in the relative class name, append // with .php $file = dirname(__FILE__) . '/src/' . str_replace('_', '/', $relative_class) . '.php'; // if the file exists, require it if (file_exists($file)) { require_once $file; return true; } return false; });