The Nuclei API package provides a simple gRPC wrapper around the Nuclei scanner, allowing easy integration with other tools.
go install -v github.com/pyneda/nuclei-api@latestor
git clone https://github.com/pyneda/nuclei-api
cd nuclei-api
go build
Start the server:
nuclei-api start -hMost of the options available in Nuclei to choose and filter templates are available as a part of the scan request.
Other options such as rate limits, interactsh configuration, etc are available as a part of the server configuration which can be configured using a YAML file. The following command is available to dump the default configuration:
nuclei-api dumpconfigAn example client is provided in the cmd/example directory.
It can be built with:
go build cmd/example/client.go