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


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

/**
 * Class representing SAML 2 Organization element.
 *
 * @package simpleSAMLphp
 * @version $Id$
 */
class SAML2_XML_md_Organization {

    
/**
     * Extensions on this element.
     *
     * Array of extension elements.
     *
     * @var array
     */
    
public $Extensions = array();


    
/**
     * The OrganizationName, as an array of language => translation.
     *
     * @var array
     */
    
public $OrganizationName = array();


    
/**
     * The OrganizationDisplayName, as an array of language => translation.
     *
     * @var array
     */
    
public $OrganizationDisplayName = array();


    
/**
     * The OrganizationURL, as an array of language => translation.
     *
     * @var array
     */
    
public $OrganizationURL = array();


    
/**
     * Initialize an Organization element.
     *
     * @param DOMElement|NULL $xml  The XML element we should load.
     */
    
public function __construct(DOMElement $xml NULL) {

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

        
$this->Extensions SAML2_XML_md_Extensions::getList($xml);


        
$this->OrganizationName SAML2_Utils::extractLocalizedStrings($xmlSAML2_Const::NS_MD'OrganizationName');
        if (empty(
$this->OrganizationName)) {
            
$this->OrganizationName = array('invalid' => '');
        }

        
$this->OrganizationDisplayName SAML2_Utils::extractLocalizedStrings($xmlSAML2_Const::NS_MD'OrganizationDisplayName');
        if (empty(
$this->OrganizationDisplayName)) {
            
$this->OrganizationDisplayName = array('invalid' => '');
        }

        
$this->OrganizationURL SAML2_Utils::extractLocalizedStrings($xmlSAML2_Const::NS_MD'OrganizationURL');
        if (empty(
$this->OrganizationURL)) {
            
$this->OrganizationURL = array('invalid' => '');
        }
    }


    
/**
     * Convert this Organization to XML.
     *
     * @param DOMElement $parent  The element we should add this organization to.
     * @return DOMElement  This Organization-element.
     */
    
public function toXML(DOMElement $parent) {
        
assert('is_array($this->Extensions)');
        
assert('is_array($this->OrganizationName)');
        
assert('!empty($this->OrganizationName)');
        
assert('is_array($this->OrganizationDisplayName)');
        
assert('!empty($this->OrganizationDisplayName)');
        
assert('is_array($this->OrganizationURL)');
        
assert('!empty($this->OrganizationURL)');

        
$doc $parent->ownerDocument;

        
$e $doc->createElementNS(SAML2_Const::NS_MD'md:Organization');
        
$parent->appendChild($e);

        
SAML2_XML_md_Extensions::addList($e$this->Extensions);

        
SAML2_Utils::addStrings($eSAML2_Const::NS_MD'md:OrganizationName'TRUE$this->OrganizationName);
        
SAML2_Utils::addStrings($eSAML2_Const::NS_MD'md:OrganizationDisplayName'TRUE$this->OrganizationDisplayName);
        
SAML2_Utils::addStrings($eSAML2_Const::NS_MD'md:OrganizationURL'TRUE$this->OrganizationURL);

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