8000 GitHub - PranavRao25/HTTP-Proxy
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

PranavRao25/HTTP-Proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

HTTP-Proxy

General Information

This is a Python Implementation of HTTP Proxy in two methods: Threaded & Async
This is done as part of the CS4010 Computer Networks Laboratory

About Proxies

HTTP Proxies acts as content filters on the HTTP traffic. These are fit on top of browsers by clients who can choose to process the any information being communicated
Here, we can create a Proxy server that acts like a gateway between users and the Internet

Our Proxy Rules

  1. Each request being sent is set such that the Connection field is made Closed instead of Keep-Alive
  2. Any Proxy connection is similarly converted into Closed instead of Keep-Alive
  3. We lower the HTTP version to HTTP 1.0

How to use it

There are two implementations: Threaded and Async
We have made two executables which can be run on the command line
They each accept two arguments: host and port details
The log would be printed on the console

  1. ./Threaded/ThreadedProxySetup <server_address> <server_port>
  2. ./Async/AsyncProxySetup <server_address> <server_port>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0