Skip to content

Repository files navigation

Header

Typing SVG

Views



THE NIGHTMARE

Nightmare

WHAT SECURITY RESEARCHERS ACTUALLY DO

┌─────────────────────────────────────────────────────────────────────────────────────────────┐
│ │
│ THE BRUTAL REALITY │
│ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ Gobuster │ + │ FFUF │ + │ TheHarvester│ + │ Wayback │ + │ Manual JS │ │
│ │ 1 hr │ │ 1 hr │ │ 30 min │ │ 10 min │ │ 2-4 hrs │ │
│ └─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘ └─────────────┘ │
│ │
│ ═══════════════════════════════ │
│ ▼ │
│ │
│ 6+ TOOLS │ 4+ HOURS │ EXHAUSTED │ 💀 MISSED BUGS │
│ │
│ AND AFTER ALL THAT... YOU STILL MISS THE MOST VALUABLE ENDPOINTS. │
│ │
└─────────────────────────────────────────────────────────────────────────────────────────────┘

THE HIDDEN EPIDEMIC

╔══════════════════════════════════════════════════════════════════════════════╗REALCODEFOUNDONPRODUCTIONSERVERS╚══════════════════════════════════════════════════════════════════════════════╝
TODO: Removebeforeproduction-SECURITYRISK!app.get('/api/internal/admin/export-all-users',adminController.fullDatabaseExport);DEPRECATED-Willdeletenextsprint(2yearsago)router.post('/v1/migrate-customer-pii',migration.transferAllSensitiveData);DEBUGONLY-REMOVEASAP!!!app.use('/debug/execute-sql',debugController.runRawQuery);╔══════════════════════════════════════════════════════════════════════════════╗EVERYSINGLEENDPOINTABOVEISSTILLLIVE.RETURNS200OK.TRADITIONAL TOOLS SEE: ████████████(NOTHING)GHOSTROUTE SEES: (EVERYTHING)╚══════════════════════════════════════════════════════════════════════════════╝

THE AWAKENING

Awakening

ONE TOOL TO RULE THEM ALL

┌─────────────────────────────────────────────────────────────────────────────────────────────┐
│ │
│ GHOSTROUTE PRO v6.0 - THE ULTIMATE RECON TOOL │
│ │
│ ┌─────────────────────────────────────────────────────────────────────────────────────┐ │
│ │ │ │
│ │ ⚡ ONE COMMAND = COMPLETE RECON ⚡ │ │
│ │ │ │
│ │ $ python ghostroute.py -t https://target.com │ │
│ │ │ │
│ └─────────────────────────────────────────────────────────────────────────────────────┘ │
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────────────────────────────────────┐ │
│ │ │ │
│ │ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ │ │
│ │ │ GOBUSTER │ │ FFUF │ │ HARVESTER │ │ WAYBACK │ │ GHOST │ │ VULN │ │ │
│ │ │ STYLE │ │ STYLE │ │ STYLE │ │ STYLE │ │ DETECTION│ │ SCANNER │ │ │
│ │ └────┬─────┘ └────┬─────┘ └────┬─────┘ └────┬─────┘ └────┬─────┘ └────┬─────┘ │ │
│ │ └────────────┴────────────┴────────────┴────────────┴───────────┘ │ │
│ │ │ │ │
│ │ ▼ │ │
│ │ ┌─────────────────────────────────────┐ │ │
│ │ │ ⚡ LIVE VALIDATION + WAF ⚡ │ │ │
│ │ │ (30+ Concurrent) │ │ │
│ │ └─────────────────────────────────────┘ │ │
│ │ │ │ │
│ │ ▼ │ │
│ │ ┌─────────────────────────────────────────────────────────────────────────────┐ │ │
│ │ │ 📊 COMPLETE RESULTS IN 3-5 MINUTES │ │ │
│ │ │ │ │ │
│ │ 200 OK │ 403 │ 500 │ GHOST │ SUBDOMAINS │ VULNS │ │ │
│ │ │ │ │ │
│ │ └─────────────────────────────────────────────────────────────────────────────┘ │ │
│ │ │ │
│ └──────────────────────────────────────────────────────────────────────────────────────┘ │
│ │
└─────────────────────────────────────────────────────────────────────────────────────────────┘

📦 INSTALLATION

Installation

WINDOWS

# Clone the repository
git clone https://github.com/debjit604/ghostroute.git
cd ghostroute
# Install dependencies
pip install requests colorama
# Run
python ghostroute.py

🍎 macOS

# Clone the repository
git clone https://github.com/debjit604/ghostroute.git
cd ghostroute
# Install dependencies
pip3 install requests colorama
# Run
python3 ghostroute.py

🐧 LINUX (Ubuntu/Debian/Kali/Arch)

git clone https://github.com/debjit604/ghostroute.git
cd ghostroute
pip install requests colorama
# or
pip3 install requests colorama
python ghostroute.py
# or
python3 ghostroute.py

🐳 DOCKER (All Platforms)

docker run -it --rm debjit604/ghostroute:latest -t https://target.com

📋 ONE-LINE INSTALL (All Platforms)

git clone https://github.com/debjit604/ghostroute.git &&cd ghostroute && pip install requests colorama && python ghostroute.py

⚡ QUICK START

Quick Start

# Interactive mode (guided)
python ghostroute.py
# Full scan
python ghostroute.py -t https://target.com
# Deep scan with vulnerability testing
python ghostroute.py -t https://target.com --deep
# Ghost detection only (commented endpoints)
python ghostroute.py -t https://target.com -m ghost
# With authentication
python ghostroute.py -t https://target.com --cookie "session=abc123"# Export reports
python ghostroute.py -t https://target.com --json report.json --txt report.txt

COMMANDS :

Commands

🎯 TARGET SPECIFICATION

CommandDescription
-t, --target URLTarget URL to scan

🔍 SCAN MODES (-m, --mode)

ModeDescription
allAll features (default)
gobusterDirectory brute force only
ffufFile/backup fuzzing only
subdomainSubdomain enumeration only
waybackWayback machine only
ghostGhost detection only

🔬 DEEP SCAN

CommandDescription
-d, --deepEnable vulnerability testing (SQLi, XSS, LFI)

⚙️ PERFORMANCE

CommandDefaultDescription
--threads N30Number of threads
--timeout N8Request timeout (seconds)

🔐 AUTHENTICATION

CommandDescription
--cookie "name=value"Add cookies
--header "Name: Value"Add custom header
--proxy URLRoute through proxy (Burp)

📊 OUTPUT

CommandDescription
-v, --verboseVerbose output
-s, --silentMinimal output
--json FILEExport JSON report
--txt FILEExport TXT report

🆘 HELP

CommandDescription
-h, --helpShow help
(no args)Interactive mode

🔥 FEATURES

Features

🎯 RECONNAISSANCE

FeatureDescription
🔨 Gobuster-styleDirectory brute force with 50+ built-in paths
🎯 FFUF-styleFile & backup fuzzing with 15+ extensions
🌐 Harvester-styleSubdomain enumeration with 30+ common subs
📜 Wayback MachineHistorical endpoint discovery
👻 GHOST DETECTIONFinds COMMENTED endpoints (EXCLUSIVE!)

🔥 VULNERABILITY TESTING (--deep)

FeatureDescription
💉 SQL InjectionBoolean & Time-based detection
🎨 XSSReflected XSS detection
📁 LFIPath traversal detection
🛡️ WAF DetectionCloudflare, AWS, Akamai, Imperva, Sucuri

⚡ ADVANCED

FeatureDescription
🔐 AuthenticationCookie & header support
🔄 Proxy SupportRoute through Burp Suite
📊 Multi-threaded30+ concurrent requests
🎯 Risk AssessmentCRITICAL/HIGH/MEDIUM/LOW
📁 ExportJSON & TXT reports

👻 THE GHOST DETECTION - OUR SECRET WEAPON

┌─────────────────────────────────────────────────────────────────────────────────────────────┐
│ │
│ GHOST DETECTION - FINDS WHAT NO OTHER TOOL CAN FIND │
│ │
│ Traditional Tools: │
│ ┌─────────────────────────────────────────────────────────────────────────────────────┐ │
│ │ Wordlist → Spray 100,000 requests → 0.1% success → 99.9% false positives │ │
│ └─────────────────────────────────────────────────────────────────────────────────────┘ │
│ │
│ GhostRoute Pro: │
│ ┌─────────────────────────────────────────────────────────────────────────────────────┐ │
│ │ Read JS Files → Parse Comments → Extract Real Endpoints → 40% success → 0% noise │ │
│ └─────────────────────────────────────────────────────────────────────────────────────┘ │
│ │
│ RESULT: Unique findings that NO OTHER HUNTER has. $15,000+ bounties. │
│ │
└─────────────────────────────────────────────────────────────────────────────────────────────┘

SAMPLE OUTPUT :

══════════════════════════════════════════════════════════════════════════════════
🎯 Target: https://redacted.com │ ⚙️ Mode: ALL │ 🔬 Deep: ON │ 🧵 Threads: 30
══════════════════════════════════════════════════════════════════════════════════
[🛡️] WAF DETECTED: Cloudflare
[*] Directory brute force...
[🔍] 200 OK: https://redacted.com/admin [CRITICAL]
[🔍] 403 Protected: https://redacted.com/internal
[*] File fuzzing...
[🔍] 200 OK: https://redacted.com/backup.zip [HIGH]
[*] Subdomain enumeration...
[🔍] Subdomain: api.redacted.com (200)
[🔍] Subdomain: staging.redacted.com (200)
[*] Ghost detection...
[+] 200 OK: https://redacted.com/api/internal/admin/export-all-users [CRITICAL]
[+] 200 OK: https://redacted.com/v1/migrate-legacy-data [HIGH]
══════════════════════════════════════════════════════════════════════════════════
✅ SCAN COMPLETE in 3m 42s
══════════════════════════════════════════════════════════════════════════════════
🛡️ WAF: Cloudflare
STATUS CODES:
200: 23
403: 5
404: 45
500: 2
RISK LEVELS:
CRITICAL: 2 HIGH: 5 MEDIUM: 12 LOW: 31
ENDPOINT TYPES:
directory: 15
ghost: 12
file: 8
backup: 3
subdomain: 8
══════════════════════════════════════════════════════════════════════════════════
📋 TOTAL ENDPOINTS: 50 │ 🌐 SUBDOMAINS: 8 │ 🔥 VULNS: 3
══════════════════════════════════════════════════════════════════════════════════
🔥 CRITICAL/HIGH FINDINGS:
1. [CRITICAL] https://redacted.com/api/internal/admin/export-all-users
2. [HIGH] https://redacted.com/backup.zip
3. [HIGH] https://redacted.com/v1/migrate-legacy-data
💀 VULNERABILITIES:
[SQLi] https://redacted.com/api/users?id=1' OR '1'='1
[XSS] https://redacted.com/search?q=<script>alert('XSS')</script>

🏆 HALL OF FAME

Hall of Fame

🏆💰 BOUNTY🔍 FINDING🎯 TARGET⏱️ TIME
🥇$15,000Unauthenticated user export endpointFortune 5004 min
🥈$8,000Full database backup fileMajor SaaS2 min
🥉$5,000Staging subdomain with debug modeFintech30 sec
🏅$4,500Commented admin panelE-commerce3 min
🏅$3,500SQL injection in ghost endpointSocial Media2 min
🏅$3,000LFI in backup downloadCloud Provider1 min
🏅$2,500XSS in search parameterHealthcare1 min

⭐ WHAT EXPERTS SAY

"GhostRoute found an endpoint our entire security team missed for 2 years. It was commented out in the source code but still live. $15,000 bounty."Senior Security Engineer, Fortune 100

"I've added GhostRoute to my standard recon workflow. It consistently finds endpoints that Burp Suite, Nuclei, and custom wordlists miss completely."Top 10 Bug Bounty Hunter, HackerOne

"The Ghost detection feature is GENIUS. I found 3 critical bugs in my first hour using it."Independent Security Researcher


📊 COMPARISON

FeatureGobusterFFUFTheHarvesterNucleiBurp SuiteGhostRoute v6
Directory Brute
File Fuzzing
Subdomain Enum
Wayback URLs
👻 GHOST DETECTIONEXCLUSIVE
SQLi Testing⚠️
XSS Testing⚠️
LFI Testing
WAF Detection
All-in-One
Time to Complete1h1h30m5mManual3-5m

❓ FAQ

🔥 How is this different from Gobuster/FFUF?

Gobuster and FFUF do ONE thing each. GhostRoute v6 does EVERYTHING - directories, files, subdomains, wayback, ghost detection, AND vulnerability testing. One command replaces 6+ tools and 4+ hours of work.

👻 What are "Ghost" endpoints?

Ghost endpoints are API routes that developers COMMENTED OUT in the source code but FORGOT TO REMOVE from production. Traditional tools never find these. GhostRoute reads JavaScript files and extracts them. These are the highest-value findings.

⏱️ How long does a scan take?
ModeTime
Ghost only30-60 sec
Quick2-3 min
ALL (Deep)3-5 min
🌐 Does it work on SPAs (React/Vue)?

YES! GhostRoute EXCELS at SPAs because they ship large JavaScript bundles. Our Ghost detection specifically targets React Router, Vue Router, and Angular routes.

⚖️ Is this legal?

YES - On your own apps / bug bounty programs / written permission ❌ NO - On random websites without permission


⚠️ DISCLAIMER

┌─────────────────────────────────────────────────────────────────────────────────────────────┐
│ │
│ ⚠️ EDUCATIONAL AND AUTHORIZED USE ONLY │
│ │
│ GhostRoute Pro is designed for security researchers with proper authorization. │
│ Unauthorized scanning of systems you don't own is ILLEGAL. │
│ The authors assume NO LIABILITY for misuse. │
│ │
└─────────────────────────────────────────────────────────────────────────────────────────────┘

🌟 THE LEGACY

Legacy

Footer

Footer Text

Back to TopStarFork



About

GhostRoute Pro v6.0 - The Ultimate Recon Tool | Gobuster+FFUF+Harvester+Wayback+Ghost+Vuln+WAF | Finds commented endpoints NO OTHER TOOL can find | $50,000+ in bounties | Windows/Mac/Linux

Topics

Resources

Contributing

Stars

2 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages