DOMAIN-FINDER is a Python-based tool designed to help users find domain names based on country codes. This tool is simple to use and enables users to search for specific domains quickly through the terminal.
Before you install DOMAIN-FINDER, ensure that you have the following installed on your system:
- Python 3: Verify that Python 3.x is installed. You can check by running
python3 --version
in the terminal. - Git: Required to clone the repository. Check if it's installed by running
git --version
. - Pip: Python's package installer, needed to install dependencies. It usually comes with Python 3.x.
Run the following commands in your terminal to install the tool:
sudo apt-get install python3 git -y
sudo apt-get install python3-pip -y
pip install googlesearch-python
git clone https://github.com/hackinter/Dork-Master.git
cd Dork-Master
If you're using Termux, execute the following commands to install the tool:
pkg update -y
pkg upgrade -y
pkg install python git -y
pip install googlesearch-python
git clone https://github.com/hackinter/Dork-Master.git
cd Dork-Master
For quick installation, you can use this single command for Linux:
sudo apt-get update -y && sudo apt-get upgrade -y && sudo apt-get install python3 git -y && sudo apt-get install python3-pip -y && pip install googlesearch-python && git clone https://github.com/hackinter/Dork-Master.git && cd Dork-Master