From c7763a73deeeb864daeffb97a09b162279b1f333 Mon Sep 17 00:00:00 2001 From: epi Date: Wed, 26 Aug 2020 17:36:09 -0500 Subject: [PATCH] added nuclei tool definition file --- pipeline/tools/nuclei.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pipeline/tools/nuclei.yaml diff --git a/pipeline/tools/nuclei.yaml b/pipeline/tools/nuclei.yaml new file mode 100644 index 0000000..81254ae --- /dev/null +++ b/pipeline/tools/nuclei.yaml @@ -0,0 +1,11 @@ +installed: false +dependencies: [go] +go: &gotool !get_tool_path "{go[path]}" +path: &path !join_path [!get_default "{gopath}", bin/nuclei] +environ: {"GO111MODULE": "on", "GOPATH": !get_default "{gopath}"} + +install_commands: +- !join [*gotool, "get", "-u", "github.com/projectdiscovery/nuclei/v2/cmd/nuclei"] + +uninstall_commands: +- !join [rm, *path]