From 2e9ece3233fd6ace3ac0a6c05cc4f3bc32179f6f Mon Sep 17 00:00:00 2001 From: Siddharth Dushantha Date: Sat, 20 Jun 2020 21:58:56 +0200 Subject: [PATCH] made the outputted urls uncolored After the restructring, the outputted urls became green by accident. This commit makes them "normal" again --- sherlock/notify.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sherlock/notify.py b/sherlock/notify.py index 51e974c..c232a8c 100644 --- a/sherlock/notify.py +++ b/sherlock/notify.py @@ -193,7 +193,9 @@ class QueryNotifyPrint(QueryNotify): Fore.WHITE + "]" + response_time_text + Fore.GREEN + - f" {self.result.site_name}: {self.result.site_url_user}")) + f" {self.result.site_name}: " + + Style.RESET_ALL + + f"{self.result.site_url_user}")) else: print(f"[+]{response_time_text} {self.result.site_name}: {self.result.site_url_user}") elif result.status == QueryStatus.AVAILABLE: