removed debug statement.

This commit is contained in:
NotoriousRebel 2020-04-05 23:55:47 -04:00
parent 4ea5211574
commit 4e6a8746d0

View file

@ -5,7 +5,6 @@ class SearchHackerTarget:
"""
Class uses the HackerTarget api to gather subdomains and ips
"""
def __init__(self, word):
self.word = word
self.total_results = ""
@ -19,7 +18,6 @@ async def do_search(self):
responses = await AsyncFetcher.fetch_all(urls, headers=headers, proxy=self.proxy)
for response in responses:
self.total_results += response.replace(",", ":")
print('Finished getting results')
async def process(self, proxy=False):
self.proxy = proxy
@ -27,4 +25,3 @@ async def process(self, proxy=False):
async def get_hostnames(self):
return self.total_results.splitlines()