HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

torsocks — Route the traffic of any application through the Tor network. Note: `torsocks` will assume that it s

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandanyroutetorsockstrafficcliapplication
linux

Problem

How to use the torsocks command: Route the traffic of any application through the Tor network. Note: torsocks will assume that it should connect to the Tor SOCKS proxy running at 127.0.0.1:9050 being the defaults of the Tor daemon. More information: <https://manned.org/torsocks>.

Solution

torsocks — Route the traffic of any application through the Tor network. Note: torsocks will assume that it should connect to the Tor SOCKS proxy running at 127.0.0.1:9050 being the defaults of the Tor daemon. More information: <https://manned.org/torsocks>.

Run a command using Tor:
torsocks {{command}}


Enable or disable Tor in this shell:
. torsocks {{on|off}}


Spawn a new Tor enabled shell:
torsocks --shell


Check if current shell is Tor enabled ($LD_PRELOAD value will be empty if disabled):
torsocks show


Isolate traffic through a different Tor circuit, improving anonymity:
torsocks {{[-i|--isolate]}} {{curl https://check.torproject.org/api/ip}}


Connect to a Tor proxy running on a specific address and port:
torsocks {{[-a|--address]}} {{ip_address}} {{[-P|--port]}} {{port}} {{command}}

Code Snippets

Run a command using Tor

torsocks {{command}}

Enable or disable Tor in this shell

. torsocks {{on|off}}

Spawn a new Tor enabled shell

torsocks --shell

Check if current shell is Tor enabled (`$LD_PRELOAD` value will be empty if disabled)

torsocks show

Isolate traffic through a different Tor circuit, improving anonymity

torsocks {{[-i|--isolate]}} {{curl https://check.torproject.org/api/ip}}

Context

tldr-pages: linux/torsocks

Revisions (0)

No revisions yet.