From df15d6636a57d30620d286e569bf61d82a7b094e Mon Sep 17 00:00:00 2001 From: eshedruf <76523915+eshedruf@users.noreply.github.com> Date: Tue, 21 May 2024 15:18:30 +0300 Subject: [PATCH] tor, torify: add pages (#12810) --- pages/linux/tor.md | 36 ++++++++++++++++++++++++++++++++++++ pages/linux/torify.md | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 pages/linux/tor.md create mode 100644 pages/linux/torify.md diff --git a/pages/linux/tor.md b/pages/linux/tor.md new file mode 100644 index 000000000..44cc3a165 --- /dev/null +++ b/pages/linux/tor.md @@ -0,0 +1,36 @@ +# tor + +> Enable anonymous communication through the Tor network. +> More information: . + +- Connect to the Tor network: + +`tor` + +- Start a Tor relay: + +`tor --relay` + +- View Tor configuration: + +`tor --config` + +- Check Tor status: + +`tor --status` + +- Run as client only: + +`tor --client` + +- Run as relay: + +`tor --relay` + +- Run as bridge: + +`tor --bridge` + +- Run as a hidden service: + +`tor --hidden-service` diff --git a/pages/linux/torify.md b/pages/linux/torify.md new file mode 100644 index 000000000..2a51e3836 --- /dev/null +++ b/pages/linux/torify.md @@ -0,0 +1,32 @@ +# torify + +> Route network traffic through the Tor network. +> More information: . + +- Route traffic via Tor: + +`torify {{command}}` + +- Toggle Tor in shell: + +`torify {{on|off}}` + +- Spawn a Tor-enabled shell: + +`torify --shell` + +- Check for a Tor-enabled shell: + +`torify show` + +- Specify Tor configuration file: + +`torify -c {{config-file}} {{command}}` + +- Use a specific Tor SOCKS proxy: + +`torify -P {{proxy}} {{command}}` + +- Redirect output to a file: + +`torify {{command}} > {{path/to/output}}`