Meet GhostPath — your stealthy digital scout that uncovers hidden trails and forgotten footprints across the web, all without making a single sound. It’s the ultimate passive reconnaissance toolkit designed to reveal what others overlook.
Crafted especially for ethical hackers, bug bounty hunters, and red teams, GhostPath digs deep to expose historical URLs, shadowy subdomains, and elusive digital traces — leveraging only open-source intelligence (OSINT) methods.
Best of all? No API keys, no noisy scans, just pure silent discovery.
Fast, lightweight, and modular, GhostPath empowers you to illuminate your target’s hidden web presence with a single command — transforming reconnaissance into an art of subtle mastery.“Reconnaissance is the foundation of a secure attack and an effective defense.”
— Atharv Yadav
# Clone the repository
git clone https://github.com/atharvbyadav/GhostPath.git
cd GhostPath
# (Optional) Create and activate a virtual environment
python3 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
python main.py --domain example.com
Replace example.com
with your target domain.
--domain
: Specify the target domain for reconnaissance.--output
: (Optional) Specify a file to save the results.--verbose
: Enable detailed output.For full options, run:
python main.py --help
GhostPath/
├── fetchers/ # Modules to fetch data from different passive sources
│ ├── subdomains.py # Subdomain enumeration logic
│ └── wayback.py # Historical URL discovery from Wayback Machine
├── utils/ # Utility modules for deduplication, parsing, etc.
│ └── dedup.py # Deduplication functions
├── main.py # Main CLI entry point
├── requirements.txt # Python dependencies
└── README.md # Project documentation
Contributions are welcome! Please open issues or pull requests for bugs, improvements, or new fetchers.
git checkout -b feature-name
)git commit -m 'Add some feature'
)git push origin feature-name
)This project is licensed under the BSD 3-Clause License — see the LICENSE file for details.
Collaboration is the backbone of innovation. Reach out — let’s build better tools together.