fuff
https://www.kali.org/tools/ffuf/
ffuf is a fast web fuzzer written in Go that allows typical directory discovery, virtual host discovery (without DNS records) and GET and POST parameter fuzzing.
Website path
Valid username
FUZZ is the variable we are using to bruteforce the attribute "username", in the requests, it will be replaced by every word of the wordlist
Command
Description
-w
Wordlist
-X
Method to use
-d
POST data
-H
Header
-u
URL
-mr
Expected string
Valid password
Here we are using two variable "w1" and "w2" wich will be replaced in the requests by 2 words from the 2 wordlists defined
Command
Description
-w
2 wordlists, 1 for user & 1 for password
-X
Method
-d
POST Data
-H
Header
-u
URL
-fc
Expected code
Last updated