Summary: [Basic project short summary goes here]
Our simple Bash Script to check DNS names −
#!/bin/bash
for name in $(cat $1);
do
host $name.$2 | grep "has address"
done
exitsmall wordlist to test DNS resolution on −
dns
www
test
dev
mail
rdp
remote
./dns-check.sh dns-names.txt google.com