A small Python tool to semi-automatically execute Google Dorks and save the found links into a file.
The tool uses Chrome (via undetected-chromedriver) and performs the queries visibly in the browser.
- Executes Google Dork searches visibly in the Chrome browser.
- Automatically extracts all result links.
- Saves all results to
results.txt
. - Simulates human-like behavior (delays).
- Python 3.x
- Google Chrome (must be installed locally)
- Virtual environment recommended
- Create a virtual environment:
python -m venv venv
venv\Scripts\activate # Windows
source venv/bin/activate # Mac/Linux
- Install dependencies:
pip install -r requirements.txt
- Add your Dorks to
dorks.txt
(one Dork per line). - Start the tool:
python dorkscanner.py
- A visible Chrome window will open, and the Dork search will be performed.
- Found links will be:
- Displayed in the terminal.
- Saved in
results.txt
.
- The Chrome window remains open during the search.
- Seeing Dork search queries like
intitle:index of passwd
in the search bar is normal and expected. - This tool is intended for educational and research purposes only. Excessive scraping may violate Google's terms of service.