Skip to content

Instantly share code, notes, and snippets.

@enderphan94
Created June 27, 2025 14:17
Show Gist options
  • Save enderphan94/60a3e0945765fe39248704db8c08eed5 to your computer and use it in GitHub Desktop.
Save enderphan94/60a3e0945765fe39248704db8c08eed5 to your computer and use it in GitHub Desktop.
One line Crawl+Scan
while read domain; do
UA=$(gshuf -n 1 -e 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)' 'Mozilla/5.0 (X11; Linux x86_64)' 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)')
katana -u "$domain" -hl -jc --no-sandbox -c 1 -p 1 -rd 3 -rl 3 -H "User-Agent: $UA" | \
httpx -silent -status-code -follow-redirects -tls-probe -random-agent -fr | \
nuclei -headless -sresp -rate-limit 10 -concurrency 10 -severity critical,high,medium \
-tags login,auth,exposure,api -markdown-export output/ -tlsi -stats
done < domains.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment