Skip to content

Instantly share code, notes, and snippets.

@minkione
Forked from dwisiswant0/nuclei-scan.sh
Created January 22, 2021 13:23
Show Gist options
  • Save minkione/acc8a8b896b58d924a99288c4dcd0273 to your computer and use it in GitHub Desktop.
Save minkione/acc8a8b896b58d924a99288c4dcd0273 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
find ${OUT} -name "*.txt" -size 0 -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment