Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.189.184.208
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
paragonie /
sodium_compat /
Delete
Unzip
Name
Size
Permission
Date
Action
dist
[ DIR ]
drwxr-xr-x
2018-11-29 09:00
lib
[ DIR ]
drwxr-xr-x
2018-11-29 09:00
namespaced
[ DIR ]
drwxr-xr-x
2018-11-29 09:00
src
[ DIR ]
drwxr-xr-x
2018-11-29 09:00
.gitignore
107
B
-rw-r--r--
2018-11-29 09:00
LICENSE
918
B
-rw-r--r--
2018-11-29 09:00
README.md
12.45
KB
-rw-r--r--
2018-11-29 09:00
appveyor.yml
762
B
-rw-r--r--
2018-11-29 09:00
autoload-fast.php
79
B
-rw-r--r--
2018-11-29 09:00
autoload-pedantic.php
114
B
-rw-r--r--
2018-11-29 09:00
autoload.php
1.61
KB
-rw-r--r--
2018-11-29 09:00
build-phar.sh
208
B
-rw-r--r--
2018-11-29 09:00
composer.json
1.51
KB
-rw-r--r--
2018-11-29 09:00
phpunit.xml.dist
861
B
-rw-r--r--
2018-11-29 09:00
Save
Rename
<?php if (!is_callable('sodiumCompatAutoloader')) { /** * Sodium_Compat autoloader. * * @param string $class Class name to be autoloaded. * * @return bool Stop autoloading? */ function sodiumCompatAutoloader($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; } // Now that we have an autoloader, let's register it! spl_autoload_register('sodiumCompatAutoloader'); } require_once dirname(__FILE__) . '/src/SodiumException.php'; if (PHP_VERSION_ID >= 50300) { // Namespaces didn't exist before 5.3.0, so don't even try to use this // unless PHP >= 5.3.0 require_once dirname(__FILE__) . '/lib/namespaced.php'; require_once dirname(__FILE__) . '/lib/sodium_compat.php'; } if (PHP_VERSION_ID < 70200 || !extension_loaded('sodium')) { require_once dirname(__FILE__) . '/lib/php72compat.php'; }