Replies: 2 comments
|
The What What you probably want — if you have a list of hostnames and want to resolve their A records: # Just resolve A records from your subdomain list
dnsx -l subdomains.txt -a -resp -silentIf your # Add the base domain to each line first
cat subdomains.txt | sed 's/$/.xxx.com/' | dnsx -a -resp -silentOr use dnsx -d xxx.com -w wordlist.txt -a -resp -silentSummary of the flags:
|
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I currently have a list of subdomains, can I specify the -wd parameter when querying the A record?It seems not to be working.
command:
dnsx -l subdomains.txt -a -resp -silent -wd xxx.com
All reactions