From fb969d44bc315448481644d464d2a45fc52d39f7 Mon Sep 17 00:00:00 2001 From: brwook Date: Thu, 23 Feb 2023 17:19:30 +0900 Subject: [PATCH] fix import error in virtual host option --- theHarvester/__main__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/theHarvester/__main__.py b/theHarvester/__main__.py index 0c5bd25e..312797fe 100644 --- a/theHarvester/__main__.py +++ b/theHarvester/__main__.py @@ -661,6 +661,7 @@ async def handler(lst): print('\n[*] Virtual hosts:') print('------------------') for data in host_ip: + from theHarvester.discovery import bingsearch basic_search = bingsearch.SearchBing(data, limit, start) await basic_search.process_vhost() results = await basic_search.get_allhostnames()