TorSharp
Use Tor for your C# HTTP clients. Use Privoxy or .NET 6+ SOCKS support to proxy HTTP traffic.
Install / Use
/learn @joelverhagen/TorSharpREADME
TorSharp
Use Tor for your C# HTTP clients. Use Privoxy or .NET 6+ SOCKS support to proxy HTTP traffic.
All you need is client code that can use a simple HTTP proxy.
Notice
This product is produced independently from the Tor® anonymity software and carries no guarantee from The Tor Project about quality, suitability or anything else.
Details
- Supports:
- .NET Core (.NET Standard 2.0 and later, including .NET 5+)
- .NET Framework (.NET Framework 4.6.2 and later)
- Windows
- ✔️ Windows 10 version 1903
- ✔️ Windows 11 version 21H2
- Older Windows should work too
- Linux
- ✔️ Ubuntu 20.04
- ✔️ Ubuntu 18.04
- ✔️ Ubuntu 16.04
- ✔️ Debian 10
- ⚠️ Debian 9 (confirmed by a user but may have issues)
- ⚠️ CentOS 7 supported via
ExecutablePathOverride(see below) - ⚠️ Alpine 3.18 supported via
ExecutablePathOverride(must runapk add tor privoxyorapk add torand disable Privoxy)
- ❌ Mac OS X support is not planned. I don't have a Mac 😕
- Uses Privoxy to redirect HTTP proxy traffic to Tor (can be disabled).
- On Windows, uses virtual desktops to manage Tor and Privoxy processes and hide the windows so it's cleaner.
- Optionally downloads the latest version of Tor and Privoxy for you.
Install
dotnet add package Knapcode.TorSharp
Example using .NET 6+ SOCKS support
Starting on .NET 6, there is built-in support for SOCKS proxies. This means you don't need Privoxy. Thanks, .NET team!
See samples/NativeSocksProxy/Program.cs for a working sample.
var settings = new TorSharpSettings
{
PrivoxySettings = { Disable = true }
};
// download Tor
using (var httpClient = new HttpClient())
{
var fetcher = new TorSharpToolFetcher(settings, httpClient);
await fetcher.FetchAsync();
}
// execute
using (var proxy = new TorSharpProxy(settings))
{
await proxy.ConfigureAndStartAsync();
var handler = new HttpClientHandler
{
Proxy = new WebProxy(new Uri("socks5://localhost:" + settings.TorSettings.SocksPort))
};
using (handler)
using (var httpClient = new HttpClient(handler))
{
var result = await httpClient.GetStringAsync("https://check.torproject.org/api/ip");
Console.WriteLine();
Console.WriteLine("Are we using Tor?");
Console.WriteLine(result);
}
proxy.Stop();
}
Example using Privoxy
See samples/TorSharp.Sandbox/Program.cs for a working sample.
// configure
var settings = new TorSharpSettings
{
ZippedToolsDirectory = Path.Combine(Path.GetTempPath(), "TorZipped"),
ExtractedToolsDirectory = Path.Combine(Path.GetTempPath(), "TorExtracted"),
PrivoxySettings = { Port = 1337 },
TorSettings =
{
SocksPort = 1338,
ControlPort = 1339,
ControlPassword = "foobar",
},
};
// download tools
await new TorSharpToolFetcher(settings, new HttpClient()).FetchAsync();
// execute
var proxy = new TorSharpProxy(settings);
var handler = new HttpClientHandler
{
Proxy = new WebProxy(new Uri("http://localhost:" + settings.PrivoxySettings.Port))
};
var httpClient = new HttpClient(handler);
await proxy.ConfigureAndStartAsync();
Console.WriteLine(await httpClient.GetStringAsync("http://api.ipify.org"));
await proxy.GetNewIdentityAsync();
Console.WriteLine(await httpClient.GetStringAsync("http://api.ipify.org"));
proxy.Stop();
FAQ
The tool fetcher is throwing an exception. What do I do?
This most likely is happening because the URLs where we fetch Tor or Privoxy from are down or have changed. I would recommend:
-
Open an issue so I can look into it.
-
Work around the issue by setting up the tools manually and not using
TorSharpToolFetcher. See below. -
Investigate the issue yourself. The TorSharp.Sandbox project is helpful for this. Pull requests accepted 🏆.
How do I set up the tools manually?
If you don't want to use the TorSharpToolFetcher to download the latest version of the tools for you or if you want to use a specific version of Tor and Privoxy, follow these steps.
- Make a directory that will hold the zipped Tor and Privoxy binaries.
- Put a Tor Win32 ZIP in that folder with the file name like:
tor-win32-{version}.zip{version}must be parsable as aSystem.Versionmeaning it ismajor.minor[.build[.revision]].- Example:
tor-win32-0.3.5.8.zip - The ZIP is expected to have
Tor\tor.exe.
- Put a Privoxy Win32 ZIP in that folder with a file name like:
privoxy-win32-{version}.zip- Again,
{version}must be parsable as aSystem.Version. - Example:
privoxy-win32-3.0.26.zip - The ZIP is expected to have
privoxy.exe.
- Again,
- Initialize a
TorSharpSettingsinstance whereZippedToolsDirectoryis the directory created above. - Pass this settings instance to the
TorSharpProxyconstructor.
Can I run multiple instances in parallel?
Yes, you can. See this sample: samples/MultipleInstances/Program.cs.
However, you need to adhere to the following guidance.
None of the types in this library should be considered thread safe. Use separate instances for each parallel task/thread.
TorSharpProxy: this is stateful and should not be shared.TorSharpSettings: the values held in the settings class need to be different for parallel threads, so it doesn't make sense to share instances.TorSharpToolFetcher: this is stateless so it may be safe, but I would keep this a singleton since you shouldn't have multiple copies of the zipped tools (just multiple copies of the extracted tools).
Parallel threads must have different values for these settings. The defaults will not work.
- Must be made unique by you:
TorSharpSettings.ExtractedToolsDirectory: this is the parent directory of the tool working directories. Specify a different value for each thread. In the sample above, I see each parallel task to be a sibling directory, e.g.{some_root}/a,{some_root}/b, etc.TorSharpSettings.PrivoxySettings.Port: this is the Privoxy listen port. Each Privoxy process needs its own port. Can be ignored ifTorSharpSettings.PrivoxySettings.Disableistrue.TorSharpSettings.TorSettings.SocksPort: this is the Tor SOCKS listen port. Each Tor process needs its own port.
- Must be unique, but only if you set them:
TorSharpSettings.VirtualDesktopName: this is automatically generated based onExtractedToolsDirectory, but if you manually set it, it must be unique.TorSharpSettings.TorSettings.ControlPort: this is the Tor SOCKS listen port. Each Tor process needs its own port.TorSharpSettings.TorSettings.AdditionalSockPorts: if used, it must have unique values.TorSharpSettings.TorSettings.HttpTunnelPort: if used, it must have a unique value.TorSharpSettings.TorSettings.DataDirectory: the default is basedExtractedToolsDirectory, but if you manually set it, it must be unique.
In general, directory configuration values must be different from all of the other directories, except TorSharpSettings.ZippedToolsDirectory which should not be downloaded to in parallel by TorSharpToolFetcher but can be read from in parallel with multiple TorSharpProxy instances. Port configuration values need to all be unique.
How do I change what TorSharp logs?
By default, TorSharp lets the tools (Tor, Privoxy) log to the main process stdout and stderr. If you want to disable this behavior, set TorSharpSettings.WriteToConsole to false. If you want to intercept the output from the tools, attach to the TorSharpProxy.OutputDataReceived (for stdout) and TorSharpProxy.ErrorDataReceived (for stderr) events. In your event handler, you can log to some external sink or enqueue the line for processing. The event handlers are fired from a task using the default task scheduler so this blocks one of the shared worker threads. Don't do too much heavy lifting there, I guess! If you want to know which tool sent the log message, look at the DataEventArgs.ExecutablePath property.
For a full sample, see this: samples/CustomLogging/Program.cs.
Privoxy fetched by TorSharp fails to start? Try installing missing dependencies.
It's possible some expected shared libraries aren't there. Try to look at the error message and judge which library needs to be installed from your distro's package repository.
Ubuntu 20.04
Problem: On Ubuntu 20.04 the following errors may appear:
/tmp/TorExtracted/privoxy-linux64-3.0.29/usr/sbin/privoxy: error while loading shared libraries: libmbedtls.so.12: cannot open shared object file: No such file or directory
Solution: install the missing dependencies. Note that these steps install packages from the Debian repository. This is very much not recommended by official guidance. For my own testing, it works well enough. I use this trick in the GitHub Action workflow. ⚠️ Do this at your own risk!
[joel@ubuntu]$ curl -O http://ftp.us.debian.org/debian/pool/main/m/mbedtls/libmbedcrypto3_2.16.0-1_amd64.de
Related Skills
openhue
344.1kControl Philips Hue lights and scenes via the OpenHue CLI.
sag
344.1kElevenLabs text-to-speech with mac-style say UX.
weather
344.1kGet current weather and forecasts via wttr.in or Open-Meteo
tweakcc
1.5kCustomize Claude Code's system prompts, create custom toolsets, input pattern highlighters, themes/thinking verbs/spinners, customize input box & user message styling, support AGENTS.md, unlock private/unreleased features, and much more. Supports both native/npm installs on all platforms.
