Skip to content

Commit

Permalink
v0.98
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Jun 12, 2017
1 parent 199336b commit 9f5a68e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/inforfinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ def execByMultiDomain(self,args,pos):
ip = ds.getDomainAEntry(args[pos + 1])
self.printCabeceraInfo(ip)
dom = ds.SearchDomains(ip)
#self.execCmsAndSinfo(dom)
print dom
if self.config['optionals']['-cms'] == 0 and self.config['optionals']['-servinfo'] == 0:
for d in dom:
print d
Expand All @@ -119,7 +117,6 @@ def execByIpRange(self,args,pos):
self.printCabeceraInfo( str( ip + " - " + ip2 ))
dom = ds.SearchDomainsOnIpRange(ip,ip2)
if self.config['optionals']['-cms'] == 0 and self.config['optionals']['-servinfo'] == 0:
print dom
for ip in dom:
self.printCabeceraInfo(ip)
for d in dom[ip]:
Expand Down Expand Up @@ -204,4 +201,4 @@ def __init__(self):

if __name__ == "__main__":
ifinder = Inforfinder()
ifinder.howToDo(sys.argv)
ifinder.howToDo(sys.argv)

0 comments on commit 9f5a68e

Please sign in to comment.