2 Repos
Modular frameworks for organizing network connection handling into layered protocol stacks.
Distinguishing note: Focuses on the architectural stack pattern for proxying, distinct from generic load balancers or simple reverse proxies.
Explore 2 awesome GitHub repositories matching networking & communication · Proxy Stacks. Refine with filters or upvote what's useful.
Mitmproxy is an interactive, programmable network proxy engine designed for traffic analysis and protocol manipulation. It functions as a gateway that intercepts, inspects, and modifies network traffic in real-time, supporting HTTP, HTTPS, WebSocket, DNS, and generic TCP or UDP streams. By acting as a trusted certificate authority, the proxy can dynamically generate and sign certificates to decrypt and analyze secure TLS-encrypted connections. The project distinguishes itself through a highly extensible, event-driven architecture that allows users to automate traffic transformation using cust
Organizes connection handling into a stack of protocol layers to manage transitions between raw sockets and application data.
AnyProxy is an HTTP/HTTPS proxy framework built on Node.js that intercepts and modifies traffic through a plugin system. It functions as a configurable proxy server where user-defined plugins inspect or alter requests and responses as they pass through the proxy. The framework distinguishes itself through a middleware stack that processes requests sequentially, enabling modular traffic transformation and logging. It handles HTTPS interception by dynamically generating and installing root certificates for transparent decryption, and routes traffic based on configurable rules matching request p
Provides a middleware stack that processes requests sequentially for modular traffic transformation and logging.