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


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

/**
 * Class representing the saml:NameID element.
 *
 * @package simpleSAMLphp
 * @version $Id$
 */
class SAML2_XML_saml_NameID {

    
/**
     * The NameQualifier or the NameID.
     *
     * @var string|NULL
     */
    
public $NameQualifier;

    
/**
     * The SPNameQualifier or the NameID.
     *
     * @var string|NULL
     */
    
public $SPNameQualifier;


    
/**
     * The Format or the NameID.
     *
     * @var string|NULL
     */
    
public $Format;


    
/**
     * The SPProvidedID or the NameID.
     *
     * @var string|NULL
     */
    
public $SPProvidedID;


    
/**
     * The value of this NameID.
     *
     * @var string
     */
    
public $value;


    
/**
     * Initialize a saml:NameID.
     *
     * @param DOMElement|NULL $xml  The XML element we should load.
     */
    
public function __construct(DOMElement $xml NULL) {

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

        if (
$xml->hasAttribute('SPNameQualifier')) {
            
$this->SPNameQualifier $xml->getAttribute('SPNameQualifier');
        }

        if (
$xml->hasAttribute('NameQualifier')) {
            
$this->NameQualifier $xml->getAttribute('NameQualifier');
        }

        if (
$xml->hasAttribute('Format')) {
            
$this->Format $xml->getAttribute('Format');
        }

        if (
$xml->hasAttribute('SPProvidedID')) {
            
$this->SPProvidedID $xml->getAttribute('SPProvidedID');
        }

        
$this->value trim($xml->textContent);
    }


    
/**
     * Convert this NameID to XML.
     *
     * @param DOMElement|NULL $parent  The element we should append to.
     * @return DOMElement  This AdditionalMetadataLocation-element.
     */
    
public function toXML(DOMElement $parent NULL) {
        
assert('is_string($this->NameQualifier) || is_null($this->NameQualifier)');
        
assert('is_string($this->SPNameQualifier) || is_null($this->SPNameQualifier)');
        
assert('is_string($this->Format) || is_null($this->Format)');
        
assert('is_string($this->SPProvidedID) || is_null($this->SPProvidedID)');
        
assert('is_string($this->value)');

        if (
$parent === NULL) {
            
$parent = new DOMDocument();
            
$doc $parent;
        } else {
            
$doc $parent->ownerDocument;
        }
        
$e $doc->createElementNS(SAML2_Const::NS_SAML'saml:NameID');
        
$parent->appendChild($e);

        if (
$this->NameQualifier !== NULL) {
            
$e->setAttribute('NameQualifier'$this->NameQualifier);
        }

        if (
$this->SPNameQualifier !== NULL) {
            
$e->setAttribute('SPNameQualifier'$this->SPNameQualifier);
        }

        if (
$this->Format !== NULL) {
            
$e->setAttribute('Format'$this->Format);
        }

        if (
$this->SPProvidedID !== NULL) {
            
$e->setAttribute('SPProvidedID'$this->SPProvidedID);
        }

        
$t $doc->createTextNode($this->value);
        
$e->appendChild($t);

        return 
$e;
    }

}

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