Last active
October 18, 2024 03:52
-
-
Save remonsec/35ca438e9450dbac350eebef5208deb7 to your computer and use it in GitHub Desktop.
Revisions
-
remonsec revised this gist
Sep 25, 2021 . 1 changed file with 5 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,5 +4,8 @@ ffuf -w common.txt:FUZZ -w ~/bb/target/httpx.txt:URL -u URLFUZZ -mc 200 -of csv ===[ 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 -
remonsec revised this gist
Sep 25, 2021 . 1 changed file with 8 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1,8 @@ ===[ 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: wordlist have '/' at beginning Example: /.git -
remonsec created this gist
Sep 25, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ ffuf -w common.txt:FUZZ -w ~/bb/target/httpx.txt:URL -u URLFUZZ -mc 200 -of csv -o ffuf-result.txt