Hello guy’s in this article we are going to discuss about how to install and use D00r tool in our termux this tool will help you to directory brute-force attack.
What is D00r?
D00r is a Simple directory brute-force tool written with python.
Tested platform:
- Termux
- Linux
Requirements:
- Android 5.0 and above
- Termux application
- Git package
- Python package
How to install and use?
Step 1:
First you install git package this package will help you to clone the package.
Termux
pkg install git
Linux
sudo apt install git
Step 2:
Once you install git package type this below command this command will help you to install python package.
Termux
pkg install python && pkg install python2
Linux
sudo apt install python && sudo apt install python2
Step 3:
Now type this below command this command will help you to download tha D00r tool in our terminal.
git clone https://github.com/CYB3RMX/d00r.git
Step 4:
Now just type this below command this command will help you to open D00r folder in your terminal
cd d00r
Step 5:
Once you open this D00r folder type this below command this command will help you to install this tool requirements.
Termux
pip install -r requirements.txt
Linux
pip3 install -r requirements.txt
Step 6:
Now type this below command to run this tool in your terminal.
- –url: Specify target url. Example => http://192.168.1.1
- –wordlist: Select wordlist file. Example => /usr/share/wordlists/dirb/common.txt
- –status: Filter status codes. Example => 200 301 403
- –thread: Number of threads. Example => 100
- –install: Install d00r on your system.
NOTE:
Necessary python modules: tqdm and argparse
Post a Comment