Содержание
- Virustotal and Google Error #341
- Comments
- Footer
- [!] Error: Virustotal probably now is blocking our requests about sublist3r HOT 2 OPEN
- Comments (2)
- Related Issues (20)
- Recommend Projects
- React
- Vue.js
- Typescript
- TensorFlow
- Django
- Laravel
- Recommend Topics
- javascript
- server
- Machine learning
- Visualization
- Recommend Org
- Microsoft
- [!] Error: Virustotal probably now is blocking our requests #194
- Comments
- Footer
- Fix for VirusTotal error #285
- Are you sure you want to change the base?
- Fix for VirusTotal error #285
- Conversation
- [-]Error: Virustotal probably now is blocking our requests about cloudmare HOT 2 CLOSED
- Comments (2)
- Related Issues (20)
- Recommend Projects
- React
- Vue.js
- Typescript
- TensorFlow
- Django
- Laravel
- Recommend Topics
- javascript
- server
- Machine learning
- Visualization
- Recommend Org
- Microsoft
Virustotal and Google Error #341
[-] Enumerating subdomains now for taetowierer-akademie.de
[-] 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 .
The text was updated successfully, but these errors were encountered:
I found one solution, to solve the Virustotal issue, you can comment the code which is related to virus total and also remove where its use in the script. It will work.
@ajinkya-git-hub what is the solution, please share i am kinda stuck in this method from 3 days i used everything like reinstall and export API KEY still not working
This has been the case since April or something. Row 940 in sublist3r.py:
Change:
NetcraftEnum, DNSdumpster, Virustotal, ThreatCrowd,
To:
NetcraftEnum, DNSdumpster, ThreatCrowd,
© 2023 GitHub, Inc.
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.
Источник
[!] Error: Virustotal probably now is blocking our requests about sublist3r HOT 2 OPEN
Looks like Virustotal is now requiring a captcha before lookup.
RoninNakomoto commented on January 16, 2023
no it now requires an API key for access that you can get freely get by registering on their website.
My fork is a working copy of sublist3r under python3 (if you install it properly), that fixes the virustotal errors , some other errors, and has much faster bruteforcing capabilities. Grab a copy of you’re interested @rockthrower69 @CypherAgent
- Virus total bullshit HOT 2
- Not working for some domains HOT 3
- Https connection pool HOT 1
- How to scan localhost servers? HOT 1
- Error when running basic scan
- RuntimeError While Using Sublist3r module in custom script HOT 1
- not showing subdomain when i search HOT 5
- help HOT 1
- Virustotal (still a problem) HOT 4
- HTTPSConnectionPool(host=’dnsdumpster.com’, port=443):
- Manual for Sublist3r
- Virustotal and Google Error HOT 3
- Please add «DNS» somewhere in this project’s About
- IF THE TOOL IS FAILING DUE TO VIRUSTOTAL. here is a quick fix HOT 7
- To fix sublist3r issue HOT 1
- [!] Error: Virustotal probably now is blocking our requests HOT 1
- ImportError: cannot import name ‘Mapping’ from ‘collections’
- Virustotal is blocking requests HOT 4
- Google probably now is blocking our requests
- Sublist3r subdomains enumeration problem HOT 1
Recommend Projects
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
TensorFlow
An Open Source Machine Learning Framework for Everyone
Django
The Web framework for perfectionists with deadlines.
Laravel
A PHP framework for web artisans
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
Recommend Topics
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
Some thing interesting about web. New door for the world.
server
A server is a program made to process requests and deliver data to clients.
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
Visualization
Some thing interesting about visualization, use data art
Some thing interesting about game, make everyone happy.
Recommend Org
We are working to build community through open source technology. NB: members must have two-factor auth.
Microsoft
Open source projects and samples from Microsoft.
Источник
[!] Error: Virustotal probably now is blocking our requests #194
[!] Error: Virustotal probably now is blocking our requests
The text was updated successfully, but these errors were encountered:
This error isn’t new, they just need to rewrite the send_req() function.
The problem is not with send_req, it seems virus total changed there url from
https://www.virustotal.com/ui/domains//subdomains this one leads to this error
https://www.virustotal.com/gui/domain/<>/details this one works
We faced such a problem when we dealt with this tool at Nmmapper
We investigate and the problem is with the url.
Though I would suggest they offer an option of providing api for virustotal
Same error here. The first two times worked perfectly but some days after the same error appears: «[!] Error: Virustotal probably now is blocking our requests». Any solution for this problem?
Same error here. The first two times worked perfectly but some days after the same error appears: «[!] Error: Virustotal probably now is blocking our requests». Any solution for this problem?
I submitted a quick fix for this issue via #285. The pull request adds a check for a VT_APIKEY environment variable to use for the VirusTotal request. If the API key is missing, it prints an error message and skips the VirusTotal engine.
@crahan How did you import api key inside the sublist3r
I use the below code snippet in my .zshrc (or .bashrc) configuration file, which will load the API key from a text file (if it exists) whenever I open a shell. Alternatively you can just run export VT_APIKEY=yourapikey manually before using Sublist3r.
@crahan sorry for my dumb request. I am new to this Linux platform. I still couldn’t fix my issue. Can you give me step-by-step instructions. Once again please accept my apology .
You’ll need to first install a copy with my fixes before you’ll be able to use the API key solution. Without a patched (and working) copy of Sublist3r it might be a little tricky to set up.
@crahan I did change the code as you said. But I get «Error: VirusTotal API key environment variable not found. Skipping» .
How do I export the API key inside the sublist3r ?? Thanks for responding by the way
No problem. Right before you run the Sublist3r command run the following:
export VT_APIKEY=yourapikey (replace ‘yourapikey’ with the actual VirusTotal API key)
After that, in the same terminal window, run the Sublist3r command. That should be all that’s required.
Based on that error, I don’t think it’s running the patched version of the code.
@crahan Nah. My bad. It’s is working again. Thanks for your help brother. I won’t forget your kindness .
Awesome, happy to hear all is well. Keep in mind though that free VirusTotal accounts have a cap on the number of API requests per minute (I think it’s 4, last I checked). So you still might see errors if you query too quickly with Sublist3r.
Based on that error, I don’t think it’s running the patched version of the code.
How do you patch?
check my fork. its a fixed bug-free working copy (only runs under python3 if properly installed), also has much faster bruteforcing capabilities using aiodnsbrute (instead of subbrute).
@crahan i used ur PR code as a basis to fix virustotal access problem but also added ability to enter key during runtime and it now catches error codes and messages as returned by VT API.
[!] Error: Virustotal probably now is blocking our requests
after input av code
For those who still want to use this version, I have added a minimal fix in #327 that doesn’t require an API key. This should restore Virustotal checks to working as normal.
No problem. Right before you run the Sublist3r command run the following:
export VT_APIKEY=yourapikey (replace ‘yourapikey’ with the actual VirusTotal API key)
After that, in the same terminal window, run the Sublist3r command. That should be all that’s required.
what is the actual VirusTotal API key?
No problem. Right before you run the Sublist3r command run the following:
export VT_APIKEY=yourapikey (replace ‘yourapikey’ with the actual VirusTotal API key)
After that, in the same terminal window, run the Sublist3r command. That should be all that’s required.
it doesn’t work, some help?
terminal window, run the Sublist3r command. That should be all that’s required.
Sorry I did that but I am still getting the error. help please.
Hey, worked fine for me.
First of all make sure you update your sublis3r file (/usr/lib/python3/dist-packages/sublist3r.py) with the fix added by crahan > Files changed
Then export your VT_APIKEY with the command export VT_APIKEY=yourAPIkey before starting sublist3r.
To have your personal Virustotal API Key, you can follow this documentation
NOT WORKING FOR ME TOO =´[
NOT WORKING FOR ME TOO =´[
I hope I am not replying late. it worked for me. follow @adves34 instructions. if its not still working please send me a message. I will walk through it with you. thanks
Exporting the API didn’t worked for me as well
© 2023 GitHub, Inc.
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.
Источник
Fix for VirusTotal error #285
Are you sure you want to change the base?
Fix for VirusTotal error #285
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This PR fixes the outdated VirusTotal API endpoint which has been reported in #194. It uses the value specified in the VT_APIKEY environment variable. If the the API key is missing, it prints an error message and skips the VirusTotal engine.
I did fix accordingly to yours
And I also changed VT_APIKEY into my API key
But the error keep showing
[!] Error: VirusTotal API key environment variable not found. Skipping
How to fix that?
@GiangTieuDau try the following on lines 690 and 691.
And check the value of the headers you’re sending and the response JSON that gets returned. Either the API key is not being sent, the API is not correct and causes an error, or some other error is happening. Printing either of those values should get you more details.
I did fix accordingly to yours
And I also changed VT_APIKEY into my API key
But the error keep showing
[!] Error: VirusTotal API key environment variable not found. Skipping
How to fix that?
@GiangTieuDau @crahan
export the API KEY And run the tool without the sudo. It will solve ur problem.
you are running the tool as sudo while you’re exporting the API_KEY into the current user’s environment.
[!] Error: Virustotal probably now is blocking our requests
😑 😑 😑 😑 😑 . Someone help me out Thank You
Источник
[-]Error: Virustotal probably now is blocking our requests about cloudmare HOT 2 CLOSED
yeah they changed the ip you need now a virustotal api key i am probaly going to implement it!
PatchByte commented on January 16, 2023
hey mate took a look at this: #31
- Module is required HOT 2
- Feature Addition? Suggestion
- list indices must be integers or slices, not str
- Fix Some Code
- MrH0wl/Cloudmare#usage HOT 2
- Cloudmare $ python cloudmare.py target.site —subdomain hatası
- AttributeError: ‘Namespace’ object has no attribute ‘searchG’ HOT 1
- ImportError: No module named pip._internal HOT 3
- TypeError: netcat() missing 2 required positional arguments: ‘randomAgent’ and ‘header’ HOT 1
- Does not work for https://fastpeoplesearch.com/ HOT 6
- Ability to skip obvious domains HOT 2
- Idea -> sub cache HOT 1
- Does not work for https://www.truepeoplesearch.com/ HOT 1
- How to use it? HOT 9
- Error HOT 3
- Error — Traceback — Max retries exceeded with url HOT 1
- subbruter command problem HOT 4
- https://github.com/MrH0wl/Cloudmare.git
- help me please
Recommend Projects
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
TensorFlow
An Open Source Machine Learning Framework for Everyone
Django
The Web framework for perfectionists with deadlines.
Laravel
A PHP framework for web artisans
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
Recommend Topics
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
Some thing interesting about web. New door for the world.
server
A server is a program made to process requests and deliver data to clients.
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
Visualization
Some thing interesting about visualization, use data art
Some thing interesting about game, make everyone happy.
Recommend Org
We are working to build community through open source technology. NB: members must have two-factor auth.
Microsoft
Open source projects and samples from Microsoft.
Источник
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.
[!] Error: Virustotal probably now is blocking our requests
[!] Error: Virustotal probably now is blocking our requests
This error isn’t new, they just need to rewrite the send_req() function.
The problem is not with send_req, it seems virus total changed there url from
https://www.virustotal.com/ui/domains/{domain}/subdomains
this one leads to this error
error |
-- | --
code | "BadRequestError"
message | "Don't be evil"
https://www.virustotal.com/gui/domain/{{dommain}}/details
this one works
We faced such a problem when we dealt with this tool at Nmmapper
We investigate and the problem is with the url.
Though I would suggest they offer an option of providing api for virustotal
Same error here. The first two times worked perfectly but some days after the same error appears: «[!] Error: Virustotal probably now is blocking our requests». Any solution for this problem?
Same error here. The first two times worked perfectly but some days after the same error appears: «[!] Error: Virustotal probably now is blocking our requests». Any solution for this problem?
Any solution?
I submitted a quick fix for this issue via #285. The pull request adds a check for a VT_APIKEY
environment variable to use for the VirusTotal request. If the API key is missing, it prints an error message and skips the VirusTotal engine.
@crahan How did you import api key inside the sublist3r
I use the below code snippet in my .zshrc (or .bashrc) configuration file, which will load the API key from a text file (if it exists) whenever I open a shell. Alternatively you can just run export VT_APIKEY=yourapikey
manually before using Sublist3r.
# VirusTotal
if [[ -f "${HOME}/.api_tokens/vt_apikey" ]]; then
export VT_APIKEY="$(cat ${HOME}/.api_tokens/vt_apikey 2> /dev/null)"
fi
@crahan sorry for my dumb request…I am new to this Linux platform… I still couldn’t fix my issue…Can you give me step-by-step instructions… Once again please accept my apology !!!
You’ll need to first install a copy with my fixes before you’ll be able to use the API key solution. Without a patched (and working) copy of Sublist3r it might be a little tricky to set up.
@crahan I did change the code as you said…But I get «Error: VirusTotal API key environment variable not found. Skipping» !!!
How do I export the API key inside the sublist3r ?? Thanks for responding by the way
No problem. Right before you run the Sublist3r command run the following:
export VT_APIKEY=yourapikey
(replace ‘yourapikey’ with the actual VirusTotal API key)
After that, in the same terminal window, run the Sublist3r command. That should be all that’s required.
Based on that error, I don’t think it’s running the patched version of the code.
@crahan Nah….My bad………It’s is working again…..Thanks for your help brother……I won’t forget your kindness !!!
Awesome, happy to hear all is well. Keep in mind though that free VirusTotal accounts have a cap on the number of API requests per minute (I think it’s 4, last I checked). So you still might see errors if you query too quickly with Sublist3r.
<script>alert(1)</script>
Based on that error, I don’t think it’s running the patched version of the code.
How do you patch?
[!] Error: Virustotal probably now is blocking our requests
after input av code
For those who still want to use this version, I have added a minimal fix in #327 that doesn’t require an API key. This should restore Virustotal checks to working as normal.
No problem. Right before you run the Sublist3r command run the following:
export VT_APIKEY=yourapikey
(replace ‘yourapikey’ with the actual VirusTotal API key)After that, in the same terminal window, run the Sublist3r command. That should be all that’s required.
what is the actual VirusTotal API key?
Python tool designed to enumerate subdomains of websites using OSINT.
Installation
git clone https://github.com/aboul3la/Sublist3r.git
python3 -m pip install -r requirements.txt
Usage
usage: sublist3r.py [-h] -d DOMAIN [-b [BRUTEFORCE]] [-p PORTS] [-v [VERBOSE]]
[-t THREADS] [-e ENGINES] [-o OUTPUT] [-n]
Flags
OPTIONS:
-h, --help show this help message and exit
-d DOMAIN, --domain DOMAIN
Domain name to enumerate it's subdomains
-b [BRUTEFORCE], --bruteforce [BRUTEFORCE]
Enable the subbrute bruteforce module
-p PORTS, --ports PORTS
Scan the found subdomains against specified tcp ports
-v [VERBOSE], --verbose [VERBOSE]
Enable Verbosity and display results in realtime
-t THREADS, --threads THREADS
Number of threads to use for subbrute bruteforce
-e ENGINES, --engines ENGINES
Specify a comma-separated list of search engines
-o OUTPUT, --output OUTPUT
Save the results to text file
-n, --no-color Output without color
Example: python ./sublist3r.py -d google.com
Examples
$ ./sublist3r.py -d example.com
____ _ _ _ _ _____
/ ___| _ _| |__ | (_)___| |_|___ / _ __
___ | | | | '_ | | / __| __| |_ | '__|
___) | |_| | |_) | | __ |_ ___) | |
|____/ __,_|_.__/|_|_|___/__|____/|_|
# Coded By Ahmed Aboul-Ela - @aboul3la
[-] Enumerating subdomains now for example.com
[-] 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
[-] Total Unique Subdomains Found: 16267
www.example.com
*.example.com
servers2.0.example.com
servers21.0.example.com
sabelfeld.00.example.com
testovyy1.yashchik.00.example.com
tread.000001.example.com
001.example.com
007.example.com
nadyia.00745.example.com
lesha.ermakov.01.example.com
[...REDACTED...]
URL List
- Github.com — Sublist3r