Update dnsdumpster.py

Got rid of unused variables.
This commit is contained in:
Matt 2019-03-14 16:13:30 -04:00 committed by GitHub
parent 7b319da472
commit bb655f3b0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,8 +10,6 @@ def __init__(self, word):
self.results = ""
self.totalresults = ""
self.server = 'dnsdumpster.com'
self.quantity = '100'
self.counter = 0
def do_search(self):
try:
@ -42,4 +40,4 @@ def get_hostnames(self):
return rawres.hostnames()
def process(self):
self.do_search() # Only need to do it once.
self.do_search() # Only need to do it once.