An open API service indexing awesome lists of open source software.

https://github.com/xPloits3c/DorkEye

Automated Google Dorking Tool. Generates and runs advanced search queries for exposed files. It also tests SQLi, Analyzes and extracts metadata
https://github.com/xPloits3c/DorkEye

awesome cybersecurity dork dorking-list duckduckgo duckduckgo-dork duckduckgo-search google-dork google-dorks hacker hacking osint osint-tool python3 sql-injection sql-server sqlite vulnerabilities xss-injection

Last synced: 3 days ago
JSON representation

Automated Google Dorking Tool. Generates and runs advanced search queries for exposed files. It also tests SQLi, Analyzes and extracts metadata

Awesome Lists containing this project

README

          


image

---

```json
" πŸ¦… DorkEye | OSINT Dorking Tool "
> I don't hack systems, i expose their secrets <
```

![Python](https://img.shields.io/badge/Python-3.9%2B-3670A0?style=flat-square&logo=python&logoColor=ffdd54)
![License](https://img.shields.io/badge/License-MIT-green?style=flat-square)
![Status](https://img.shields.io/badge/Status-Stable-brightgreen?style=flat-square)
![Search](https://img.shields.io/badge/Search-DuckDuckGo-FF6600?style=flat-square&logo=duckduckgo&logoColor=white)
![Version](https://img.shields.io/badge/Version-4.8-brightgreen?style=flat-square)

![Repo views](https://komarev.com/ghpvc/?username=xPloits3c&label=DorkEye%20views&color=blue)
![Stars](https://img.shields.io/github/stars/xPloits3c/DorkEye?style=flat-square&logo=github&label=Stars&color=yellow)
![Forks](https://img.shields.io/github/forks/xPloits3c/DorkEye?style=flat-square&logo=github&label=Forks&color=lightgrey)
![Issues](https://img.shields.io/github/issues/xPloits3c/DorkEye?style=flat-square&logo=github&label=Issues&color=brightgreen)
![Last Commit](https://img.shields.io/github/last-commit/xPloits3c/DorkEye?style=flat-square&logo=github&label=Last+Commit&color=informational)

[![Telegram](https://img.shields.io/badge/Join-Telegram-26A5E4?style=flat-square&logo=telegram&logoColor=white)](#)

![image](https://github.com/user-attachments/assets/c52b3326-6224-4fd5-9d41-d9f22e887b7a)

---

## What is DorkEye
**DorkEye** is an advanced automated dorking and OSINT recon tool that leverages DuckDuckGo to discover exposed web resources through intelligent search queries.
- It combines a powerful dork generator, a full SQL injection detection engine, a 11-step autonomous analysis pipeline, and an adaptive recursive crawler β€” all without requiring any external AI or cloud services.

- It can identify indexed directories, sensitive files, admin panels, databases, backups, configuration files, credentials, PII data, subdomains, and technology fingerprints β€” efficiently and with stealth controls.

startdev4 9 5
startdev4 9 5_0

---

## Why DorkEye

- Bypass CAPTCHA and rate‑limiting
- Advanced .html report interactive
- Maintain anonymity and avoid IP blocking
- Clean and unfiltered search results
- Advanced analysis and automated SQLi testing
- Continue Dorking for hours, DorkEye won’t get banned.

564558417-37385827-9112-4efe-aa0a-f8941da0a2d9

---

## What’s New πŸ₯‡

| Feature | Details |
|---------|---------|
| πŸ§™ Wizard | [Interactive guided session β€” all options](Docs/wizard.md) |
| βš™οΈ Dork Generator | [YAML template modes: `soft` / `medium` / `aggressive`](Docs/dork_generator.md) |
| 🎯 Direct SQLi Test | [Test a single URL directly with `-u`](Docs/sqli.md) |
| πŸ“‚ File Re-Processing | [Re-run SQLi / analysis / crawl on saved result files with `-f`](Docs/cli.md) |
| πŸ’‰ SQL Injection | [5 methods: 105 payloads](Docs/sqli.md) |
| πŸ’‰ XSS Injection | [4 methods: 111 payloads](Docs/xss.md) |
| πŸ€– Agents v3.1 Pipeline | [11-step autonomous analysis](Docs/agents.md) |
| πŸ›‘οΈ HeaderIntelAgent | [Info leaks, missing security headers, outdated server](Docs/agents.md#headerintelagent) |
| 🧬 TechFingerprintAgent | [35 technologies detected, CVE dorks generated](Docs/agents.md#techfingerprintagent) |
| πŸ“§ EmailHarvesterAgent | [Collects and categorizes emails: admin / security / info..](Docs/agents.md#emailharvesteragent) |
| πŸ” PiiDetectorAgent | [Phone, IBAN, fiscal code, credit card, SSN, DOB](Docs/agents.md#piidetectoragent) |
| 🌐 SubdomainAgent | [Extracts subdomains and generates `queries`](Docs/agents.md#subdomainharvesteragent) |
| πŸ”„ Adaptive Crawl | [Recursive multi-round dorking](Docs/crawler.md) |
| πŸ”‘ HTTP Fingerprinting | [22 browser/OS profiles β€” Chrome,Firefox,Safari,mobile..](Docs/fingerprinting.md) |
| πŸ“Š Output Formats | [HTML interactive report β€” all saved to `Dump/`](Docs/output_formats.md) |
| πŸ—‚οΈ File Categories | [7 auto-detected categories - whitelist / blacklist filtering](Docs/file_categories.md) |
| πŸ–₯️ Full CLI Reference | [All 31 flags and every possible combination](Docs/cli.md) |

---

## Quick Install
```json
"Update:"
sudo apt update
sudo apt install -y python3 python3-pip python3-venv git

"Git Clone:"
git clone https://github.com/xPloits3c/DorkEye.git
cd DorkEye

"Create environment:"
python -m venv dorkeye_env

"Activate environment:"
source dorkeye_env/bin/activate

"Install requirements:"
pip install -r requirements.txt

"WIZARD MODE:"
python dorkeye.py --wizard
```

dev5 0wiz

---

```json
"Help:"
python dorkeye.py -h

"Deactivate environment:"
deactivate

"Remove environment:"
rm -rf dorkeye_env
```
---

## Usage

de-h

πŸ”Ή # WIZARD Mode
```json
python dorkeye.py --wizard
```
πŸ”Ή # Basic search
```json
python dorkeye.py -d "inurl:admin" -o results.txt
```
πŸ”Ή # Dork Generator + Detection
```json
python dorkeye.py --dg=sqli --mode=aggressive --sqli --stealth -o report.json
```
πŸ”Ή # SQLi + stealth
```json
python dorkeye.py -d "site:example.com .php?id=" --sqli --stealth -o scan.html
```
πŸ”Ή # Fast scan
```json
python dorkeye.py -d dorks.txt --no-analyze -c 200 -o fast_results.csv
```
πŸ”Ή # Direct SQLi test on a URL
```json
python dorkeye.py -u "https://target.com/page.php?id=1" --sqli --stealth -o result.json
```
πŸ”Ή # Re-process a saved result file
```json
python dorkeye.py -f Dump/results.json --sqli --analyze -o retest.html
```

de-hex

---

## πŸ“ Project Structure
```
DorkEye/
β”‚ β”œβ”€β”€ dorkeye.py ← DorkEye Engine
β”‚ β”œβ”€β”€ requirements.txt
β”‚ β”œβ”€β”€ http_fingerprints.json
β”‚ β”œβ”€β”€ README.md
β”‚ /Tools/
β”‚ β”œβ”€β”€ dork_generator.py ← Dork Generator Queries
β”‚ β”œβ”€β”€ dorkeye_agents.py ← Agents v3.1 pipeline
β”‚ β”œβ”€β”€ dorkeye_patterns.py ← Shared pattern library
β”‚ β”œβ”€β”€ dorkeye_analyze.py ← Standalone analysis CLI
β”‚ β”œβ”€β”€ sqli.py ← 5 method sqli injection(105 payloads)
β”‚ └── xss.py ← 4 method xss injection (111 payloads)
β”‚ /Templates/
β”‚ β”œβ”€β”€ dorks_templates.yaml
β”‚ β”œβ”€β”€ sqli.yaml
β”‚ β”œβ”€β”€ osint.yaml
β”‚ β”œβ”€β”€ intel_dorks.yaml
β”‚ β”œβ”€β”€ epstein_files.yaml
β”‚ └── example.yaml
β”‚ /.github/
β”‚ β”œβ”€β”€ CODE_OF_CONDUCT.md
β”‚ β”œβ”€β”€ CONTRIBUTING.md
β”‚ β”œβ”€β”€ SECURITY.md
β”‚ β”œβ”€β”€ pull_request_template.md
β”‚ /ISSUE_TEMPLATE/
β”‚ β”œβ”€β”€ bug_report.md
β”‚ └── feature_request.md
β”‚ /workflows
β”‚ └── claude-dorkeye.yml
β”‚ /Dump/
β”‚ β”œβ”€β”€ *.csv
β”‚ β”œβ”€β”€ *.json
β”‚ β”œβ”€β”€ *.txt
β”‚ └── *.html
β”‚ /Docs/
β”‚ β”œβ”€β”€ cli.md
β”‚ β”œβ”€β”€ wizard.md
β”‚ β”œβ”€β”€ sqli.md
β”‚ β”œβ”€β”€ agents.md
β”‚ β”œβ”€β”€ crawler.md
β”‚ β”œβ”€β”€ fingerprinting.md
β”‚ β”œβ”€β”€ output_formats.md
β”‚ β”œβ”€β”€ file_categories.md
β”‚ β”œβ”€β”€ dork_generator.md
β”‚ β”œβ”€β”€ INSTALL.md
β”‚ β”œβ”€β”€ REPORT_HTML.md
β”‚ β”œβ”€β”€ USAGE.md
β”‚ └── DDGSEE.md
```
---

## Example HTML Report
![image](https://github.com/user-attachments/assets/28b71d4e-0cb2-478d-a1f2-f49c98f9f8aa)

## Example final Report
![image](https://github.com/user-attachments/assets/20055807-2f9d-4979-b221-e0cfad32828a)

---

## ⚠️ ![WARNING](https://img.shields.io/badge/Legal%20Disclaimer-red)
- **This tool is for educational, research, and authorized security testing only.**
- **Unauthorized access is illegal.**
- **The author is not responsible for misuse.**

---

## πŸ“ž Contact

- **Author:** xPloits3c
- **Email:** whitehat.report@onionmail.org
- **Telegram:** https://t.me/DorkEye
---

## ⭐ Support

If you find DorkEye useful, please consider starring the repository 🌟
---

## πŸ“œ License

MIT License Β© 2026 xPloits3c I.C.W.T