TorProxy is a lightweight Python-based proxy server that integrates the Tor network to route your internet traffic, enhancing privacy and helping to bypass censorship. Notably, it includes the tor.exe
executable, allowing the Tor service to run without requiring a separate installation.
- Integrated Tor Executable: Bundles
tor.exe
to run the Tor service directly. - Python-Based Proxy Server: Handles proxy connections through a simple Python script.
- User Interface: Includes a basic UI (
ui.py
) for running the proxy. - Modular Design: Structured with separate modules for Tor connection (
tor.py
), proxy handling (proxy.py
), and initialization (__init__.py
).
-
Clone the Repository:
git clone https://github.com/nima-salamat/TorProxy.git cd TorProxy
-
Start the Proxy:
python ui.py
Tor/
: Contains thetor.exe
executable and related files.tor.py
: Handles connections to the Tor network.proxy.py
: Manages the proxy server functionality.ui.py
: Provides a user interface for easier control.__init__.py
: Initializes the Python package.
- Ensure that
tor.exe
has the necessary permissions to run on your system. - Modify configurations in
tor.py
andproxy.py
as needed to suit your requirements.