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

Fix axiom-proxy #412

Closed y0k4i-1337 closed 3 years ago

y0k4i-1337 commented 3 years ago

axiom-proxy was missing && operator in some of the latest commands which was making the script trying to run docker even when user didn't provide "--single" flag. This PR ensures it only runs docker when using that flag.

Also, docker build was missing PATH argument, which was causing issues like the following:

image

Withe these changes, I was able to successfully run axiom-proxy --single:

image

NitescuLucian commented 3 years ago

The --chmod option requires BuildKit. Refer to https://docs.docker.com/go/buildkit/ to learn how to build images with BuildKit enabled.

0xtavian commented 3 years ago

@NitescuLucian thank you. I added BuildKit. Can you let me know if it works for you?