diff --git a/HTTPy.py b/HTTPy.py index 5b3a490..207d344 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -251,9 +251,13 @@ while running == 1: # soaRec, soaType = newdig(inInput, "SOA") # iterate(soaRec, soaType) # print compareSOA(nsRec, inInput, soaRec) - # print '\n' for sub in sub2check: if sub != "": tmpDom = sub + "." + inInput - subRec, subType, test = newdig(tmpDom, "A", sub) - iterate(test, subType) \ No newline at end of file + subRec, subType, subDomain = newdig(tmpDom, "A", sub) + iterate(subRec, subDomain) + for rec in rec2check: + if rec != "": + dnsRec, dnsType = newdig(inInput, rec) + iterate(dnsRec, dnsType) + print '\n' \ No newline at end of file