From 4e6a8746d01b2048f8bf28aa9e75e6c8390f8e68 Mon Sep 17 00:00:00 2001 From: NotoriousRebel Date: Sun, 5 Apr 2020 23:55:47 -0400 Subject: [PATCH] removed debug statement. --- theHarvester/discovery/hackertarget.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/theHarvester/discovery/hackertarget.py b/theHarvester/discovery/hackertarget.py index c5269d34..52c312f4 100644 --- a/theHarvester/discovery/hackertarget.py +++ b/theHarvester/discovery/hackertarget.py @@ -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() -