Open WDavid404 opened 1 year ago
E.g
wfuzz -c -z file,/usr/share/wfuzz/wordlist/general/common.txt
-p 192.168.1.198:8081
-H "api-key: xxxx-xxxxx-xxxxx-xxxx" -H "Content-Type: application/json"
--hc 404
https://test.com/api/v1/FUZZ
用X指定POST请求
wfuzz -c -z file,/usr/share/wfuzz/wordlist/general/common.txt
-p 192.168.1.198:8081
-X POST
-H "api-key: xxxx-xxxx-xxxxx-xxxx&Content-Type: application/json" --hc 404
https://test.com/api/v1/FUZZ
wfuzz -c -z file,/home/wei/Downloads/megabeast.txt --hc 404 http://192.168.202.189:80/FUZZ/ ---> megabeast.txt (https://github.com/xmendez/wfuzz/blob/master/wordlist/general/megabeast.txt)
wfuzz -c -z file,/opt/SecLists/Discovery/Web-Content/raft-medium-directories.txt --hc 404 http://192.168.235.76:80/FUZZ/
wfuzz -c -z file,/opt/SecLists/Discovery/Web-Content/directory-list-2.3-small.txt --hc 404 http://192.168.235.76/FUZZ
wfuzz -c -z file,/opt/SecLists/Discovery/Web-Content/raft-medium-directories.txt --hc 404, 302 http://192.168.235.76:8080/FUZZ/
wfuzz -c -z file,/opt/SecLists/Discovery/Web-Content/raft-medium-files-lowercase.txt --hc 404, 302 http://192.168.235.76:8080/FUZZ/
wfuzz -w wordlist/general/common.txt --hc 404 http://testphp.vulnweb.com/FUZZ wfuzz -c -z file,users.txt -z file,pass.txt --sc 200 http://www.site.com/log.asp?user=FUZZ&pass=FUZ2Z wfuzz -c -z range,1-10 --hc=BBB http://www.site.com/FUZZ{something not there} wfuzz --script=robots -z list,robots.txt http://www.webscantest.com/FUZZ
https://wfuzz.readthedocs.io/en/latest/user/basicusage.html#