From 5fceb14291bb47908be413ec14f05f25561d864b Mon Sep 17 00:00:00 2001 From: Cam Barts Date: Fri, 11 Oct 2019 15:32:03 -0400 Subject: [PATCH] Implementeded -b all --- theHarvester/__main__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/theHarvester/__main__.py b/theHarvester/__main__.py index fdde6470..22cfa0e6 100644 --- a/theHarvester/__main__.py +++ b/theHarvester/__main__.py @@ -68,7 +68,10 @@ def start(): word = args.domain # type: str if args.source is not None: - engines = sorted(set(map(str.strip, args.source.split(',')))) + if args.source.lower() != "all": + engines = sorted(set(map(str.strip, args.source.split(',')))) + else: + engines = Core.get_supportedengines() # Iterate through search engines in order if set(engines).issubset(Core.get_supportedengines()): print(f'\033[94m[*] Target: {word} \n \033[0m')