forked from mboot-github/python-whois
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
executable file
·204 lines (192 loc) · 3.81 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#!/usr/bin/python3
import whois
DOMAINS = '''
dot.ml
netsec.ninja
test.education
doramy.club
google.cl
google.in
google.com.ar
google.com.co
google.pl
google.com.br
www.google.com
www.fsdfsdfsdfsd.google.com
digg.com
imdb.com
microsoft.com
www.google.org
ddarko.org
google.net
www.asp.net
www.ddarko.pl
google.co.uk
google.jp
www.google.co.jp
google.io
google.co
google.de
yandex.ru
google.us
google.eu
google.me
google.be
google.lt
google.biz
google.info
google.name
google.it
google.cz
google.fr
google.nl
dfsdfsfsdf
test.ez.lv
google.store
kono.store
wonder.store
viacom.tech
google.tech
google.space
loop.space
bloom.space
invr.space
buzzi.space
theobservatory.space
google.security
pep.security
token.security
juniper.security
ci.security
in.security
autobuyer.site
emeralds.site
darkops.site
google.site
manniswindows.site
google.website
discjockey.website
anthropology.website
livechat.website
google.tickets
google.theatre
google.xyz
google.tel
google.tv
google.cc
google.nyc
google.pw
google.online
google.wiki
google.press
google.se
google.nu
google.fi
google.is
afilias.com.au
jisc.ac.uk
google.com.au
register.bank
yandex.ua
google.ca
google.mu
google.rw
tut.by
guinness.ie
google.com.tr
google.sale
google.link
google.game
google.trade
google.ink
google.pub
google.im
google.am
google.fm
google.hk
google.cr
google.global
google.co.il
google.pt
elcomercio.pe
terra.com.pe
amazon.study
amazon.courses
google.aw
karibu.tz
'''
failure = list()
# domains = ''
invalidTld = '''
bit.ly
'''
failedParsing = '''
'''
unknownDateFormat = '''
gopro.com
'''
for d in DOMAINS.split('\n'):
if d:
print('-'*80)
print(d)
try:
w = whois.query(d, ignore_returncode=1)
if w:
wd = w.__dict__
for k, v in wd.items():
print('%20s\t"%s"' % (k, v))
except Exception as e:
failure.append(d)
message = """
Error : {},
On Domain: {}
""".format(str(e), d)
print(message)
for d in invalidTld.split('\n'):
if d:
print('-'*80)
print(d)
try:
w = whois.query(d, ignore_returncode=1)
except whois.UnknownTld as e:
failure.append(d)
message = """
Error : {},
On Domain: {}
""".format(str(e), d)
print('Caught UnknownTld Exception')
print(e)
for d in failedParsing.split('\n'):
if d:
print('-'*80)
print(d)
try:
w = whois.query(d, ignore_returncode=1)
except whois.FailedParsingWhoisOutput as e:
failure.append(d)
message = """
Error : {},
On Domain: {}
""".format(str(e), d)
print('Caught FailedParsingWhoisOutput Exception')
print(e)
for d in unknownDateFormat.split('\n'):
if d:
print('-'*80)
print(d)
try:
w = whois.query(d, ignore_returncode=1)
except whois.UnknownDateFormat as e:
failure.append(d)
message = """
Error : {},
On Domain: {}
""".format(str(e), d)
print('Caught UnknownDateFormat Exception')
print(e)
report_str = """
Failure during test : {}
Domains : {}
""".format(len(failure), failure)
message = '\033[91m' + report_str + '\x1b[0m'
print(message)