Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

c#

tor

privacy

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)

like image 843
stormist Avatar asked Oct 05 '22 21:10

stormist


1 Answers

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.

like image 144
Ryan McDonough Avatar answered Oct 18 '22 12:10

Ryan McDonough