Make a fortune quietly
Find a file
2019-01-16 09:58:37 -05:00
src Fix QUIC auth scheme 2019-01-16 08:06:17 -05:00
tests Fix --proxy parsing 2019-01-16 08:06:17 -05:00
tools Add source import tool 2019-01-14 09:47:17 -05:00
.appveyor.yml Add documentation 2019-01-15 02:29:06 -05:00
.gitignore Add .gitignore 2019-01-14 09:47:17 -05:00
.travis.yml Add documentation 2019-01-15 02:29:06 -05:00
CHROMIUM_VERSION Add source import tool 2019-01-14 09:47:17 -05:00
LICENSE Add LICENSE 2019-01-14 09:47:17 -05:00
README.md Update README.md 2019-01-16 09:58:37 -05:00
USAGE.txt Add documentation 2019-01-15 02:29:06 -05:00

NaiveProxy Build Status Build status

A secure, censorship-resistent proxy.

NaiveProxy is naive as it simply reuses standard protocols (HTTP/2, HTTP/3) and common network stacks (Chrome, Caddy) with little room for variations. By being as common and boring as possible NaiveProxy is practically indistinguishable from mainstream traffic. Reusing common software stacks also ensures best practices in performance and security.

The following attacks are mitigated:

Architecture

[Browser → Naive (client)] ⟶ Censor ⟶ [Frontend → Naive (server)] ⟶ Internet

NaiveProxy uses Chromium's network stack. What the censor can see is exactly regular HTTP/2 traffic between Chrome and Frontend (e.g. Caddy, HAProxy).

Frontend also reroutes unauthenticated users and active probes to a backend HTTP server, making it impossible to detect the existence of a proxy:

Probe ⟶ [Frontend → Nginx] ⟶ index.html

Download

See latest release.

Note: On Linux libnss3 must be installed before using the prebuilt binary.

Setup

Locally run ./naive --proxy=https://user:pass@domain.example and point the browser to a SOCKS5 proxy at port 1080.

On the server run ./caddy -quic as the frontend and ./naive --listen=http://127.0.0.1:8080 behind it. See Server Setup for detail.

For more information on parameter usage, see USAGE.txt. See also Parameter Tuning to improve client-side performance.

Portable setup

Browser ⟶ Caddy ⟶ Internet

You can get 80% of what NaiveProxy does without NaiveProxy: run Caddy as an HTTP/2 or HTTP/3 forward proxy directly.

But this setup is prone to basic traffic analysis due to lack of obfuscation. Also, the browser will introduce an extra 1RTT delay during proxy connection setup.

Build

If you don't like to use downloaded binaries, you can build it.

Prerequisites:

  • Ubuntu (apt-get install): git, python2, ninja-build (>= 1.7), pkg-config, libnss3-dev, ccache (optional)
  • MacOS (brew install): git, ninja, ccache (optional)
  • Windows (choco install): git, python2, ninja, visualstudio2017community. See Chromium's page for detail on Visual Studio setup requirements.

Build it:

git clone https://github.com/klzgrad/naiveproxy.git
cd naiveproxy/src
./get-clang.sh
./build.sh

The build scripts download tools from Google servers with curl. If there is trouble try to set a proxy environment variable for curl, e.g. export ALL_PROXY=socks5h://127.0.0.1:1080.

Verify:

./out/Release/naive --log &
curl -v --proxy socks5h://127.0.0.1:1080 google.com

FAQ

Why not use Go, Node, etc.?

Their TLS stacks have distinct features that can be easily detected and generally TLS parameters are very distinguishable.

Previously, Tor tried to mimic Firefox's TLS signature and still got identified and blocked by firewalls, because that signature was of an outdated version of Firefox and the firewall determined the rate of collateral damage would be acceptable. It would be unacceptable to block the most commonly used browsers.