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.txtAlso ensure
xnldorkeris 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
argparseandsubprocess) tldextract(installed via requirements)xnldorkerin PATH
- All results are printed to the terminal.
- If
-o|--outputis provided, results are appended to the given file.