From ef486188ecddfcc7df27e54d423df0676065dc70 Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 31 May 2017 18:17:02 +1000 Subject: [PATCH] Found and noted bug --- HTTPy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/HTTPy.py b/HTTPy.py index 78efa8a..dc37bb8 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -34,6 +34,7 @@ def dig(inDomain, record): print "========================================================" #ADD REST OF DIGS test = dig.split("\n") print record, test[0] + print len(test) #fix up mutiple record types... def ipLookup(inDomain): ipLook = subprocess.check_output(["geoiplookup", inDomain]) @@ -56,7 +57,7 @@ getInput() if len(partDomain) == 4: ipLookup(inInput) else: - whois(inInput) + #whois(inInput) dig(inInput, "A") dig(inInput, "MX") dig(inInput, "TXT")