Hi friends, today we're going to talk about a really easy-to-use yet effective tool for gathering the site's subdomains. I'll walk you through setting up Sublist3r, a quick tool for enumerating subdomains.
About Sublist3r
A Python tool called Sublist3r is intended to list website subdomains by utilizing multiple OSINT sources. It facilitates the collection and gathering of subdomains for the target domain by penetration testers and bug hunters. Many search engines, including Google, Yahoo, Bing, Baidu, and Ask, are currently supported by Sublist3r. In the future, more search engines might be added. Additionally, Sublist3r uses DNSdumpster, Virustotal, ThreatCrowd, Netcraft, and PassiveDNS to compile subdomains.
Sublist3r and subbrute were combined to boost the likelihood of employing bruteforce and a better wordlist to discover more subdomains. TheRook, the creator of subbrute, deserves all the recognition.Source : –https://github.com/aboul3la/Sublist3r
Installing Sublist3r:-
Sublist3r is dependent upon the Python modules for requests, dnspython, and argparse.
The requirements file can be used to install these dependencies:
The requirements file can be used to install these dependencies:
- Installation on Windows:
c:\sublist3r\pip install -r requirements.txt
- Installation on Linux
sudo pip install -r requirements.txtYou can manually install these modules by typing the following commands:-For Linux :-
sudo pip install requests sudo pip install dnspython sudo pip install argparseFor Windows :-
pip install requests pip install dnspython pip install argparse
Usage
| Short Form | Long Form | Description |
|---|---|---|
| -d | –domain | Domain name to enumerate subdomains of |
| -b | –bruteforce | Enable the subbrute bruteforce module |
| -p | –ports | Scan the found subdomains against specific tcp ports |
| -v | –verbose | Enable the verbose mode and display results in realtime |
| -t | –threads | Number of threads to use for subbrute bruteforce |
| -e | –engines | Specify a comma-separated list of search engines |
| -o | –output | Save the results to text file |
| -h | –help | show the help message and exit |
Post a Comment
0Comments