Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Securing a connection using TOR

Tags:

java

tor

api

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.

like image 445
user2003470 Avatar asked Nov 04 '22 06:11

user2003470


1 Answers

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.

like image 109
Matej 'Yin' Gagyi Avatar answered Nov 08 '22 08:11

Matej 'Yin' Gagyi