- Notifications
You must be signed in to change notification settings - Fork7
CYB3RMX/d00r
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Simple directory brute-force tool written with python.
- Usage before install:
python3 d00r.py --url [url] --wordlist [wordlist_file] --status 2xx 3xx --thread 100
- Usage after install:
d00r --url [url] --wordlist [wordlist_file] --status 2xx 3xx --thread 100
Necessary python modules:tqdm
andargparse
Installation of python modules:pip3 install -r requirements.txt
- --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.
- 06/09/2020: Added thread support.