-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
IF THE TOOL IS FAILING DUE TO VIRUSTOTAL... here is a quick fix #343
Comments
Thanks! |
cool |
worked for me once and again failed due to virus total |
I am a beginner and facing the same issue in kali; it's stopping after the Error. |
hi i solved the virus total error problem but the sublister is not showing any output after its scan all the requirements are done but it still not showing any output |
same here |
Yeah this tool just doesn't seem to work anymore. I recommend a tool called subfinder. Which can be found here: https://github.com/projectdiscovery/subfinder It requires golang to be installed. But I use it on the Kali image for WSL. Works on Mac and Linux too. |
You can skip Virustotal with a command like this : sublist3r -v -d tesla.com -t 10 -e "baidu,yahoo,google,bing,ask,netcraft,dnsdumpster,threatcrowd,ssl,passivedns" Where -d : domain name, -v : verbose the output (which tells from where it is getting the results), -t : the number of threads, -e : search engine list . |
I'm not getting any results either, I got the exact same output as @LoGan070raGnaR |
Without VirusTotal this tool became blind. @LoGan070raGnaR @cyberbarbie try https://github.com/chris408/virustotal-subdomain-scraper get VT standard free api here https://support.virustotal.com/hc/en-us/articles/115002100149-API |
tnx @yeti-code you just saved me a bunch of misery, can't believe nobody seems to read yr comment, it works even better too, spits out boatloads of subdomains, its nuts. |
sublist3r is shit. developer of this doesn't want to correct this code. he should delete this repo. anyone came waste there time to correct his mistake |
Seems like this tard happens in 2/7/2023, a year a half after this bug/topic opened, We need to push this fix somehow |
Guys / gals I switched to subfinder, you can find it here: https://github.com/projectdiscovery/subfinder It's a golang tool that is still being actively updated. It works similarily to sublister. If you are allergic to using it or another tool, sure. You can get VirusTotal API key and the tool will work. Or you can remove the code for it and it will work also. |
Also, I have the same problem. But i fix it. |
Sorry where can i find sublist3r.py so i can modify the code? |
|
As title says above, I shall deliver.
Step 1: Open the sublist3r.py in your favorite IDE.
Step 2: Remove this code-block:
`class Virustotal(enumratorBaseThreaded):
def init(self, domain, subdomains=None, q=None, silent=False, verbose=True):
subdomains = subdomains or []
base_url = 'https://www.virustotal.com/ui/domains/{domain}/subdomains'
self.engine_name = "Virustotal"
self.q = q
super(Virustotal, self).init(base_url, self.engine_name, domain, subdomains, q=q, silent=silent, verbose=verbose)
self.url = self.base_url.format(domain=self.domain)
return
Step 3: command + f in your IDE and search for the string "virus"
Any lines that you find which match the search string, delete them.
Step 4: command + s to save the file.
Step 5: Run and check that the tool now works.
python3 sublist3r.py -d google.com
Tool should now work!
The text was updated successfully, but these errors were encountered: