Reputation: 5905
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)
Upvotes: 5
Views: 3774
Reputation: 10012
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.
Upvotes: 4