This should fix the logic for ip checking
This commit is contained in:
parent
245e98d8b8
commit
274538991b
39
HTTPy.py
39
HTTPy.py
@ -49,6 +49,8 @@ def compareSOA(inNameservers, inDomain, origSOA):
|
||||
|
||||
def checkIfIP(in1):
|
||||
count = 0
|
||||
if len(in1) != 4:
|
||||
return 0
|
||||
for dom in in1:
|
||||
if dom.isdigit():
|
||||
count += 1
|
||||
@ -147,25 +149,24 @@ while running == 1:
|
||||
if running == 0:
|
||||
pass
|
||||
else:
|
||||
if len(partDomain) == 4:
|
||||
if checkIfIP(partDomain):
|
||||
if checkIfIP(partDomain):
|
||||
print "========================================================"
|
||||
ipLookup(inInput)
|
||||
if pingOn == "P":
|
||||
print "========================================================"
|
||||
ipLookup(inInput)
|
||||
if pingOn == "P":
|
||||
print "========================================================"
|
||||
ipPing(inInput)
|
||||
else:
|
||||
if whoOn == "W":
|
||||
whois(inInput)
|
||||
|
||||
ipPing(inInput)
|
||||
else:
|
||||
if whoOn == "W":
|
||||
whois(inInput)
|
||||
|
||||
else:
|
||||
|
||||
#Condense dig calls
|
||||
dig(inInput, "A")
|
||||
dig(inInput, "MX")
|
||||
dig(inInput, "TXT")
|
||||
test = dig(inInput, "NS")
|
||||
dig(inInput, "SRV")
|
||||
soaRec = dig(inInput, "SOA")
|
||||
print compareSOA(test, inInput, soaRec)
|
||||
print '\n'
|
||||
#Condense dig calls
|
||||
dig(inInput, "A")
|
||||
dig(inInput, "MX")
|
||||
dig(inInput, "TXT")
|
||||
test = dig(inInput, "NS")
|
||||
dig(inInput, "SRV")
|
||||
soaRec = dig(inInput, "SOA")
|
||||
print compareSOA(test, inInput, soaRec)
|
||||
print '\n'
|
||||
Loading…
x
Reference in New Issue
Block a user