404 acts as the middleman between you and those collecting your data. more... Rust privacy proxy & Linux kernel module. Full client-fingerprint control.
404 is a dual-module network application designed to give uers profile-driven control over multiple layers of their fingerprint: TCP/IP options (TTL, MSS, etc.), TLS cipher-suite, HTTP headers, browser APIs, canvas, WebRTC, and more...
Manual Links:
demo.mp4
By running this software you understand that:
- This proxy will generate a local CA and key-pair on its first run. As of now, there is no functionality or instructions for removing these from your trust store.
- This proxy terminates TLS, usernames and passwords that pass through this proxy may be temporarily stored/visible in local only logs. Do not share logs.
- This is beta software - no warranty, no guarantees, minimal support.
...and agree that:
- You will not use your primary accounts.
- You will not share your CA certificate with anyone.
- If you find a security issue report it to [email protected]
Main Discussion: GitHub discussions
Alternative community options coming soon!
Got questions? [Email Me}(mailto:[email protected])
404 houses two main modules:
- STATIC Proxy - Synthetic Traffic and TLS Identity Camouflage
- Linux eBPF module
The STATIC proxy is built from the ground up and wired specifically to give the user granular control over their online fingerprint. Not just their browser fingerprint, but any device or app they choose to route through the proxy.
That runtime contract now reaches:
- request headers and client hints
- upstream TLS hello variants and HTTP/2 behavior
- iframe propagation and worker bootstrap state
- canvas, WebGL, audio, media device, and related browser surfaces
Profile data does still drive the upstream TLS plan. STATIC passes profile-defined cipher suites, signature algorithms, curves, ALPN, and extension ordering into the wreq adapter, but exact wire-level parity is still bounded by what wreq and its TLS backend can actually emit. Unsupported claims stay in the validator as warnings, not promises of packet-perfect parity.
Best practice is to stay within your native browser family. Chromium users should choose Chromium-family profiles such as Chrome or Edge. Firefox users should choose Firefox-family profiles such as Firefox. STATIC does not hard-enforce that policy for manual operators; higher-level wrappers can be stricter if they want to be.
Don't believe me? Check my work...
- https://demo.fingerprint.com/playground
- https://browserleaks.com/
- https://coveryourtracks.eff.org/
- https://whatismybrowser.com/
- https://httpbin.org/headers
The eBPF module is, again, quite simple. It leverages powerful, fast, well documented, low-level Linux kernel hooks. By attaching eBPF programs to Linux's Traffic Control (tc) egress hooks, we can mutate packets extensively.
Currently, the following is implemented:
**IPv4:**
- TTL (Time To Live) -> forced to 255
- TOS (Type of Service) -> set to 0x10
- IP ID (Identification) -> randomized per packet
- TCP window size -> 65535
- TCP initial sequence number -> randomized (again)
- TCP window scale -> 5
- TCP MSS (Maximum Segment Size) -> 1460
- TCP timestamps -> randomized
**IPv6:**
- Hop limit -> forced to 255
- Flow label -> randomizedIf you downloaded a release build, keep the profiles/ directory beside the binary.
The proxy now requires an explicit profile selection. If no profile is set, it will refuse to start instead of silently picking one for you.
Pick the profile that matches your native browser family. For example, use edge-windows or chrome-windows on Chromium-family browsers, and firefox-windows on Firefox-family browsers.
Windows
cd $HOME\Downloads\404_REL # wherever your ./static binary lives.
.\static.exe --list-profiles
.\static.exe --profile edge-windowsLinux / macOS
cd ~/Downloads/404_REL # wherever your ./static binary lives.
chmod +x ./static
./static --list-profiles
./static --profile edge-windowsUseful flags:
--profile <name>selects the active runtime profile.--profiles-path <path>points STATIC at a different profile directory.--bind-address <addr>changes the listener address. default 127.0.0.1--bind-port <port>changes the listener port.--list-profilesprints the discovered profiles and exits.
Important listener note:
- If you run with the repo sample config, the listener is
127.0.0.1:4040. - If you run the standalone binary without a config file, STATIC falls back to built-in CLI defaults and listens on
127.0.0.1:8443. - The localhost control plane binds on
listener_port + 2.
Example with an explicit listener override:
.\static.exe --profile edge-windows --bind-address 127.0.0.1 --bind-port 4040Developer Tip: All commands can be copy pasted into your terminal for easy usage!
Windows
Install via winget
-
Click here (32-bit) to download rust-up. Open the downloaded
.exefile and follow setup instructions.- Use the "Workload" tab to select the "Desktop Development with C++" option.
- Help
-
Open the Command Prompt
- Press Windows + R
- Type "cmd" into the run dialogue box.
-
Download the dependencies
winget install --id Kitware.CMake -e && winget install --id NASM.NASM -e
Current source builds also require LLVM/libclang, Ninja, and Perl available on your PATH.
Restart your shell after installation. Tools should be on your PATH automatically.
macOS
Install via homebrew (recommended)
-
Open the Terminal
- Press Command + Space
- Search "Terminal" and press Enter
-
Ensure you have homebrew installed
a.
xcode-select --install
b.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Download dependencies w/ homebrew:
brew install rust nasm cmake ninja perl
Restart your shell after installation. Tools should be on your PATH automatically.
Linux
Install via package manager
# Debian/Ubuntu
$ sudo apt update
$ sudo apt install -y curl build-essential clang pkg-config cmake ninja-build perl nasm
# Arch
$ sudo pacman -S rust clang pkgconf cmake ninja perl nasm
# Fedora/RHEL
$ sudo dnf install -y rust cargo clang pkgconf-pkg-config cmake ninja-build perl gcc-c++ nasm
# Install Rust via rustup (if not installed via package manager)
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
$ source $HOME/.cargo/env
Info: All steps assume that there is a folder named
404/located at~/git/
Linux/macOS:
cd ~/git/404/src/STATIC_proxy # CHANGE to wherever you unzipped the 404 folder.
cargo run -- --list-profiles
cargo run -- --profile edge-windows # This will take a while on the first run (~5-minutes)
Windows:
cd %USERPROFILE%\git\404\src\STATIC_proxy # CHANGE to wherever you unzipped the 404 folder.
cargo run -- --list-profiles
cargo run -- --profile edge-windows # This will take a while on the first run (~5-minutes)
If you omit --profile and there is no profile selected in config, STATIC will stop at startup and tell you to choose one.
STATIC now manages its CA material in the platform app-data directory instead of treating src/STATIC_proxy/certs/ as the canonical runtime location.
If you need the exact CA path on disk, use the value reported by STATIC's localhost control plane at GET /ca/status, or locate static-ca.crt in STATIC's managed app-data directory.
Firefox
Firefox uses its own trust store, you must trust the CA in the application:
Firefox -> Settings -> Privacy & Security -> Certificates -> View Certificates -> Authorities tab -> Import -> select static-ca.crt from STATIC's managed CA path -> Check "Trust this CA to identify websites" -> OK
Windows
Trust the CA using certutil:
certutil.exe -addstore root C:\\path\\to\\static-ca.crt
...or manually:
-
Locate the
static-ca.crtpath reported by STATIC. -
Double-click the file labeled
static-ca.crt(may appear without .crt extension) -
Click
Install Certificate... -
Select
Current Userand clickNext -
Choose
Place all certificates in the following storeand clickBrowse... -
Select
Trusted Root Certification Authoritiesand clickOK -
Click
NextthenFinish
macOS
sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain /path/to/static-ca.crt
Or use the GUI:
- Open Keychain Access
- File -> Import Items -> select
static-ca.crtfrom STATIC's managed CA path - Find the certificate, double-click it
- Expand "Trust" and set "When using this certificate" to "Always Trust"
Linux
# Copy CA to system trust store
sudo cp /path/to/static-ca.crt /usr/local/share/ca-certificates/static-ca.crt
sudo update-ca-certificates
Set your browser (or system) to use the STATIC listener address and port that you actually launched.
Common cases:
-
repo sample config:
127.0.0.1:4040 -
standalone binary with no config file:
127.0.0.1:8443 -
Chrome/Edge: Settings -> System -> Open your computer's proxy settings
-
Firefox: Settings -> Network Settings -> Manual proxy configuration -> HTTP Proxy:
127.0.0.1, Port:4040or8443depending on how you launched STATIC, then check "Also use this proxy for HTTPS"
Important: This tool is a TLS-terminating proxy (man-in-the-middle) and has access to your plaintext HTTPS data (usernames, passwords, certain message protocols, etc.). Do NOT share your CA cert with anyone for anything, ever.
The current runtime is designed around staying inside the native rendering-engine family rather than pretending Chromium is Firefox or vice versa. That makes the remaining complexity more load-bearing and easier to reason about.
VM Setup:
VM images coming soon. I am using an Alpine distribution on WSL2 (Windows). Works well, but a little heavy. Definitely going to be looking into distributing the VMs as dedicated server images, not gerry-rigged forwarding machines with desktop environments.
You 100% could configure a VM and route traffic from your host machine to a VM guest, instructions for VM configuration available in the eBPF documentation.
For now, just running STATIC should be enough, though network level obfuscation is not possible without a Linux kernel (yet).
Your online fingerprint is becoming increasingly unique. Modern tracking doesn't just rely on cookies; it builds "personality clouds" from hundreds of data points: TLS handshake patterns (JA3/JA4), HTTP header combinations, canvas rendering quirks, microphone/speaker/headset model and brand, font enumeration, WebGL parameters, audio context characteristics, and behavioral timing patterns... to name a few.
The collection of these semi-unique values (.nav properties, timezone, screen resolution, browser type, etc.) allows servers to pretty confidently identify users as not semi-unique, but entirely.
Commercial fingerprinting services like FingerprintJS, Fingerprint.com, and DataDome can identify users across...
- Different browsers on the same device
- Private/incognito modes (linked to 'public' browsing profile)
- VPN connections (or proxies, even residential ones)
- Cookie & cache clearing
- Different networks
This isn't paranoia. This is surveillance capitalism.