# https://github.com/skavngr/rapidscan
python2 rapidscan.py example.com
# finalRecon
sudo python3 finalrecon.py --full https://example.com
# nuclei
# https://github.com/projectdiscovery/nuclei
# https://github.com/projectdiscovery/nuclei-templates
nuclei -update-templates
cat urls.txt | nuclei -t /nuclei-templates/
# Jaeles
# https://github.com/jaeles-project/jaeles
# https://github.com/jaeles-project/jaeles-signatures
jaeles scan -c 100 -s /jaeles-signatures/ -u urls.txt
# sn1per
sn1per -t example.com
# nikto2
nikto -h example.com
# recox
# https://github.com/samhaxr/recox
./recox.sh
Web Scan Oneliner Rules Based
# Subdomain enum + web reachable + output cleaning + web scan rules based
chaos -silent -d domain.com | httpx -silent | anew | nuclei -silent -t ~/nuclei-templates
# Subdomain enum + web reachable + output cleaning + web scan rules based 2
chaos -silent -d domain.com | httpx -silent | anew | xargs -I@ jaeles scan -u @