Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/649/memcrashed-ddos-exploit
DDoS attack tool for sending forged UDP packets to vulnerable Memcached servers obtained using Shodan API
https://github.com/649/memcrashed-ddos-exploit
Last synced: 9 days ago
JSON representation
DDoS attack tool for sending forged UDP packets to vulnerable Memcached servers obtained using Shodan API
- Host: GitHub
- URL: https://github.com/649/memcrashed-ddos-exploit
- Owner: 649
- Created: 2018-03-02T21:19:51.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-02T07:14:59.000Z (almost 2 years ago)
- Last Synced: 2024-08-05T17:40:41.806Z (3 months ago)
- Language: Python
- Size: 130 KB
- Stars: 1,318
- Watchers: 74
- Forks: 468
- Open Issues: 45
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MEMCRASHED DDOS EXPLOIT TOOL
* Author: [@037](https://twitter.com/037)
This tool allows you to send forged UDP packets to Memcached servers obtained from Shodan.io
### Prerequisites
The only thing you need installed is Python 3.x
```
apt-get install python3
```You also require to have Scapy and Shodan modules installed
```
pip install scapy
``````
pip install shodan
```### Using Shodan API
This tool requires you to own an upgraded Shodan API
You may obtain one for free in [Shodan](https://shodan.io/) if you sign up using a .edu email
![alt text](https://raw.githubusercontent.com/649/Memcrashed-DDoS-Exploit/master/2.png)
![alt text](https://raw.githubusercontent.com/649/Memcrashed-DDoS-Exploit/master/1.png)
![alt text](https://raw.githubusercontent.com/649/Memcrashed-DDoS-Exploit/master/3.png)
![alt text](https://raw.githubusercontent.com/649/Memcrashed-DDoS-Exploit/master/4.png)### Using Docker
##### [Demo](https://asciinema.org/a/v1AEEa17xzqUfyW4pEIS0JONW)
You may deploy this tool to the cloud using a light Alpine Docker image.
> Note: Make sure to explicitly enter 'y' or 'n' to the interactive prompt
```bash
git clone https://github.com/649/Memcrashed-DDoS-Exploit.git
cd Memcrashed-DDoS-Exploit
echo "SHODAN_KEY" > api.txt
docker build -t memcrashed .
docker run -it memcrashed```