Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
180 changes: 128 additions & 52 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,98 +1,174 @@
# Overview
# BugRecon

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.
**BugRecon** is an automated bug-hunting tool designed to streamline the reconnaissance phase of bug bounty hunting and penetration testing. It automates essential tasks like subdomain enumeration, port scanning, directory brute-forcing, vulnerability scanning, and screenshot capturing. This allows security researchers to focus on deeper analysis and exploitation, increasing both efficiency and effectiveness in identifying vulnerabilities.

# Features
---

1. Target Input: Prompts the user to enter the target domain.
2. Reconnaissance Depth: Allows selection of recon depth (shallow, medium, deep) to customize the extent of scanning.
3. Subdomain Enumeration: Retrieves subdomains using crt.sh.
4. Port Scanning: Identifies open ports using nmap.
5. Directory Brute-Forcing: Discovers hidden directories using ffuf.
6. Vulnerability Scanning: Checks for common vulnerabilities like SQL Injection (SQLi) and Cross-Site Scripting (XSS).
7. Screenshot Capturing: Takes screenshots of discovered web applications using EyeWitness.
8. Report Generation: Compiles findings into a comprehensive report.
9. Modular Design: Although provided as a single script, the tool is structured for easy expansion and integration of additional features.
## 🚀 Features


# Prerequisites
Before using BugRecon, ensure that the following tools and dependencies are installed on your system:
1. **Target Input**: Prompts the user to enter the target domain.
2. **Reconnaissance Depth**: Allows you to choose between shallow, medium, or deep scanning levels.
3. **Subdomain Enumeration**: Retrieves subdomains using crt.sh.
4. **Port Scanning**: Identifies open ports with `nmap`.
5. **Directory Brute-Forcing**: Discovers hidden directories using `ffuf`.
6. **Vulnerability Scanning**: Detects common vulnerabilities like SQL Injection (SQLi) and Cross-Site Scripting (XSS).
7. **Screenshot Capturing**: Captures screenshots of discovered web applications using `EyeWitness`.
8. **Report Generation**: Compiles all findings into a comprehensive, easy-to-read report.
9. **Modular Design**: Structured for easy expansion, allowing for the integration of additional features as needed.

## External Tools
1. Python 3.6+

[Download Python](https://www.python.org/downloads/)
2. Nmap Install
---

`go install github.com/ffuf/ffuf@latest`
3. ffuf (Fuzz Faster U Fool)
## 📋 Prerequisites

`go install github.com/ffuf/ffuf@latest`
Ensure that the following dependencies are installed on your system before using BugRecon:

4. EyeWitness
### External Tools

```
1. **Python 3.6+**
- [Download Python](https://www.python.org/downloads/)

2. **Nmap**
- Installation:
```bash
sudo apt-get install nmap
```

3. **ffuf (Fuzz Faster U Fool)**
- Installation:
```bash
go install github.com/ffuf/ffuf@latest
```

4. **EyeWitness**
- Installation:
```bash
git clone https://github.com/FortyNorthSecurity/EyeWitness.git
cd EyeWitness/Python/setup
python setup.py install
```
```

# Python Packages
### Python Packages

Install the required Python packages using pip
Install the required Python packages by running:

`pip install -r requirements.txt
`
```bash
pip install -r requirements.txt
```

# Installation
---

1. Clone the Repository
2. Install Python Dependencies
3. Ensure External Tools are Installed
Make sure that nmap, ffuf, and EyeWitness are installed and added to your system's PATH.
## 🛠️ Installation

# Usage (update it)
Run the bug_recon.py script using Python
1. **Clone the Repository**
Clone the BugRecon repository to your local machine:
```bash
git clone https://github.com/freyxfi/BugRecon
cd BugRecon
```

# Step-by-Step Guide (comming soon)
2. **Install Python Dependencies**
Use `pip` to install all necessary Python dependencies:
```bash
pip install -r requirements.txt
```

# Recon Depth Levels (comming soon)
3. **Ensure External Tools are Installed**
Make sure that `nmap`, `ffuf`, and `EyeWitness` are installed and added to your system's PATH.

# Example (comming soon)
---

# Generated Report (example.com_report.txt)
## 🚀 Usage

(comming soon)
something like this
To run BugRecon, execute the following:

```bash
python bug_recon.py
```

You will be prompted to enter the target domain and select the reconnaissance depth (shallow, medium, deep).

---

## 📊 Recon Depth Levels (Coming Soon)

Detailed explanation on what each recon depth level (shallow, medium, deep) covers and how it customizes your scans.

---

## 📝 Example (Coming Soon)

An example of BugRecon in action:

```bash
BugRecon Report for example.com

Subdomains Found:
- subdomain1.example.com
- subdomain2.example.com

Open Ports:
- 80
- 443

Vulnerabilities:
- subdomain1.example.com (Port 80)
- Possible SQL Injection
- Possible XSS
```

---

## 🧾 Generated Report (example.com_report.txt)

A detailed report will be generated after the scan in the following format:

```
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
- subdomain1.example.com (Port 80)
- Possible SQL Injection
- Possible XSS
- subdomain3.example.com:443
- subdomain3.example.com (Port 443)
- Possible XSS
```

---

## 🛠️ Contributing (Coming Soon)

Contributions are welcome! Feel free to submit pull requests to enhance BugRecon. Follow these steps:

1. Fork the repository.
2. Create a new branch (`git checkout -b feature-branch`).
3. Make your changes.
4. Push to the branch (`git push origin feature-branch`).
5. Submit a pull request.

---

## 📄 License

This project is licensed under the MIT License.

# Contributing (comming soon)
---

Contributions are welcome! If you'd like to enhance BugRecon, follow these steps:
## 🎉 Contributors

# License
Special thanks to all the contributors who have helped improve BugRecon!

<!-- Add contributor avatars automatically with this placeholder -->
<a href="https://github.com/freyxfi/BugRecon/graphs/contributors">
<img src="https://contrib.rocks/image?repo=freyxfi/BugRecon" />
</a>

Note :- feel free to update and contribute
---