Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codingplanets/Overload-DoS
"Overload" is a python program that sends active connections to any target of some sort. It is used to perform a DoS/DDoS attack.
https://github.com/codingplanets/Overload-DoS
ddos ddos-attack ddos-attack-tools ddos-attacks ddos-tool dos python-ddos
Last synced: 3 months ago
JSON representation
"Overload" is a python program that sends active connections to any target of some sort. It is used to perform a DoS/DDoS attack.
- Host: GitHub
- URL: https://github.com/codingplanets/Overload-DoS
- Owner: codingplanets
- Created: 2017-07-15T22:51:57.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-04T19:05:04.000Z (almost 5 years ago)
- Last Synced: 2024-04-05T11:33:08.674Z (7 months ago)
- Topics: ddos, ddos-attack, ddos-attack-tools, ddos-attacks, ddos-tool, dos, python-ddos
- Language: Python
- Size: 21.5 KB
- Stars: 67
- Watchers: 3
- Forks: 27
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Overload-DoS
This a very powerful denial of service (DDoS) program. It is very efficient and portable, it is stable and useful for stress-testing companies, it currently has three attack methods. 1) SYN/ICMP with 6 flags including fin, syn, rst, ack, psh and urg. 2) Slowloris/SLOW uses sock.connect to attack. 3) Request/Requester uses httplib to attack. You either choose one of the three attack methods or you can choose all three!
## Getting StartedYou will need a few different modules installed to execute Overload.
### Modules
You will have to use pip to install the modules, colorama, termcolor & requests
```
sudo apt-get install python-pip
```
```
sudo yum install python-pip
```
### Module InstallingUsing pip you can install the following modules
```
sudo pip install colorama termcolor requests
```## Install Overload-Dos
```
git clone https://github.com/codingplanets/Overload-DoS
```
```
cd Overload-DoS
```
```
chmod +x *
```
```
./install-overload
```
## Usages
```
usage: ./Overload-DoS.py -target [target] -port [port] -threads [number threads]optional arguments:
-h, --help show this help message and exitoptions:
-target Specify your target
-timeout Timeout for socket
-threads Set threads number for connection (default = 1000)
-port Specify port target (default = 80)
-sleep Set sleep time for reconnection
-spoof Specify spoofed IP address
-request Enable request target
-syn Enable syn attack
-slow Enable slow attack
-fakeip Option to create fake ip if not specifed for spoofed ip
```
## Examples
Slowloris/SLOW attack method
```
./Overload-DoS.py -target www.target.com -port 80 -threads 2000 -slow
```
Request/Requester attack method
```
./Overload-DoS.py -target www.target.com -port 80 -threads 2000 -request
```
SYN/6 flagged ICMP attack method
```
./Overload-DoS.py -target www.target.com -syn -threads 5000
```
SLOW/Request/SYN attack method
```
./Overload-DoS.py -target www.target.com -port 80 -threads 2000 -request -slow -syn
```
SLOW/Request/SYN spoofed IP attack method
```
./Overload-DoS.py -target www.target.com -port 80 -threads 2000 -request -slow -syn -spoof 8.8.8.8
```## Built With
* [Python 2.7](https://www.python.org/download/releases/2.7/) - The code framework used
* [Requests](http://docs.python-requests.org/en/master/) - Used to send DoS attack
* [Colorama](https://pypi.python.org/pypi/colorama) - Used to generate text color
* [Termcolor](https://pypi.python.org/pypi/termcolor) - Used to generate text color## Authors
* **Chris Poole** - Twitter: [@codingplanets](https://twitter.com/codingplanets) - Github: [/codingplanets](https://github.com/codingplanets) - Pastebin: [/1337ings](https://pastebin.com/u/1337ings)
## License
This project is licensed under the MIT License