Skip to content
This repository has been archived by the owner on Mar 12, 2021. It is now read-only.

Change Tor ip automatically. #77

Open
blakeboy01 opened this issue Apr 23, 2020 · 2 comments
Open

Change Tor ip automatically. #77

blakeboy01 opened this issue Apr 23, 2020 · 2 comments

Comments

@blakeboy01
Copy link

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

@VP-TBY
Copy link

VP-TBY commented May 4, 2020

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

@tquentin
Copy link

tquentin commented Jun 17, 2020

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

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants