-
Notifications
You must be signed in to change notification settings - Fork 3
Running HTPT
ben-jones edited this page Mar 19, 2014
·
2 revisions
- Flask-> run
sudo apt-get install python-flask
- Start the server side of the bridge with
python htpt.py -server - Start the server "Tor" process by opening a socket on port 8001. Within the python interpreter, run
import socket,sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM, andsock.connect(('127.0.0.1', 8001)) - Start the client side of the bridge with
python htpt.py -client - Start the client "Tor" process by opening a socket on port 8001. Within the python interpreter, run
import socket,sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM, andsock.connect(('127.0.0.1', 8001))