Skip to main content

Advanced Google Dorking with Google Dorks Generator, SQLi analysis, WAF detection and extract metadata.

Project description

image

" ๐Ÿฆ… DorkEye | OSINT Dorking Tool "
> I don't hack systems, i expose their secrets <

Python License Status Search Version

Repo views Stars Forks Issues Last Commit

Telegram


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 10-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.

de_start_sql


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, no CLI knowledge needed
โš™๏ธ Dork Generator YAML template engine with soft / medium / aggressive modes
๐ŸŽฏ Direct SQLi Test Test a single URL directly with -u
๐Ÿ“‚ File Re-Processing Re-run SQLi / analysis / crawl on saved result files with -f
๐Ÿ”’ SQL Injection Engine 4 methods: error-based, UNION, boolean blind, time-based โ€” verbose output
๐Ÿค– Agents v3.1 Pipeline 11-step autonomous analysis โ€” no external AI required
๐Ÿ›ก๏ธ HeaderIntelAgent Detects info leaks, missing security headers, outdated server versions
๐Ÿงฌ TechFingerprintAgent 35 technologies detected with version extraction, CVE dorks generated
๐Ÿ“ง EmailHarvesterAgent Collects and categorizes emails: admin / security / info / noreply / personal
๐Ÿ” PiiDetectorAgent Phone, IBAN, fiscal code, credit card (Luhn-validated), SSN, DOB
๐ŸŒ SubdomainHarvesterAgent Extracts subdomains and generates site:sub.domain follow-up dorks
๐Ÿ”„ Adaptive Crawl Recursive multi-round dorking that refines itself automatically
๐Ÿ”‘ HTTP Fingerprinting 22 browser/OS profiles โ€” Chrome, Firefox, Safari, Edge, mobile
๐Ÿ“Š Output Formats HTML interactive report, JSON, CSV, TXT โ€” all saved to Dump/
๐Ÿ—‚๏ธ File Categories 7 auto-detected categories with whitelist / blacklist filtering
๐Ÿ–ฅ๏ธ Full CLI Reference All 26 flags and every possible combination

๐Ÿ“ฆ PyPI Installation (New!)

# Install directly via pip
pip install dorkeye

# Update to latest version
pip install --upgrade dorkeye

# Run after installation
dorkeye --help

Quick Install

"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

Test

start0
"Help:"
  python dorkeye.py -h

"Deactivate environment:"
  deactivate

"Remove environment:"
  rm -rf dorkeye_env

Usage

h1

๐Ÿ”น # WIZARD Mode

  python dorkeye.py --wizard

๐Ÿ”น # Basic search

  python dorkeye.py -d "inurl:admin" -o results.txt

๐Ÿ”น # Dork Generator + Detection

  python dorkeye.py --dg=sqli --mode=aggressive --sqli --stealth -o report.json

๐Ÿ”น # SQLi + stealth

  python dorkeye.py -d "site:example.com .php?id=" --sqli --stealth -o scan.html

๐Ÿ”น # Fast scan

  python dorkeye.py -d dorks.txt --no-analyze -c 200 -o fast_results.csv

๐Ÿ”น # Direct SQLi test on a URL

python dorkeye.py -u "https://target.com/page.php?id=1" --sqli --stealth -o result.json

๐Ÿ”น # Re-process a saved result file

  python dorkeye.py -f Dump/results.json --sqli --analyze -o retest.html
examples

๐Ÿ“ 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
โ”‚ /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

report

Example final Report

image

Wizard MODE (default payload)

de_generator

โš ๏ธ WARNING

  • This tool is for educational, research, and authorized security testing only.
  • Unauthorized access is illegal.
  • The author is not responsible for misuse.

๐Ÿ“ž Contact


โญ Support

If you find DorkEye useful, please consider starring the repository ๐ŸŒŸ

๐Ÿ“œ License

MIT License ยฉ 2026 xPloits3c I.C.W.T

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dorkeye-4.9.0.tar.gz (44.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dorkeye-4.9.0-py3-none-any.whl (44.9 kB view details)

Uploaded Python 3

File details

Details for the file dorkeye-4.9.0.tar.gz.

File metadata

  • Download URL: dorkeye-4.9.0.tar.gz
  • Upload date:
  • Size: 44.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dorkeye-4.9.0.tar.gz
Algorithm Hash digest
SHA256 bae2cd5acc3f691ce6e96eefbcc25444212a506cb5822367399f48b78c92b64d
MD5 3a74e2a1eeb39aeb84e948b549761893
BLAKE2b-256 06f5197c4a8a37718ef25f6a5121f5f87731b9b970c3bd7ed3cdcc2b46d36e50

See more details on using hashes here.

Provenance

The following attestation bundles were made for dorkeye-4.9.0.tar.gz:

Publisher: publish.yml on xPloits3c/DorkEye

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dorkeye-4.9.0-py3-none-any.whl.

File metadata

  • Download URL: dorkeye-4.9.0-py3-none-any.whl
  • Upload date:
  • Size: 44.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dorkeye-4.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 212a60ce98a4fa487f8e17337164bc825f2d0f10f39870969c5e26094f325b16
MD5 294173939da23065ac57117f81252370
BLAKE2b-256 fb0f9e7ecf8ee49b099fab1959c0c2a43bd9f21561279b37c73bedf4296c9c0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dorkeye-4.9.0-py3-none-any.whl:

Publisher: publish.yml on xPloits3c/DorkEye

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page