From 03380679147ff9411aff759dcff1ca8bc065ff7a Mon Sep 17 00:00:00 2001 From: Dewalt <> Date: Tue, 14 Feb 2023 07:28:59 -0600 Subject: [PATCH] Update Tue Feb 14 07:28:59 AM CST 2023 --- patch/sublist3r_remove_virustotal.patch | 29 ------------------------- 1 file changed, 29 deletions(-) delete mode 100644 patch/sublist3r_remove_virustotal.patch diff --git a/patch/sublist3r_remove_virustotal.patch b/patch/sublist3r_remove_virustotal.patch deleted file mode 100644 index 11c3d5c..0000000 --- a/patch/sublist3r_remove_virustotal.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- sublist3r.py 2023-02-14 06:40:49.062595544 -0500 -+++ sublist3r.py 2023-02-14 06:30:54.705545453 -0500 -@@ -685,7 +685,7 @@ - # Virustotal requires specific headers to bypass the bot detection: - self.headers["X-Tool"] = "vt-ui-main" - self.headers["X-VT-Anti-Abuse-Header"] = "hm" # as of 1/20/2022, the content of this header doesn't matter, just its presence -- self.headers["Accept-Ianguage"] = self.headers["Accept-Language"] # this header being present is required to prevent a captcha -+ self.headers["Accept-Language"] = self.headers["Accept-Language"] # this header being present is required to prevent a captcha - - return - -@@ -925,7 +925,7 @@ - 'ask': AskEnum, - 'netcraft': NetcraftEnum, - 'dnsdumpster': DNSdumpster, -- 'virustotal': Virustotal, -+# 'virustotal': Virustotal, - 'threatcrowd': ThreatCrowd, - 'ssl': CrtSearch, - 'passivedns': PassiveDNS -@@ -936,7 +936,7 @@ - if engines is None: - chosenEnums = [ - BaiduEnum, YahooEnum, GoogleEnum, BingEnum, AskEnum, -- NetcraftEnum, DNSdumpster, Virustotal, ThreatCrowd, -+ NetcraftEnum, DNSdumpster, ThreatCrowd, - CrtSearch, PassiveDNS - ] - else: