https://github.com/lockenkoepflein/osint-google-dorks-automation
A Python-based OSINT automation tool for executing and harvesting results from Google Dork queries via Chrome. For educational and research purposes only.
https://github.com/lockenkoepflein/osint-google-dorks-automation
automation chrome-automation cyber-security google-dorks osint penetration-testing python selenium
Last synced: about 1 month ago
JSON representation
A Python-based OSINT automation tool for executing and harvesting results from Google Dork queries via Chrome. For educational and research purposes only.
- Host: GitHub
- URL: https://github.com/lockenkoepflein/osint-google-dorks-automation
- Owner: lockenkoepflein
- License: mit
- Created: 2025-05-14T16:27:24.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-14T16:37:45.000Z (about 1 year ago)
- Last Synced: 2025-06-19T02:38:17.635Z (12 months ago)
- Topics: automation, chrome-automation, cyber-security, google-dorks, osint, penetration-testing, python, selenium
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OSINT Google Dorks Automation Tool (with Chrome)
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**.
---
## Features
- 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).
---
## Requirements
- Python 3.x
- Google Chrome (must be installed locally)
- Virtual environment recommended
---
## Setup
1. Create a virtual environment:
```bash
python -m venv venv
venv\Scripts\activate # Windows
source venv/bin/activate # Mac/Linux
```
2. Install dependencies:
```bash
pip install -r requirements.txt
```
---
## Usage
1. Add your Dorks to `dorks.txt` (one Dork per line).
2. Start the tool:
```bash
python dorkscanner.py
```
3. A **visible Chrome window** will open, and the Dork search will be performed.
4. Found links will be:
- Displayed in the terminal.
- Saved in `results.txt`.
---
## Notes
- **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.