Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个通过 Internet 使用客户端/服务器方法的程序。我想为我的客户提供通过 TOR 网络隧道的选项,以实现完全保密并防止追踪服务器源。这可能吗?有没有图书馆可以做到这一点?假设它不是一个可行的选择,还有其他建议吗?
参考: http://en.wikipedia.org/wiki/Tor_(anonymity_network)
假设客户端安装了 Privoxy,那么是的。
request.Proxy = new WebProxy("127.0.0.1:8118"); // Default port for privoxy
然后这些请求将通过 Tor。