This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import socket | |
import select | |
import threading | |
HOST = '' | |
PORT = 50007 | |
# use https or socks5 and use the same protocol on pc | |
PROXYHOST = 'your proxy server' | |
PROXYPORT = 8080 |