Skip to content

huixue/twproxy

 
 

Repository files navigation

This is a very basic HTTP proxy.  Currently it will create a new
thread for each new client connection and use blocking I/O calls to
get the request from the browser and then get a reply from the server.

To use the SSL/TLS MITM functionality you will need to generate a
private key and a self-signed certificate.  To generate a key you can
use the following command:

openssl genrsa -out privkey.pem 2048

and for a self-signed certificate using that private key:

openssl req -new -x509 -key privkey.pem -out cacert.pem -days 1095

For more information about certificates and key, please refer to the
openssl documentation, which is where these examples came from.

About

A multi threaded HTTP proxy

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 53.4%
  • C++ 46.6%