diff --git a/HTTPy.py b/HTTPy.py index 39eeba3..a276722 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -237,17 +237,20 @@ while running == 1: if whoOn == "W": whois(inInput) #Condense dig calls - aRec, aType = newdig(inInput, "A") - iterate(aRec, aType) - mxRec, mxType = newdig(inInput, "MX") - iterate(mxRec, mxType) - txtRec, txtType = newdig(inInput, "TXT") - iterate(txtRec, txtType) - nsRec, nsType = newdig(inInput, "NS") - iterate(nsRec, nsType) - srvRec, srvType = newdig(inInput, "SRV") - iterate(srvRec, srvType) - soaRec, soaType = newdig(inInput, "SOA") - iterate(soaRec, soaType) - print compareSOA(nsRec, inInput, soaRec) - print '\n' \ No newline at end of file + # aRec, aType = newdig(inInput, "A") + # iterate(aRec, aType) + # mxRec, mxType = newdig(inInput, "MX") + # iterate(mxRec, mxType) + # txtRec, txtType = newdig(inInput, "TXT") + # iterate(txtRec, txtType) + # nsRec, nsType = newdig(inInput, "NS") + # iterate(nsRec, nsType) + # srvRec, srvType = newdig(inInput, "SRV") + # iterate(srvRec, srvType) + # soaRec, soaType = newdig(inInput, "SOA") + # iterate(soaRec, soaType) + # print compareSOA(nsRec, inInput, soaRec) + # print '\n' + for sub in sub2check: + tmpDom = sub + "." + inDomain + print newdig(tmpDom, "A") \ No newline at end of file