BugRecon is an automated bug hunting tool designed to streamline the reconnaissance phase of bug bounty hunting and penetration testing. It performs essential tasks such as subdomain enumeration, port scanning, directory brute-forcing, vulnerability scanning, and screenshot capturing. By automating these tasks, BugRecon allows security researchers to focus on deeper analysis and exploitation, enhancing efficiency and effectiveness in identifying vulnerabilities.
- Target Input: Prompts the user to enter the target domain.
- Reconnaissance Depth: Allows selection of recon depth (shallow, medium, deep) to customize the extent of scanning.
- Subdomain Enumeration: Retrieves subdomains using crt.sh.
- Port Scanning: Identifies open ports using nmap.
- Directory Brute-Forcing: Discovers hidden directories using ffuf.
- Vulnerability Scanning: Checks for common vulnerabilities like SQL Injection (SQLi) and Cross-Site Scripting (XSS).
- Screenshot Capturing: Takes screenshots of discovered web applications using EyeWitness.
- Report Generation: Compiles findings into a comprehensive report.
- Modular Design: Although provided as a single script, the tool is structured for easy expansion and integration of additional features.
Before using BugRecon, ensure that the following tools and dependencies are installed on your system:
-
Python 3.6+
-
Nmap Install
go install github.com/ffuf/ffuf@latest
-
ffuf (Fuzz Faster U Fool)
go install github.com/ffuf/ffuf@latest
-
EyeWitness
git clone https://github.com/FortyNorthSecurity/EyeWitness.git cd EyeWitness/Python/setup python setup.py install
Install the required Python packages using pip
pip install -r requirements.txt
- Clone the Repository
- Install Python Dependencies
- Ensure External Tools are Installed Make sure that nmap, ffuf, and EyeWitness are installed and added to your system's PATH.
Run the bug_recon.py script using Python
(comming soon) something like this
Bug Recon Report for example.com
Subdomains Found:
- subdomain1.example.com
- subdomain2.example.com
- subdomain3.example.com
- subdomain4.example.com
- subdomain5.example.com
Open Ports:
- 80
- 443
- 8080
Vulnerabilities:
- subdomain1.example.com:80
- Possible SQL Injection
- Possible XSS
- subdomain3.example.com:443
- Possible XSS
Contributions are welcome! If you'd like to enhance BugRecon, follow these steps:
Note :- feel free to update and contribute