https://github.com/rajm012/ddos-tool-webapp
A powerful and ethical DDoS testing tool designed for security professionals and developers to simulate and analyze various types of DDoS attacks. This tool helps you understand how attacks work and how to defend against them.
https://github.com/rajm012/ddos-tool-webapp
flask python3
Last synced: about 2 months ago
JSON representation
A powerful and ethical DDoS testing tool designed for security professionals and developers to simulate and analyze various types of DDoS attacks. This tool helps you understand how attacks work and how to defend against them.
- Host: GitHub
- URL: https://github.com/rajm012/ddos-tool-webapp
- Owner: rajm012
- Created: 2025-03-21T11:59:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-23T13:00:05.000Z (over 1 year ago)
- Last Synced: 2025-06-07T12:36:08.026Z (about 1 year ago)
- Topics: flask, python3
- Language: Python
- Homepage:
- Size: 8.19 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DDoS Tool π
A powerful and ethical DDoS testing tool designed for security professionals and developers to simulate and analyze various types of DDoS attacks. This tool helps you understand how attacks work and how to defend against them.
---
## Features β¨
- **Multiple Attack Types**: Simulate UDP Flood, SYN Flood, HTTP Flood, ICMP Flood, Slowloris, and DNS Amplification attacks.
- **User-Friendly Interface**: Easy-to-use web interface for configuring and launching attacks.
- **Real-Time Logs**: View attack logs and statistics in real-time.
- **Ethical Use Only**: Designed for educational and testing purposes only.
- **Cross-Platform**: Works on macOS, Linux, and other Unix-based systems.
---
## Table of Contents π
1. [Installation](#installation)
2. [Usage](#usage)
3. [Attack Types](#attack-types)
4. [Testing and Monitoring](#testing-and-monitoring)
5. [Contributing](#contributing)
6. [License](#license)
---
## Installation π οΈ
### Prerequisites
- Python 3.7 or higher
- Flask (`pip install flask`)
- Wireshark (optional, for network monitoring)
### Steps
1. Clone the repository:
```bash
git clone https://github.com/rajm012/ddos-tool.git
cd ddos-tool
```
2. Install dependencies:
```bash
pip install -r requirements.txt
```
3. Run the application:
```bash
python app.py
```
4. Access the tool in your browser:
```
http://localhost:5000
```
---
## Usage π₯οΈ
1. **Home Page**: Navigate to the dashboard to view options.
2. **Start Attack**: Select an attack type, enter target details, and launch the attack.
3. **View Logs**: Monitor real-time attack logs and statistics.
4. **Help**: Click the floating help button (`?`) for detailed instructions on using the tool.
---
## Attack Types π₯
| Attack Type | Description | Input Values |
|----------------------|-----------------------------------------------------------------------------|------------------------------------------------------------------------------|
| **UDP Flood** | Floods the target with UDP packets. | Target IPs, Target Port, Duration, Intensity, Packet Size |
| **SYN Flood** | Overwhelms the target with SYN requests. | Target IPs, Target Port, Duration, Intensity |
| **HTTP Flood** | Floods the target with HTTP requests. | Target IPs, Target Port, Duration, Intensity, Custom Headers |
| **ICMP Flood** | Floods the target with ICMP (ping) packets. | Target IPs, Duration, Intensity |
| **Slowloris** | Sends partial HTTP requests to exhaust the target's resources. | Target IPs, Target Port, Duration, Intensity |
| **DNS Amplification**| Exploits DNS servers to flood the target with amplified traffic. | Target IPs, Duration, Intensity |
---
## Testing and Monitoring π
### Tools for Testing
- **Wireshark**: Monitor network traffic and analyze packets.
- **Terminal**: View real-time logs and output directly in the terminal.
- **Logs Page**: Access detailed attack logs and statistics on the web interface.
### Example Commands
- Monitor UDP traffic with Wireshark:
```bash
wireshark -k -i -f "udp"
```
- Check ICMP traffic:
```bash
sudo tcpdump -i icmp
```
---
## Server Config π
For every tool we can make our own server and i used two of the prominent methods:
1. Using inbuilt flask server as:
```bash
python -m http.server 8000
```
2. Using the python script to make one server
See the folder Servers where i have designed Snippet to get the various servers for testing. You can run that too to make a server on port 8000 and test it accoordingly.
---
## Contributing π€
We welcome contributions! Hereβs how you can help:
1. Fork the repository.
2. Create a new branch (`git checkout -b feature/your-feature`).
3. Commit your changes (`git commit -m 'Add some feature'`).
4. Push to the branch (`git push origin feature/your-feature`).
5. Open a pull request.
---
## License π
This project is licensed under the **MIT License**.
*Please use this tool responsibly and only for ethical purposes.*
---
## Screenshots πΈ
Visit Screenshot folder to see the screenshots of the tool.
---
## Support β€οΈ
If you find this project useful, please consider giving it a βοΈ on GitHub!
For questions or issues, open an issue on the [GitHub repository](https://github.com/rajm012/ddos-tool).
---
**Disclaimer**: This tool is intended for educational and testing purposes only. Do not use it for malicious activities. The developers are not responsible for any misuse of this tool.
---