Open gho5texe opened 2 years ago
I am having the same issue
Getting same error
This has been the case since April or something. Row 940 in sublist3r.py:
Change:
NetcraftEnum, DNSdumpster, Virustotal, ThreatCrowd,
To:
NetcraftEnum, DNSdumpster, ThreatCrowd,
change User-Agent
class enumratorBase(object):
def init(self, base_url, engine_name, domain, subdomains=None, silent=False, verbose=True):
subdomains = subdomains or []
self.domain = urlparse.urlparse(domain).netloc
self.session = requests.Session()
self.subdomains = []
self.timeout = 25
self.base_url = base_url
self.engine_name = engine_name
self.silent = silent
self.verbose = verbose
self.headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; rv:102.0) Gecko/20100101 Firefox/102.0',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,/;q=0.8',
'Accept-Language': 'en-US,en;q=0.8',
'Accept-Encoding': 'gzip',
}
self.print_banner()
Anyone knows how to fix this issue?
This has been the case since April or something. Row 940 in sublist3r.py:
Change:
NetcraftEnum, DNSdumpster, Virustotal, ThreatCrowd,
To:NetcraftEnum, DNSdumpster, ThreatCrowd,
this doesnt fix the issue just makes it so you cant see the error.
Similar what 0x43f said: Change to:
class enumratorBase(object):
def __init__(self, base_url, engine_name, domain, subdomains=None, silent=False, verbose=True):
subdomains = subdomains or []
self.domain = urlparse.urlparse(domain).netloc
self.session = requests.Session()
self.subdomains = []
self.timeout = 25
self.base_url = base_url
self.engine_name = engine_name
self.silent = silent
self.verbose = verbose
self.headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; rv:102.0) Gecko/20100101 Firefox/102.0',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,/;q=0.8',
'Accept-Language': 'en-US,en;q=0.8',
'Accept-Encoding': 'gzip',
}
self.print_banner()
It doesn't fix the issue, here is the output:
[-] Searching now in Baidu..
[-] Searching now in Yahoo..
[-] Searching now in Google..
[-] Searching now in Bing..
[-] Searching now in Ask..
[-] Searching now in Netcraft..
[-] Searching now in DNSdumpster..
[-] Searching now in Virustotal..
[-] Searching now in ThreatCrowd..
[-] Searching now in SSL Certificates..
[-] Searching now in PassiveDNS..
[!] Error: Virustotal probably now is blocking our requests
[!] Error: Google probably now is blocking our requests
[~] Finished now the Google Enumeration ...
error still same
still showing same error anyone know how to fix this
still showing same error anyone know how to fix this
use proxies
it is showing Virustotal is blocking the requests I am using sublist3r directly from shell what should i do it