HOST3R

HOST3R is a python tool that is designed to enumerate subdomains of a specific domain to ban.


HOST3R

host3r

host3r is a python tool that is designed to enumerate subdomains of a specific domain to ban. Generate a search of subdomains and paste results to your /etc/hosts file. Generate a search of subdomains and save results to a text file.

Installation

git clone https://github.com/rbcafe/host3r

The recommended python version to use is 2.7.15 and 3.7.3.

Dependencies:

argparse : dnspython : requests

sudo pip install argparse dnspython requests

Usage

Short Form Long Form Description
-h –help show the help message and exit
-d –domain Domain name to enumerate subdomains of
-o –output Save the results to a text file
-v –verbose Enable the verbosity
-e –exception Enable the exceptions notices
-6 –ipv6 Save subdomains with ::1 (ipv6)

Examples

  • To list all the basic options :

python host3r.py -h

  • To enumerate subdomains of a specific domain to ban :

python host3r.py -d example.com

  • To enumerate subdomains of a specific domain to ban and show verbosity :

python host3r.py -d example.com -v

  • To enumerate subdomains of a specific domain to ban, show verbosity and export :

python host3r.py -d example.com -v -o /usr/local/ban.txt

  • To enumerate subdomains of a specific domain to ban, show verbosity, export and add the ::1 (ipv6) :

python host3r.py -d example.com -v -o /usr/local/ban.txt -6

  • To enumerate subdomains of a specific domain to ban, show verbosity and exceptions, export and add the ::1 (ipv6) :

python host3r.py -d example.com -v -e -o /usr/local/ban.txt -6

License

host3r is licensed under the GNU GPL license. LICENSE .

Credits

  • Sublist3r - host3r is based on the sublist3r script.

Version

Current version is 0.1

More information

http://www.rbcafe.com/software/host3r/