Search code examples
c#privacytor

Is it possible to utilize the TOR network in a .net program?


I have a program that utilizes a client/server approach over the Internet. I'd like to offer my customers the option to tunnel through the TOR network for complete confidentiality and protection against tracing the servers source. Is this possible? Are there any libraries for accomplishing this? Assuming its not a viable option are there any other suggestions?

references: http://en.wikipedia.org/wiki/Tor_(anonymity_network)


Solution

  • Assuming the client has Privoxy installed then yes.

    request.Proxy = new WebProxy("127.0.0.1:8118");  // Default port for privoxy
    

    Those requests will then go through Tor.