PG-RSCA-2526-TorAttack/experiment-infra/victim/script.sh

9 lines
166 B
Bash

#!/bin/bash
while [ true ];
do
printf "Fetching from $TARGET."
curl --silent --socks5 127.0.0.1:9050 $TARGET > /dev/null;
echo " Ok."
sleep 10;
done;