Skip to content

Instantly share code, notes, and snippets.

@dustinbutterworth
Created May 31, 2022 13:01
Show Gist options
  • Save dustinbutterworth/7fbd98e134d5b914fc01057b9c5308e1 to your computer and use it in GitHub Desktop.
Save dustinbutterworth/7fbd98e134d5b914fc01057b9c5308e1 to your computer and use it in GitHub Desktop.
Handy Recon Scriptlets
# This will contain more as time passes, but put these all together from https://twitter.com/pry0cc/status/1504148938085052423
subfinder -d target | httpx -ports 80,443,8080,8443 | anew urls.txt # can also use naabu
subfinder -d target | dnsx -resp | awk ‘{ print $2 }’ | anew IPs.txt
tew -x nmap.xml | httpx
subfinder -d target | dnsx -json -o dns.json # This will generate a JSON output of the DNS resolutions for our targets. Then:
tew -x nmap.xml -dnsx dns.json —vhosts | httpx
# Resources:
https://github.com/pry0cc/tew
https://github.com/projectdiscovery/subfinder
https://github.com/projectdiscovery/httpx
https://github.com/projectdiscovery/dnsx
https://github.com/projectdiscovery/naabu
https://github.com/tomnomnom/anew
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment