Created
June 27, 2025 14:17
-
-
Save enderphan94/60a3e0945765fe39248704db8c08eed5 to your computer and use it in GitHub Desktop.
One line Crawl+Scan
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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