Created
May 31, 2022 13:01
-
-
Save dustinbutterworth/7fbd98e134d5b914fc01057b9c5308e1 to your computer and use it in GitHub Desktop.
Handy Recon Scriptlets
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
# 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