v1.0.0
Docs

Profiles

Profiles define the fingerprint target that OCCLUDE normalizes your traffic to match. Each profile encodes the exact TCP, TLS, and HTTP/2 parameters of a specific browser and OS combination.

Available profiles

OCCLUDE ships with profiles for the most common browser/OS combinations. Each profile matches the fingerprint of the specified browser version running on the specified operating system.

ProfileBrowserOSTier
windows11System (TCP only)Windows 11Free
chrome-132Chrome 132Windows 11Pro
firefox-134Firefox 134Windows 11Pro
edge-132Edge 132Windows 11Pro

Profile TOML format

Profiles are defined as TOML files. The TCP section is available in the free tier; TLS and HTTP/2 sections require Pro.

[meta]
name = "chrome-132"
browser = "Chrome"
version = "132.0.6834.83"
os = "Windows 11"

[tcp]
window_size = 65535
mss = 1460
ttl = 128
window_scale = 8
sack = true
timestamps = true

[tls]
# Pro only
ja4 = "t13d1516h2_8daaf6152771_b0da82dd1658"
ciphers = [...]
extensions = [...]

[h2]
# Pro only
settings = "1:65536, 3:1000, 4:6291456, 6:262144"

Custom profiles

You can create custom profiles by capturing traffic from a target browser. Place your custom profile TOML in the profiles directory and reference it by name.