I have seen implementations such as the Tor Browser Bundle and a TorChat, based on the Tor network. I was wondering if there were any more of them out there?
3 Answers
For starters, there is main tor implementation, the one in C.
There is also a Java version of Tor in development, called JTor, however it has not be 'released' yet.
Finally, there is an implementation of Tor written in python using the Scapy library called TorPylle, but it is an experimental implementation more to explain the protocol and should not be used.
There also exist number of projects that use tor as backend, but do not itself implement it (they might bundle tor, but do not maintain their own source code). There is a list of projects that The Tor Project maintains.
- 691
- 5
- 15
- 266
- 1
- 5
check out this (my own project): https://github.com/briand-hub/toresp32 client/proxy for Linux and ESP32 platform. Very well commented code for educational purposes, written in modern C++! Hope helps you, bye!
- 21
- 2