Nuclei
Nuclei Agent Setup to provides vulnerability scan
Using
{{domain}}
ReconNess replace {{domain}}
for the subdomain.If we have the templates in /root/nuclei-templates
nuclei -u {{domain}} -t /root/nuclei-templates -silent
This Agent run in each subdomain.

We save the vulnerability info inside the Subdomain's Notes
return new ReconNess.Core.Models.ScriptOutput { Note = lineInput };
# -------- Agents dependencies --------
# To allow run nuclei inside the docker
RUN apt-get update && apt-get install -y git wget
RUN wget https://dl.google.com/go/go1.14.6.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf go1.14.6.linux-amd64.tar.gz
RUN GO111MODULE=on /usr/local/go/bin/go get -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei
RUN /root/go/bin/nuclei -update-templates
# -------- End Agents dependencies --------
/root/go/bin/nuclei -u {{domain}} -t /root/nuclei-templates -silent
Last modified 2yr ago