diff --git a/HTTPy.py b/HTTPy.py index 3f76729..a28e5de 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -37,7 +37,13 @@ def dig(inDomain, record): def ipLookup(inDomain): ipLook = subprocess.check_output(["geoiplookup", inDomain]) - host = subprocess.check_call(["host", inDomain]) #Do exit status check... + try: + host = subprocess.check_output(["host", inDomain]) #Do exit status check... + returncode = 0 + except CalledProcessError as e: + output = o.output + returncode = e.returncode + print ipLook, "PTR: ", host def getInput():