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.1.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.1-py3-none-any.whl (44.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: dorkeye-4.9.1.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.1.tar.gz
Algorithm Hash digest
SHA256 d1fed59694459274e103aa2c3a3915d7d4711cac6ec567ef5ff9adda42d1f7e9
MD5 a5d94f5383106950dc0fb5963fa21b2a
BLAKE2b-256 1293475682060dc43ce8b298a33e97546842c5e496d41c24c7208ed4ec3ebaf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dorkeye-4.9.1.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.1-py3-none-any.whl.

File metadata

  • Download URL: dorkeye-4.9.1-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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f767ecf0a0eb2027d37bb3610f478f0cf2d18c80940b4c54e51707a5881a0548
MD5 5b46845191b76cabc6f7cceb022ee496
BLAKE2b-256 a4ff8b07e8cf25e1460d960757429169ea1eb4f474733d918d70b36272e54ced

See more details on using hashes here.

Provenance

The following attestation bundles were made for dorkeye-4.9.1-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