Comment on page
Fuzzing
Using only
proxychains
before ffuf
doesn't work, but thanks to this concern we found a path to actually use ffuf
with proxychains
.pip3 install --upgrade proxy.py
Serve a proxy server with proxychains:
proxychains proxy
Hosting proxy on port8899
locally:2525-25-25 25:25:25,901 - pid:2281626 [I] plugins.load:85 - Loaded plugin proxy.http.proxy.HttpProxyPlugin2525-25-25 25:25:25,901 - pid:2281626 [I] tcp.listen:80 - Listening on 127.0.0.1:88992525-25-25 25:25:25,907 - pid:2281626 [I] pool.setup:105 - Started 2 acceptors in threadless (local) mode
Run ffuf targeting to proxy:
ffuf -c -w wordlist.txt -x http://127.0.0.1:8899 -u http://192.168.2.4/FUZZ
proxychains -q wfuzz -c -w wordlist.txt -u http://192.168.2.4/FUZZ
Last modified 4mo ago