Skip to content

RenLynxia/proxy-whit-c

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Simple Proxy Server Guide

  1. Setup & Compile First, make sure you have OpenSSL and Tor installed. Then, compile the code in your terminal:

g++ proxy.cpp -o proxy -lssl -lcrypto -lpthread

  1. Certificate Create a private certificate for a secure connection using OpenSSL. Just use dummy data when prompted.

openssl req -x509 -newkey rsa:4096 -keyout private_key.pem -out certificate.pem -sha256 -days 365 -nodes

  1. Run & Configure Browser Run the program (./proxy). If successful, set your browser's HTTPS proxy to localhost:8443.

  2. Verification Open any HTTPS site. Ignore the security warning. If you see logs in your terminal, your program works!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages