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


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

/**
 * Class for SAML 2 Response messages.
 *
 * @package simpleSAMLphp
 * @version $Id$
 */
class SAML2_Response extends SAML2_StatusResponse {

    
/**
     * The assertions in this response.
     */
    
private $assertions;


    
/**
     * Constructor for SAML 2 response messages.
     *
     * @param DOMElement|NULL $xml  The input message.
     */
    
public function __construct(DOMElement $xml NULL) {
        
parent::__construct('Response'$xml);

        
$this->assertions = array();

        if (
$xml === NULL) {
            return;
        }

        for (
$node $xml->firstChild$node !== NULL$node $node->nextSibling) {
            if (
$node->namespaceURI !== SAML2_Const::NS_SAML) {
                continue;
            }

            if (
$node->localName === 'Assertion') {
                
$this->assertions[] = new SAML2_Assertion($node);
            } elseif(
$node->localName === 'EncryptedAssertion') {
                
$this->assertions[] = new SAML2_EncryptedAssertion($node);
            }
        }
    }


    
/**
     * Retrieve the assertions in this response.
     *
     * @return array  Array of SAML2_Assertion and SAML2_EncryptedAssertion objects.
     */
    
public function getAssertions() {
        return 
$this->assertions;
    }


    
/**
     * Set the assertions that should be included in this response.
     *
     * @param array  The assertions.
     */
    
public function setAssertions(array $assertions) {

        
$this->assertions $assertions;
    }


    
/**
     * Convert the response message to an XML element.
     *
     * @return DOMElement  This response.
     */
    
public function toUnsignedXML() {

        
$root parent::toUnsignedXML();

        foreach (
$this->assertions as $assertion) {
            
$node $assertion->toXML($root);
        }

        return 
$root;
    }

}

?>

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