torghost icon indicating copy to clipboard operation
torghost copied to clipboard

Change Tor ip automatically.

Open blakeboy01 opened this issue 4 years ago • 2 comments

Is their a way to change the tor ip automatically every few seconds with this tool? Thanks.

blakeboy01 avatar Apr 23 '20 15:04 blakeboy01

#!/bin/bash a=1 x=60 while [[ $a -gt 0 ]] do torghost -r sleep $x done

VP-TBY avatar May 04 '20 20:05 VP-TBY

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

tquentin avatar Jun 17 '20 04:06 tquentin