Created
September 19, 2018 08:59
-
-
Save SleepyLctl/6aad25bbbec2d653818519b74bb0503d to your computer and use it in GitHub Desktop.
DNS Subdomain Enumeration
This file contains 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
#!/bin/bash | |
dot="." | |
while read subdomain; do | |
host $subdomain$dot$1 | grep "has address" | |
done < $2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment