Skip to content

Instantly share code, notes, and snippets.

@secfb
Forked from dwisiswant0/nuclei-scan.sh
Created May 23, 2020 00:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save secfb/b100141983b8d830a6e7bf62ceea5f15 to your computer and use it in GitHub Desktop.
Save secfb/b100141983b8d830a6e7bf62ceea5f15 to your computer and use it in GitHub Desktop.
Automate nuclei for given hosts
#!/bin/bash
OUT="~/nuclei-results/$1"
TPL="~/nuclei-templates"
mkdir -p ${OUT}
SUB=$(subfinder -d $1 -silent | httprobe | tee ${OUT}/$1.txt)
cd ${TPL}; git pull origin master && cd -
for tpl in $(find $TPL -name "*.yaml"); do
$GOPATH/bin/nuclei -l ${OUT}/$1.txt -t $tpl -o "${OUT}/$(basename "$tpl" .yaml).txt"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment