torghost
torghost copied to clipboard
Change Tor ip automatically.
Is their a way to change the tor ip automatically every few seconds with this tool? Thanks.
#!/bin/bash a=1 x=60 while [[ $a -gt 0 ]] do torghost -r sleep $x done
Thx @VP-TBY I tried your script but it will get error if the torghost has not started before it. So I modified and use "torghost -s" instead of "torghost -r" and it could both start the torghost at first run and keep changing the IP after "x" seconds.
#!/bin/bash
a=1
x=60
while [[ $a -gt 0 ]]
do
torghost -s
sleep $x
done