Go로 작성된 빠른 웹 퍼저.
FUZZ
키워드가 자리 표시자로 사용됨.ffuf
는FUZZ
라는 단어를 단어 목록의 모든 단어로 변경해 URL에 접속하려 시도. 더 많은 정보: https://github.com/ffuf/ffuf#usage.
ffuf -c -w {{경로/대상/단어목록.txt}} -u {{http://target/FUZZ}}
ffuf -w {{경로/대상/서브도메인.txt}} -u {{http://FUZZ.target.com}}
ffuf -o -w {{경로/대상/단어목록.txt}} -u {{http://target/FUZZ}} -t {{500}} -x {{http://127.0.0.1:8080}}
ffuf -w {{경로/대상/단어목록.txt}} -u {{http://target.com}} -H "{{Host: FUZZ}}" -mc {{200}}
ffuf -w {{경로/대상/포스트데이터.txt}} -X {{POST}} -d "{{username=admin\&password=FUZZ}}" -u {{http://target/login.php}} -fc {{401,403}}
ffuf -w {{경로/대상/keys:KEY}} -w {{경로/대상/values:VALUE}} -mode {{pitchfork|clusterbomb}} -u {{http://target.com/id?KEY=VALUE}}
mitmproxy
)를 통한 프록시 요청:ffuf -w {{경로/대상/단어목록}} -x {{http://127.0.0.1:8080}} -u {{http://target.com/FUZZ}}