SubEcho is a cross-platform subdomain enumeration and WAF detection tool written in Python. It queries multiple data sources (crt.sh, SecurityTrails, RapidDNS, WebArchive, AlienVault OTX, HackerTarget, and urlscan.io) to discover subdomains, checks if they’re down, and attempts to detect if a subdomain is behind a known WAF (Web Application Firewall).
Author: John Holt
- Enumerates subdomains from various well-nown data sources
- Distinguishes between online and offline subdomains
- Scans for WAF signatures in headers and cookies
- Saves results to a timestamped file for easy reference
- Provides optional verbose logs for troubleshooting
- Python 3.7
- PIP (the standard Python package manager)
- Clone the repository:
git clone https://github.com/john-holt4/SubEcho.git
cd SubEcho
- Install Python dependencies:
pip install -r requirements.txt
- (Optional) SecurityTrails API key:
If you have a SecurityTrails account, pass the API key via
-k YOUR_API_KEY
to unlock deeper subdomain discovery. Otherwise, that source is skipped.
Run the tool using Python:
ptyhon subecho.py -d example.com
Where example.com
is your target domain.
-d, --domain
[Required] The target domain, e.g.-d example.com
-k, --apikey
(Optional) A SecurityTrails API key for additional subdomain data-v, --verbose
Enable verbose mode for debug info
- Basic usage:
python subecho.py -d example.com
- Enable verbose mode:
python subecho.py -d example.com -v
- Use SecurityTrails:
python subecho.py -d example.com -k YOUR_API_KEY
- Banner & Validation
- Displays a banner and validates the main domain format.
- Subdomain Enumeration
- Gathers subdomains from multiple sources (CRT.sh, RapidDNS, etc.)
- Online/Offline Check
- Attempts DNS resolution for each discovered subdomain.
- WAF Detection
- For subdomains that resolve, sends HTTP(S) requests to detect known WAF signatures.
- Save & Display Results
- Outputs a Rich-formatted table in the console
- Saves results to a
.txt
file with a timestamp (e.g.example.com-20250113-120000.txt
)
- Fork this project
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add new feature'
- Push to the branch:
git push origin my-new-feature
- Create a new Pull Request on GitHub
This repository is licensed under MIT License. See LICENSE
for details.
Made with ❤️ and Python