Project Redeye is a reconnaissance and asset discovery utility designed for ethical security testing.
It helps you:
- Enumerate subdomains (via Amass/Sublist3r if installed, or fallback wordlist).
- Scan open ports/services (via Nmap if installed, or a lightweight socket scanner).
- Enrich host intelligence (via the Shodan API).
git clone https://github.com/yourusername/project-redeye.git
cd project-redeye
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txtpython redeye.py example.com --verboseexport SHODAN_API_KEY=your_api_key
python redeye.py example.comReports are saved to:
./reports/<domain>/
├─ report.json
├─ report.csv
└─ report.md
Project Redeye is for educational and authorized security testing only. Do not use it on targets you do not own or have explicit permission to assess.