Initial Commit

This commit is contained in:
Nemo 2019-03-02 20:21:04 +05:30
commit e2405c3319
4 changed files with 1580 additions and 0 deletions

22
README.md Normal file
View File

@ -0,0 +1,22 @@
# tld-a-record
List of TLDs with A records
AI has address 209.59.119.34
ARAB has address 127.0.53.53
BH has address 10.10.10.10
BH has address 88.201.27.211
CM has address 195.24.205.60
DK has address 193.163.102.58
GG has address 87.117.196.80
JE has address 87.117.196.80
PN has address 80.68.93.100
POLITIE has address 127.0.53.53
TK has address 217.119.57.22
UZ has address 91.212.89.8
WS has address 64.70.19.33
XN--L1ACC has address 180.149.98.78
XN--L1ACC has address 202.170.80.40
XN--L1ACC has address 218.100.84.27
XN--MXTQ1M has address 127.0.53.53
XN--NGBRX has address 127.0.53.53

18
result.txt Normal file
View File

@ -0,0 +1,18 @@
AI has address 209.59.119.34
ARAB has address 127.0.53.53
BH has address 10.10.10.10
BH has address 88.201.27.211
CM has address 195.24.205.60
DK has address 193.163.102.58
GG has address 87.117.196.80
JE has address 87.117.196.80
PN has address 80.68.93.100
POLITIE has address 127.0.53.53
TK has address 217.119.57.22
UZ has address 91.212.89.8
WS has address 64.70.19.33
XN--L1ACC has address 180.149.98.78
XN--L1ACC has address 202.170.80.40
XN--L1ACC has address 218.100.84.27
XN--MXTQ1M has address 127.0.53.53
XN--NGBRX has address 127.0.53.53

7
scan.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
wget "https://data.iana.org/TLD/tlds-alpha-by-domain.txt" --output-document tlds.txt
(for domain in $(grep -v '^#' tlds.txt); do
host -W 1 -t A "${domain}."
done) | grep -v 'has no A record'

1533
tlds.txt Normal file

File diff suppressed because it is too large Load Diff