WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

oranguthang/python_https_proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

python_https_proxy

Example of HTTP/HTTPS proxy with the possibility of mitm attack in pure Python

This proxy passes browser traffic through itself and send all responses to user

To use it, you need to generate certificates using the commands:

  1. openssl genrsa -out ca.key 2048
  2. openssl req -new -x509 -days 7 -key ca.key -out ca.crt -subj "/CN=python_https_proxy CA"
  3. openssl genrsa -out cert.key 2048

Then install the ca.crt certificate to the browser and specify the address and port of the proxy server in the browser settings

About

Example of HTTP/HTTPS proxy with the possibility of MITM attack in pure Python

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages