Reputation: 3833
Are there any possible tutorials or libaries that could be used to secure a connection through using TOR? I've looked for some example usage but my research didn't yield any solid results. I came across this list of projects but the links dont really seem to lead to libraries or an API.
What i want to do is secure a connection between a client application and a cassandra server by connecting to TOR.
Any help would be appreciated.
Upvotes: 4
Views: 772
Reputation: 409
Tor works as a proxy running on your localhost and tunneling each request through Tor network. In your application, pass your request through the proxy. Tor proxies SOCKS5 as well as HTTP.
Upvotes: 2