gitmyhub

naiveproxy

C++ ★ 9.2k updated 7d ago

Make a fortune quietly

A proxy tool that disguises your internet traffic to look exactly like Chrome browser activity, making it very hard for censorship or filtering systems to detect or block.

C++ChromiumCaddysetup: hardcomplexity 4/5

NaiveProxy is a proxy tool built to help people access the internet in environments where traffic is monitored and selectively blocked, commonly called censorship or filtering. It works by disguising internet traffic so that it looks indistinguishable from ordinary web browsing using a Chrome browser. This makes it significantly harder for blocking systems to identify and stop.

The way it achieves this disguise is by reusing Chromium's actual network code, the same code that powers the Chrome browser. Because the traffic it produces comes from the same code a real Chrome browser uses, it passes many of the fingerprinting and inspection techniques that censorship systems rely on. Additional protections include hiding the proxy server behind an ordinary web server (so that anyone probing the server from outside just sees a normal website), adding random padding to packet lengths to obscure usage patterns, and routing traffic through standard web protocols rather than protocols that look unusual.

The setup has two parts. A server component runs on a machine outside the restricted network, typically using a web server tool called Caddy to handle incoming connections. A client component runs on the user's local machine and creates a local proxy endpoint that other applications can route traffic through.

NaiveProxy supports Windows, Linux, macOS, Android (through several third-party apps), and OpenWrt (a router operating system). It also integrates with the v2rayN graphical client for users who prefer not to use the command line.

The README contains a detailed technical section explaining the padding protocol it uses to blend traffic lengths with typical browser behavior. The full README is longer than what was shown.

Where it fits