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


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

/**
 * Serializable class used to hold an XML element.
 *
 * @package simpleSAMLphp
 * @version $Id$
 */
class SAML2_XML_Chunk {

    
/**
     * The localName of the element.
     *
     * @var string
     */
    
public $localName;


    
/**
     * The namespaceURI of this element.
     *
     * @var string
     */
    
public $namespaceURI;


    
/**
     * The DOMElement we contain.
     *
     * @var DOMElement
     */
    
private $xml;


    
/**
     * The DOMElement as a text string. Used during serialization.
     *
     * @var string|NULL
     */
    
private $xmlString;


    
/**
     * Create a XMLChunk from a copy of the given DOMElement.
     *
     * @param DOMElement $xml  The element we should copy.
     */
    
public function __construct(DOMElement $xml) {

        
$this->localName $xml->localName;
        
$this->namespaceURI $xml->namespaceURI;

        
$this->xml SAML2_Utils::copyElement($xml);
    }


    
/**
     * Get this DOMElement.
     *
     * @return DOMElement  This element.
     */
    
public function getXML() {
        
assert('$this->xml instanceof DOMElement || is_string($this->xmlString)');

        if (
$this->xml === NULL) {
            
$doc = new DOMDocument();
            
$doc->loadXML($this->xmlString);
            
$this->xml $doc->firstChild;
        }

        return 
$this->xml;
    }


    
/**
     * Append this XML element to a different XML element.
     *
     * @param DOMElement $parent  The element we should append this element to.
     * @return DOMElement  The new element.
     */
    
public function toXML(DOMElement $parent) {

        return 
SAML2_Utils::copyElement($this->getXML(), $parent);
    }


    
/**
     * Serialization handler.
     *
     * Converts the XML data to a string that can be serialized
     *
     * @return array  List of properties that should be serialized.
     */
    
public function __sleep() {
        
assert('$this->xml instanceof DOMElement || is_string($this->xmlString)');

        if (
$this->xmlString === NULL) {
            
$this->xmlString $this->xml->ownerDocument->saveXML($this->xml);
        }

        return array(
'xmlString''localName''namespaceURI');
    }

}

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