Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Virustotal is blocking requests #348

Open
gho5texe opened this issue Nov 24, 2022 · 11 comments
Open

Virustotal is blocking requests #348

gho5texe opened this issue Nov 24, 2022 · 11 comments

Comments

@gho5texe
Copy link

it is showing Virustotal is blocking the requests
I am using sublist3r directly from shell what should i do it

@pillowpants95
Copy link

I am having the same issue

@0xPrial
Copy link

0xPrial commented Nov 29, 2022

Getting same error
2022-11-29_20-08

@rat-c
Copy link

rat-c commented Nov 30, 2022

This has been the case since April or something. Row 940 in sublist3r.py:

Change:
NetcraftEnum, DNSdumpster, Virustotal, ThreatCrowd,
To:
NetcraftEnum, DNSdumpster, ThreatCrowd,

@0neXo0r
Copy link

0neXo0r commented Dec 23, 2022

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()

@WANH3DA108
Copy link

Anyone knows how to fix this issue?

@WANH3DA108
Copy link

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.

@nikdjukic
Copy link

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()

image

@AndrejGorodnij
Copy link

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 ...


@FancybearIN
Copy link

error still same

@ayush001-mishra
Copy link

still showing same error anyone know how to fix this

@KruZira
Copy link

KruZira commented Dec 14, 2023

still showing same error anyone know how to fix this

use proxies

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests