try: conn.request("GET","/",headers = {"host": appdomain})
r = conn.getresponse()
getcontent = r.read(15)
print(getcontent)
finally:
if getcontent == "<!DOCTYPE html ":
print ip + " [OK]"
else:
print ip + " [error]"
def getip(domain):
try:
a = dns.resolver.query(domain, 'A')
except Exception as E:
print "dns resolve error"+str(E)
return 0
for i in a.response.answer:
for j in i.items:
iplist.append(j.address)
print iplist
return True
if name == "main":
if getip(appdomain) and len(iplist) > 0:
for ip in iplist:
checkip(ip)
else:
print "dns resolve error!"