fixed POST data fuzzing example (#119)

-u flag is required
This commit is contained in:
JamTookTheBait 2019-12-08 06:48:53 -05:00 committed by Joona Hoikkala
parent c33a431716
commit 5c1a535fa9

View File

@ -62,7 +62,7 @@ ffuf -w /path/to/values.txt -u https://target/script.php?valid_name=FUZZ -fc 401
This is a very straightforward operation, again by using the `FUZZ` keyword. This example is fuzzing only part of the POST request. We're again filtering out the 401 responses.
```
ffuf -w /path/to/postdata.txt -X POST -d "username=admin\&password=FUZZ" https://target/login.php -fc 401
ffuf -w /path/to/postdata.txt -X POST -d "username=admin\&password=FUZZ" -u https://target/login.php -fc 401
```
### Using external mutator to produce test cases