A simple wrapper around xnldorker
that automates the execution of categorized Google dorks against a target domain. It prints the results and optionally saves them to a file.
git clone https://github.com/six2dez/dorks_hunter
cd dorks_hunter
pip3 install -r requirements.txt
Also ensure
xnldorker
is installed and available in your$PATH
.
python3 dorks_hunter.py -d domain.com -o output.txt
-d
/--domain
: Target domain to scan (required)-o
/--output
: File to append the results (optional)
- Python 3.8+ (stdlib provides
argparse
andsubprocess
) tldextract
(installed via requirements)xnldorker
in PATH
- All results are printed to the terminal.
- If
-o|--output
is provided, results are appended to the given file.