jseidl / Multi-TOR

Shellscript opens multiple TOR instances
109 stars 43 forks source link

How to handle multiple torify|torsocket requests using multi-tor? #3

Closed crymates closed 7 years ago

crymates commented 7 years ago

E.g. we have

torify curl ifconfig.me

How to create torify2, torify3, torify4 and others to handle multiple requests with different connections simultanously?

So that we can start multiple scripts using different connections.

Like:

bash_1.sh
torify curl ifconfig.me
...

bash_2.sh
torify2 curl ifconfig.me
...

bash_3.sh
torify3 curl ifconfig.me
...
jseidl commented 7 years ago

Please refer to https://www.slideshare.net/jseidl/slides-the-jerichoattackperspective

On Mon, Feb 20, 2017 at 11:36 AM, yololetsplay notifications@github.com wrote:

E.g. we have

torify curl ifconfig.me

How to create torify2, torify3, torify4 and others to handle multiple requests with different connections simultanously?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/jseidl/Multi-TOR/issues/3, or mute the thread https://github.com/notifications/unsubscribe-auth/AARRoW4Z64s1ty3EsN8myaPnsCRc6_tpks5rec8BgaJpZM4MGdIC .

jseidl commented 7 years ago

Also check torify help to see if you can supply different configuration files on the command line

On Mon, Feb 20, 2017 at 11:47 AM, Jan Seidl jseidl@wroot.org wrote:

Please refer to https://www.slideshare.net/jseidl/slides-the- jerichoattackperspective

On Mon, Feb 20, 2017 at 11:36 AM, yololetsplay notifications@github.com wrote:

E.g. we have

torify curl ifconfig.me

How to create torify2, torify3, torify4 and others to handle multiple requests with different connections simultanously?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/jseidl/Multi-TOR/issues/3, or mute the thread https://github.com/notifications/unsubscribe-auth/AARRoW4Z64s1ty3EsN8myaPnsCRc6_tpks5rec8BgaJpZM4MGdIC .

crymates commented 7 years ago

Will do, thx.