Skip to main content

Setup your own ZAProxy

ZAProxy is reachable from Botium or a running internal ZAProxy

Steps:

  1. This is how you would start ZAProxy in a docker-compose file:
    zaproxy:
        container_name: zap
        image: owasp/zap2docker-stable:2.7.0
        command: [
          "zap.sh",
          "-daemon",
          "-host", "0.0.0.0", "-port", "8080",
          "-config", "api.disablekey=true",
          "-config", "api.addrs.addr.name=.*",
          "-config", "api.addrs.addr.regex=true"
        ]
  2. In Botium, the environment variable ZAP_ENDPOINT is set to the ZAProxy endpoint. How to set environment variables depends on your installation - ZAP_ENDPOINT="http://my-zap-server:8080"
  3. Restart Botium.

Was this article helpful?

0 out of 0 found this helpful