From 8bbcbbad202b5a90f1b421a877ff35e1dbefa12b Mon Sep 17 00:00:00 2001 From: NotoriousRebel Date: Thu, 8 Aug 2019 00:35:21 -0400 Subject: [PATCH] Updated main to fix crtsh --- theHarvester/__main__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/theHarvester/__main__.py b/theHarvester/__main__.py index b3f5452e..9932fef3 100644 --- a/theHarvester/__main__.py +++ b/theHarvester/__main__.py @@ -433,6 +433,8 @@ def start(): print('\033[94m[*] Searching CRT.sh. \033[0m') search = crtsh.SearchCrtsh(word) search.process() + hosts = filter(search.get_data()) + all_hosts.extend(hosts) db = stash.stash_manager() db.store_all(word, all_hosts, 'host', 'CRTsh')