PG-RSCA-2526-TorAttack/experiment-infra/victim/script.sh
2025-06-02 10:42:37 +02:00

10 lines
250 B
Bash
Executable File

#!/bin/bash
echo Waiting 10 seconds for Tor to boot up
sleep 10
while true; do
curl --socks5 127.0.0.1:9050 https://rsca.vanrissenbeck.com/100MB.bin > /dev/null
echo "Downloaded 100MB. Waiting for 5 seconds before next download."
sleep 5
done