Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.14.135.79
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
famchicpd /
wp-includes /
sodium_compat /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-x---
2024-11-13 12:45
namespaced
[ DIR ]
drwxr-x---
2024-01-30 19:27
src
[ DIR ]
drwxr-x---
2024-01-30 19:27
LICENSE
860
B
-rw-r-----
2023-04-30 14:08
autoload-php7.php
890
B
-rw-r-----
2020-09-27 04:46
autoload.php
3.04
KB
-rw-r--r--
2024-11-13 12:45
composer.json
1.57
KB
-rw-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; });