Last active
October 18, 2024 03:52
-
-
Save remonsec/35ca438e9450dbac350eebef5208deb7 to your computer and use it in GitHub Desktop.
FFUF command for fuzzing over multiple host
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
===[ 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