!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/SimpleSAML/Error/   drwxrwxr-x
Free 11.89 GB of 61.93 GB (19.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     AuthSource.php (1.29 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Baseclass for auth source exceptions.
 * 
 * @package simpleSAMLphp_base
 * @version $Id$
 *
 */
class SimpleSAML_Error_AuthSource extends SimpleSAML_Error_Error {


    
/**
     * Authsource module name.
     */
    
private $authsource;


    
/**
     * Reason why this request was invalid.
     */
    
private $reason;


    
/**
     * Create a new AuthSource error.
     *
     * @param string $authsource  Authsource module name from where this error was thrown.
     * @param string $reason  Description of the error.
     */
    
public function __construct($authsource$reason$cause NULL) {
        
assert('is_string($authsource)');
        
assert('is_string($reason)');

        
$this->authsource $authsource;
        
$this->reason $reason;
        
parent::__construct(
            array(
                
'AUTHSOURCEERROR',
                
'%AUTHSOURCE%' => htmlspecialchars(var_export($this->authsourceTRUE)),
                
'%REASON%' => htmlspecialchars(var_export($this->reasonTRUE))
            ),
            
$cause
        
);
    }


    
/**
     * Retrieve the authsource module name from where this error was thrown.
     *
     * @return string  Authsource module name.
     */
    
public function getAuthSource() {
        return 
$this->authsource;
    }


    
/**
     * Retrieve the reason why the request was invalid.
     *
     * @return string  The reason why the request was invalid.
     */
    
public function getReason() {
        return 
$this->reason;
    }

    
}

?>

:: 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.5087 ]--