cat << 'READMEEOF' > README.md
Developer: Maxod anonmoty π°
GitHub: github.com/anonmoty/Red_Hawk
---
βββββββ βββββββββββββββ βββ βββ ββββββ βββ ββββββ βββ
ββββββββββββββββββββββββ βββ ββββββββββββββ ββββββ ββββ
ββββββββββββββ βββ βββ βββββββββββββββββββ ββ ββββββββββ
ββββββββββββββ βββ βββ βββββββββββββββββββββββββββββββββ
βββ βββββββββββββββββββ βββ ββββββ ββββββββββββββββ βββ
βββ ββββββββββββββββββ βββ ββββββ βββ ββββββββ βββ βββ
[ Recon | Scan | Hunt ]
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β β
β RED_HAWK is an information gathering and vulnerability scanning β
β tool built for EDUCATIONAL and AUTHORIZED testing purposes only. β
β β
β βΈ Use ONLY on targets you have permission to test. β
β βΈ Unauthorized scanning is ILLEGAL. β
β βΈ Always follow the bug bounty program's scope and rules. β
β βΈ The author is NOT responsible for any misuse. β
β β
β Hack responsibly. Hunt ethically. Report responsibly. β
β β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
RED_HAWK is a powerful information gathering and vulnerability scanning tool written in PHP. It is designed for penetration testers, bug bounty hunters, and security researchers who need to collect intelligence about a target before exploitation.
Whether you're mapping a target's infrastructure or hunting for misconfigurations β RED_HAWK gives you the recon advantage you need.
| Feature | Description | |
|---|---|---|
| πΈοΈ | Information Gathering | Collects target intel efficiently |
| π | Vulnerability Scanner | Detects common security misconfigurations |
| π | Site Crawling | Maps internal and external links |
| π‘οΈ | Header Analysis | Inspects HTTP response headers |
| π‘ | DNS Lookup | Resolves and maps DNS records |
| π§ͺ | XSS Detection | Scans for cross-site scripting flaws |
| π | SQLi Detection | Checks for injection vulnerabilities |
| π | Structured Output | Clean, readable scan results |
| π¨ | Hacker Terminal UI | Red-on-black aesthetic |
| β‘ | Fast Execution | Lightweight and quick |
graph TD
A[Start] --> B[Input Target]
B --> C[Information Gathering]
C --> D[DNS & Header Analysis]
D --> E[Site Crawling]
E --> F{Vulnerability Check}
F -->|XSS| G[Log Finding]
F -->|SQLi| H[Log Finding]
F -->|Safe| I[Next Endpoint]
G --> J[Generate Report]
H --> J
I --> F
J --> K[Done]
style A fill:#1a0000,stroke:#CC0000,color:#FF4500
style G fill:#1a0000,stroke:#CC0000,color:#FF4500
style H fill:#1a0000,stroke:#CC0000,color:#FF4500
style K fill:#1a0000,stroke:#CC0000,color:#FF4500
- Input β Takes the target URL
- Gather β Collects all available information
- Analyze β Checks DNS, headers, and responses
- Crawl β Maps the site's internal structure
- Scan β Tests for XSS, SQLi, and misconfigurations
- Report β Displays structured findings
RED_HAWK/
βββ redhawk.php # Main entry point
βββ core/
β βββ info.php # Information gathering
β βββ scanner.php # Vulnerability scanner
β βββ crawler.php # Site crawler
β βββ reporter.php # Report generator
βββ payloads/
β βββ xss.txt # XSS payloads
β βββ sqli.txt # SQLi payloads
βββ reports/ # Generated reports
βββ LICENSE
βββ README.md
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β βββββββ βββββββββββββββ βββ βββ ββββββ βββ ββββββ βββ β
β ββββββββββββββββββββββββ βββ ββββββββββββββ ββββββ ββββ β
β ββββββββββββββ βββ βββ βββββββββββββββββββ ββ ββββββββββ β
β ββββββββββββββ βββ βββ βββββββββββββββββββββββββββββββββ β
β βββ βββββββββββββββββββ βββ ββββββ ββββββββββββββββ βββ β
β βββ ββββββββββββββββββ βββ ββββββ βββ ββββββββ βββ βββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
[β] Target: https://target.com
[β] Modules: Info | Scan | Crawl
[β] Gathering intel...
[ββββββββββββββββββββββββββββββ] 80% | 800/1000 checks
[!] XSS Found: /search?q=
[!] SQLi Found: /login?id=
[β] Scan complete in 6.12s
[β] Report: reports/redhawk_2024.json
Happy Hunting! π―
RED_HAWK uses a deep red + neon orange theme by default:
THEME = {
"primary": "\033[38;5;196m", # Bright Red
"secondary": "\033[38;5;202m", # Orange
"accent": "\033[38;5;214m", # Amber
"error": "\033[38;5;196m", # Red
"warning": "\033[38;5;220m", # Yellow
"info": "\033[38;5;202m", # Orange
"reset": "\033[0m", # Reset
}# Red_Hawk + subdomain enumeration
subfinder -d target.com | httpx | while read url; do
php redhawk.php -u "$url"
done
# Red_Hawk + nuclei
php redhawk.php -u https://target.com -o recon.json
nuclei -u https://target.com -t ~/nuclei-templates/# Stealth mode (slower but safer)
php redhawk.php -u https://target.com --delay 2
# Full power mode
php redhawk.php -u https://target.com --threads 20RED_HAWK fits perfectly into your recon pipeline:
1. Subdomain Enumeration β amass / subfinder
2. Live Host Detection β httpx
3. Information Gathering β RED_HAWK β you are here
4. Endpoint Analysis β grep, waybackurls
5. Vulnerability Scanning β nuclei, XSStrike
6. Manual Testing β Burp Suite
- π Information gathering on any target
- π DNS and header analysis for recon
- πΊοΈ Site crawling for hidden endpoints
- π§ͺ XSS and SQLi detection in one tool
- π Structured reports for documentation
- Information gathering
- Vulnerability scanning
- Site crawling
- Hacker terminal UI
- JavaScript secret scanner
- Wayback Machine integration
- Subdomain auto-discovery
- Docker image
- Web dashboard
Contributions are welcome. Please follow these steps:
- Fork the repository
- Create your branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Distributed under the MIT License. See LICENSE for more information.
- Author: @anonmoty
- Inspired by: The original RED_HAWK by Tuhinshubhra
- Built with: PHP, caffeine, and curiosity β
RED HAWK is a powerful, multi-threaded OSINT (Open Source Intelligence) reconnaissance framework designed for security professionals, penetration testers, bug bounty hunters, and cybersecurity students.
It automates the information gathering phase of security assessments by collecting publicly available data about a target domain through 18+ integrated modules β all from a single interactive terminal interface.
β οΈ DISCLAIMER: This tool is built for educational and authorized security testing purposes only. The developer is NOT responsible for any misuse or illegal activity. Always obtain written permission before testing any target.
| Feature | Description |
|---|---|
| π― 18+ OSINT Modules | WHOIS, DNS, Subdomains, Headers, GeoIP, Ports, SSL, and more |
| β‘ Multi-Threaded Scanning | Port scanner & subdomain brute-force with 50 concurrent threads |
| π Auto Report Generation | Exports results in JSON, HTML, and TXT formats |
| π Subdomain Enumeration | 4 methods: DNS Brute, crt.sh, HackerTarget, RapidDNS |
| π‘οΈ Security Headers Audit | HSTS, CSP, XFO, XCTO scoring with grade (A+ to F) |
| π SSL/TLS Analysis | Certificate details, expiry check, cipher suite info |
| ποΈ CMS Detection | WordPress, Joomla, Drupal, Magento, Shopify, PrestaShop |
| π‘οΈ WAF Detection | 14+ firewall signatures (Cloudflare, AWS, Akamai, etc.) |
| π CORS Misconfiguration | 5 origin-based tests for CORS vulnerabilities |
| π±οΈ Clickjacking Test | X-Frame-Options & CSP check with PoC generation |
| π§ Email Harvester | Scraping + pattern-based email discovery |
| π Wayback Machine | Historical URLs from Archive.org CDX API |
| π·οΈ Link Crawler | Internal/External links + resources + forms |
| π Reverse IP Lookup | Find all domains hosted on same IP |
| π± Social Media Finder | 11 platforms (Twitter, GitHub, LinkedIn, etc.) |
| π€ Robots.txt Analysis | Disallowed paths + sitemap extraction |
| π IP Geolocation | Country, City, ISP, Coordinates, Maps link |
| π¨ Beautiful CLI | Colored output, progress bars, interactive menu |
| π± Termux Compatible | Fully optimized for Android/Termux |
π° About Developer Info Details Name Maxod anonmoty GitHub @anonmoty Tool RED HAWK v3.0 Purpose Educational & Authorized Security Testing
# Update packages
pkg update && pkg upgrade -y
# Install dependencies
pkg install python git
# Clone the repository
git clone https://github.com/anonmoty/Red_Hawk.git
# Navigate to directory
cd Red_Hawk
#fikw.list
ls
# Install Python packages
pip install -r requirements.txt
# Run the tool
python start.py
