Skip to content

Instantly share code, notes, and snippets.

@ruevaughn
Forked from dwisiswant0/nuclei-scan.sh
Created October 17, 2021 21:04
Show Gist options
  • Save ruevaughn/4afb73da890b58d5d115af78253e800c to your computer and use it in GitHub Desktop.
Save ruevaughn/4afb73da890b58d5d115af78253e800c 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