pry0cc / axiom

The dynamic infrastructure framework for everybody! Distribute the workload of many different scanning tools with ease, including nmap, ffuf, masscan, nuclei, meg and many more!
MIT License
4k stars 622 forks source link

如何异步请求的同时更换代理ip? #516

Closed shihaochen666 closed 2 years ago

0xtavian commented 2 years ago

@shihaochen666

Something like this?

Axiom-proxy
Start a proxy round-robin listener against all our nodes in our fleet.

axiom-proxy 'fire*' --single
Run curl over and over again to show it’s different ips

This proxy can be used in burp 
curl --socks5-hostname 127.0.0.1:1337 https://ipinfo.io | jq
curl --socks5-hostname 127.0.0.1:1337 https://ipinfo.io | jq -c
curl --socks5-hostname 127.0.0.1:1337 https://ipinfo.io | jq -c
curl --socks5-hostname 127.0.0.1:1337 https://ipinfo.io | jq -c
curl --socks5-hostname 127.0.0.1:1337 https://ipinfo.io | jq -c
curl --socks5-hostname 127.0.0.1:1337 https://ipinfo.io | jq -c

We also have USING AXIOM TO SEND BURP SUITE REQUESTS TO ALTERNATING PROXIES Other whiteup and videos here

However, there is a problem documented here https://github.com/pry0cc/axiom/issues/498, axiom-proxy does not fully work without code changes. I plan to update axiom-proxy as my next goal. Maybe in a week it will be finished. Im going to close this issue as a repeat of the first issue https://github.com/pry0cc/axiom/issues/498 but post in the issue if you have questions.