Skip to content

Instantly share code, notes, and snippets.

@remonsec
Last active September 19, 2023 18:34
Show Gist options
  • Save remonsec/35ca438e9450dbac350eebef5208deb7 to your computer and use it in GitHub Desktop.
Save remonsec/35ca438e9450dbac350eebef5208deb7 to your computer and use it in GitHub Desktop.
FFUF command for fuzzing over multiple host
===[ Start Fuzzing ]===
ffuf -w common.txt:FUZZ -w ~/bb/target/httpx.txt:URL -u URLFUZZ -mc 200 -of csv -o ffuf-result.txt
===[ See The Result ]===
cat ffuf-result.txt | awk -F ',' '{print $3}'
N.B: My wordlist have '/' at beginning
Example: /.git
If your wordlist start with '.git'
use like this -u URL/FUZZ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment