!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/3ros/simplesamlphp/lib/   drwxrwxr-x
Free 13.85 GB of 61.93 GB (22.36%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     _autoload.php (1.76 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * This file implements a autoloader for simpleSAMLphp. This autoloader
 * will search for files under the simpleSAMLphp directory.
 *
 * @author Olav Morken, UNINETT AS.
 * @package simpleSAMLphp
 * @version $Id$
 */


/**
 * Autoload function for simpleSAMLphp.
 *
 * It will autoload all classes stored in the lib-directory.
 *
 * @param $className  The name of the class.
 */
function SimpleSAML_autoload($className) {

    
$libDir dirname(__FILE__) . '/';

    
/* Special handling for xmlseclibs.php. */
    
if(in_array($className, array('XMLSecurityKey''XMLSecurityDSig''XMLSecEnc'), TRUE)) {
        require_once(
$libDir 'xmlseclibs.php');
        return;
    }

    
/* Handlig of modules. */
    
if(substr($className07) === 'sspmod_') {
        
$modNameEnd strpos($className'_'7);
        
$module substr($className7$modNameEnd 7);
        
$moduleClass substr($className$modNameEnd 1);

        if(!
SimpleSAML_Module::isModuleEnabled($module)) {
            return;
        }

        
$file SimpleSAML_Module::getModuleDir($module) . '/lib/' str_replace('_''/'$moduleClass) . '.php';
    } else {
        
$file $libDir str_replace('_''/'$className) . '.php';
    }

    if(
file_exists($file)) {
        require_once(
$file);
    }
}

/* Register autoload function for simpleSAMLphp. */
if(function_exists('spl_autoload_register')) {
    
/* Use the spl_autoload_register function if it is available. It should be available
     * for PHP versions >= 5.1.2.
     */
    
spl_autoload_register('SimpleSAML_autoload');
} else {

    
/* spl_autoload_register is unavailable - let us hope that no one else uses the __autoload function. */

    /**
     * Autoload function for those who don't have spl_autoload_register.
     *
     * @param $className  The name of the requested class.
     */
    
function __autoload($className) {
        
SimpleSAML_autoload($className);
    }
}

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.4871 ]--