LuD1161 / zap-api-go

OWASP ZAP Go API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OWASP ZAP GO API

The Go implementation to access the OWASP ZAP API. For more information about OWASP ZAP consult the (main) OWASP ZAP project.

How to Obtain

The latest released version can be downloaded using:

go get github.com/zaproxy/zap-api-go

Getting Help

For help using OWASP ZAP API refer to:

Updating the Generated Files

Most of the API code is generated from the ZAP java source code.

To regenerate the API code you will need the repos zaproxy and zap-extensions checked out at the same level as this one.

You should typically generate the core API calls from the latest release tag e.g.:

cd zaproxy
git fetch upstream -t
git checkout tags/v2.11.1
./gradlew generateGoApiEndpoints
cd ..

The add-on APIs can be generated from the zap-extensions main branch:

cd zap-extensions
git pull upstream main
./gradlew generateGoZapApiClientFiles --continue
cd ..

The above commands will update the files in zap-api-go/zap.

If any new files are created then they should be manually added to zap-api-go/zap/interface.go as per the existing files.

About

OWASP ZAP Go API

License:Apache License 2.0


Languages

Language:Go 99.5%Language:Shell 0.5%