Skip to content

Instantly share code, notes, and snippets.

@d1pakda5
Forked from dwisiswant0/nucleir.sh
Created August 14, 2020 19:08
Show Gist options
  • Save d1pakda5/c2d24ba69146c9a127767248a2a8a21a to your computer and use it in GitHub Desktop.
Save d1pakda5/c2d24ba69146c9a127767248a2a8a21a to your computer and use it in GitHub Desktop.
Automate nuclei
nucleir() {
local TPL="$HOME/Documents/nuclei-templates"
[[ -z "${1}" ]] && { echo "-target/-l ?"; return; }
[[ -z "${2}" ]] && { echo "Input target?"; return; }
for i in `ls -1d ${TPL}/*/`; do
if [[ ! "${i}" =~ (brute-force|examples|payloads) ]]; then
nuclei $1 $2 -t ${i} -o "$(basename $2)_nuclei-$(basename $i).txt"
fi
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment