-
-
Save umueller459/7a7c236a900f00b379ca7b37ba69567e to your computer and use it in GitHub Desktop.
Check Free 3 Letter Domains
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
#!/usr/bin/env bash | |
array=( a b c d e f g h i j k l m n o p q r s t u v w x y z ) | |
for a in "${array[@]}" | |
do | |
for b in "${array[@]}" | |
do | |
for c in "${array[@]}" | |
do | |
domain="$a$b$c.de" | |
echo $domain | |
nslookup $domain|grep NXDOMAIN >> free.txt | |
done | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment