Non-caching HTTP proxy in python.
>>> python server.py
Listening @ 127.0.0.1:8080
-h <host:port> for hosting tcp server
-p <host:port> for socks 5 proxy
- ThreadingHTTPServer
- Support socks 5 forward
- Persistent connection
- Supported HTTP commands
- GET
- POST
- HEAD
- PUT
- DELETE
- CONNECT
- Support authentication forward
- HTTPS
- Act as "tunnel", blindly exchange the bytes between client and server.
- keep-alive: 30
- Python 3.6