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


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

/**
 * Class for handling the metadata extensions for login and discovery user interface
 *
 * @link: http://docs.oasis-open.org/security/saml/Post2.0/sstc-saml-metadata-ui/v1.0/sstc-saml-metadata-ui-v1.0.pdf
 * @package simpleSAMLphp
 * @version $Id$
 */
class SAML2_XML_mdui_DiscoHints {

    
/**
     * The namespace used for the DiscoHints extension.
     */
    
const NS 'urn:oasis:names:tc:SAML:metadata:ui';


    
/**
     * Array with child elements.
     *
     * The elements can be any of the other SAML2_XML_mdui_* elements.
     *
     * @var array
     */
    
public $children = array();


    
/**
     * The IPHint, as an array of strings.
     *
     * @var array
     */
    
public $IPHint = array();


    
/**
     * The DomainHint, as an array of strings.
     *
     * @var array
     */
    
public $DomainHint = array();


    
/**
     * The GeolocationHint, as an array of strings.
     *
     * @var array
     */
    
public $GeolocationHint = array();

    
/**
     * Create a DiscoHints element.
     *
     * @param DOMElement|NULL $xml  The XML element we should load.
     */
    
public function __construct(DOMElement $xml NULL) {

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

        
$this->IPHint =          SAML2_Utils::extractStrings($xmlself::NS'IPHint');
        
$this->DomainHint =      SAML2_Utils::extractStrings($xmlself::NS'DomainHint');
        
$this->GeolocationHint SAML2_Utils::extractStrings($xmlself::NS'GeolocationHint');

        foreach (
SAML2_Utils::xpQuery($xml"./*[namespace-uri()!='".self::NS."']") as $node) {
            
$this->children[] = new SAML2_XML_Chunk($node);
        }
    }


    
/**
     * Convert this DiscoHints to XML.
     *
     * @param DOMElement $parent  The element we should append to.
     */
    
public function toXML(DOMElement $parent) {
        
assert('is_array($this->IPHint)');
        
assert('is_array($this->DomainHint)');
        
assert('is_array($this->GeolocationHint)');
        
assert('is_array($this->children)');

        if (!empty(
$this->IPHint)
         || !empty(
$this->DomainHint)
         || !empty(
$this->GeolocationHint)
         || !empty(
$this->children)) {
            
$doc $parent->ownerDocument;

            
$e $doc->createElementNS(self::NS'mdui:DiscoHints');
            
$parent->appendChild($e);

            if (!empty(
$this->children)) {
                foreach (
$this->children as $child) {
                    
$child->toXML($e);
                }
            }

            
SAML2_Utils::addStrings($eself::NS'mdui:IPHint',          FALSE$this->IPHint);
            
SAML2_Utils::addStrings($eself::NS'mdui:DomainHint',      FALSE$this->DomainHint);
            
SAML2_Utils::addStrings($eself::NS'mdui:GeolocationHint'FALSE$this->GeolocationHint);

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