Skip to content

Instantly share code, notes, and snippets.

@jpbarto
Last active April 8, 2021 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpbarto/8d1032131d5840fd5c95307af76145bd to your computer and use it in GitHub Desktop.
Save jpbarto/8d1032131d5840fd5c95307af76145bd to your computer and use it in GitHub Desktop.
Chaos Shell Scripts
#!/usr/bin/env bash
###############################################################################################
#
# The following shell script uses the AWS CLI to forcefully detach a non-root volume from a
# running EC2 instance. In preliminary testing this produced a read-only filesystem on a
# running host with the volume mounted. This is intended to grossly simulate communication
# errors with the EBS volume from an EC2 instance.
#
# Note that this script will NOT detach the root volume from an EC2 instance.
#
###############################################################################################
set -e
REGION=eu-west-1
VOLUME=vol-03e1234a1234a9e1c
aws ec2 detach-volume --volume-id $VOLUME --region $REGION --force
#!/usr/bin/env bash
###############################################################################################
#
# The following shell script uses AWS Systems Manager to execute multiple instances of DD in
# order to create large files (each approximately 12 GB in size) with the objective being to
# fill the disk to capacity.
#
# Output for the shell script that executes on the EC2 instance can be obtained from Systems
# Manager Run Command either through the AWS Console or using the AWS CLI.
#
###############################################################################################
set -e
EC2_INSTANCE_ID="i-0ade12e1fef123e24"
REGION="eu-west-3"
aws ssm send-command \
--document-name "AWS-RunShellScript" \
--targets "Key=instanceids,Values=$EC2_INSTANCE_ID" \
--region $REGION \
--parameters 'commands=[
"echo Filling disk with 120 GB of 0 using dd...",
"cd /mnt",
"for i in 0 1 2 3 4 5 6 7 8 9",
"do",
"dd if=/dev/zero of=./zero-filler.$i bs=256M count=50 &",
"done",
"df -h"
]'
#!/usr/bin/env bash
###############################################################################################
#
# The following shell script takes an EC2 instance ID and then, using a NACL, allows and denies
# IP egress / ingress from and to the EC2 instance.
#
# To do this the script will create a new NACL that blocks all traffic to or from the IP
# address of the EC2 instance. The NACL will then be associated with the subnet containing
# the EC2 instance. The script will then, for $RUN_TIME seconds, continually create and
# delete entries in the NACL to allow or deny network activity to the EC2 instance. The script
# will first deny traffic for a random number of seconds (1 to 10 seconds) and then allow
# traffic for a random number of seconds, until $RUN_TIME has been reached.
#
# After $RUN_TIME seconds the script will restore the original NACL association of the subnet
# and delete the NACL that was created for the test.
#
###############################################################################################
set -e
# identify the EC2 instance ID to be targeted by NACL rules
INSTANCE_ID=$1
# detect metadata about the instance and its environment
IP_ADDR=$(aws ec2 describe-instances --instance-ids $INSTANCE_ID --query 'Reservations[0].Instances[0].NetworkInterfaces[0].PrivateIpAddress' --output text)
VPC_ID=$(aws ec2 describe-instances --instance-ids $INST --query 'Reservations[0].Instances[0].VpcId' --output text)
SUBNET_ID=$(aws ec2 describe-instances --instance-ids $INST --query 'Reservations[0].Instances[0].NetworkInterfaces[0].SubnetId' --output text)
ORIG_NACL_ID=$(aws ec2 describe-network-acls --filters Name=association.subnet-id,Values=$SUBNET_ID --query 'NetworkAcls[0].NetworkAclId' --output text)
ORIG_NACL_ASSOC_ID=$(aws ec2 describe-network-acls --filters Name=association.subnet-id,Values=$SUBNET_ID --query 'NetworkAcls[0].Associations' | jq -r --arg snid $SUBNET_ID 'map(select(.SubnetId==$snid))[0].NetworkAclAssociationId')
# limit the time this script will run
RUN_TIME=300 # execute for $RUN_TIME seconds
STOP_TIME=$(( `date +%s` + $RUN_TIME ))
function print_log {
echo [`date`]: $1
}
# function to add blocking NACL entries to a NACL
function block_ip {
aws ec2 create-network-acl-entry --network-acl-id $1 --rule-number 100 --cidr-block "$2/32" --egress --protocol all --port-range From=0,To=65535 --rule-action deny
aws ec2 create-network-acl-entry --network-acl-id $1 --rule-number 110 --cidr-block "$2/32" --ingress --protocol all --port-range From=0,To=65535 --rule-action deny
}
# function to remove blocking NACL entries from a NACL
function allow_ip {
aws ec2 delete-network-acl-entry --network-acl-id $1 --rule-number 100 --egress
aws ec2 delete-network-acl-entry --network-acl-id $1 --rule-number 110 --ingress
}
print_log "Preparing to flutter network traffic to / from $INSTANCE_ID for $RUN_TIME seconds"
NEW_NACL_ID=$(aws ec2 create-network-acl --vpc-id $VPC_ID --query 'NetworkAcl.NetworkAclId' --output text)
print_log "Created a network access control list with ID $NEW_NACL_ID"
print_log "Targeting instance ENI with IP address $IP_ADDR"
NEW_NACL_ASSOC_ID=$(aws ec2 replace-network-acl-association --association-id $ORIG_NACL_ASSOC_ID --network-acl-id $NEW_NACL_ID --query 'NewAssociationId' --output text)
while [[ `date +%s` < $STOP_TIME ]]
do
SLEEP_TIME=$(( ( $RANDOM % 10 ) + 1 ))
print_log "Disabling traffic to / from $IP_ADDR for $SLEEP_TIME seconds"
block_ip $NEW_NACL_ID $IP_ADDR
sleep $SLEEP_TIME
SLEEP_TIME=$(( ( $RANDOM % 10 ) + 1 ))
print_log "Enabling traffic to / from $IP_ADDR for $SLEEP_TIME seconds"
allow_ip $NEW_NACL_ID $IP_ADDR
sleep $SLEEP_TIME
done
print_log "Terminating test"
NEW_OLD_NACL_ASSOC_ID=$(aws ec2 replace-network-acl-association --association-id $NEW_NACL_ASSOC_ID --network-acl-id $ORIG_NACL_ID)
aws ec2 delete-network-acl --network-acl-id $NEW_NACL_ID
print_log "Deleted the network access control list with ID $NEW_NACL_ID"
#!/usr/bin/env bash
###############################################################################################
#
# The following shell script uses AWS Systems Manager to install and use tcconfig to manipulate
# the OS network stack to drop 30% of the packets sent to a target IP address.
#
# https://tcconfig.readthedocs.io/en/latest/index.html
#
# To do this the shell script will use the Run Command capability of Systems Manager to
# execute a shell script on the specified EC2 instance. The SSM Agent on the EC2 instance
# will then download, install, and use `tcconfig` to insert a rule which drops 30% of packets
# sent to the target IP address. The script will allow this to persist for 5 minutes before
# deleting the rule and allowing the EC2 instance to resume normal operation.
#
# Output for the shell script that executes on the EC2 instance can be obtained from Systems
# Manager Run Command either through the AWS Console or using the AWS CLI.
#
###############################################################################################
set -e
EC2_INSTANCE_ID="i-01ed12345ec123456"
TARGET_IP="10.0.1.164"
TEST_DURATION=300
REGION="eu-central-1"
aws ssm send-command \
--document-name "AWS-RunShellScript" \
--targets "Key=instanceids,Values=$EC2_INSTANCE_ID" \
--region $REGION \
--parameters 'commands=[
"yum install -q -y python3-pip iproute-tc",
"pip3 install -qq tcconfig",
"echo Current tc rules...",
"tcshow eth0",
"echo Configuring packet loss...",
"tcset eth0 --loss 30.0% --network '$TARGET_IP'",
"tcshow eth0",
"echo Sleeping for '$TEST_DURATION' seconds...",
"sleep '$TEST_DURATION'",
"echo Clearing tc rules...",
"tcdel eth0 --all",
"tcshow eth0"
]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment