What QUIC exposes
When a client negotiates HTTP/3, it opens a QUIC connection whose first packets reveal a lot. The QUIC version, the set and order of transport parameters (max_idle_timeout, max_udp_payload_size, initial_max_data, active_connection_id_limit, and others), and the structure of the Initial packet all vary by implementation. Chrome's QUIC stack, Firefox's, and a Go or Rust QUIC library each produce a recognizable signature. On top of that, QUIC embeds a TLS 1.3 Client Hello, so the JA3/JA4-style hash applies inside QUIC too.
The result is a transport fingerprint that exists before any HTTP/3 request frame. A client that speaks HTTP/3 with a non-browser QUIC signature is as identifiable as one with a non-browser JA3 - and because HTTP/3 adoption is newer, mismatches are common in DIY stacks that bolt HTTP/3 onto a library.
The UDP leak problem
QUIC runs on UDP, and this is where many proxied scrapers fail in a way that has nothing to do with the fingerprint hash. Most proxy setups carry TCP. If the browser is allowed to use HTTP/3, its QUIC/UDP packets may go around the proxy directly to the destination, exposing the real IP and network path even though all the TCP traffic is cleanly proxied. The same UDP-escape problem affects WebRTC STUN. It is a transport-level leak sibling.
So HTTP/3 is a double exposure for scrapers: a transport fingerprint that can mismatch the claimed browser, and a UDP path that can bypass the proxy entirely.
How scrapers handle it
Two strategies. The conservative one is to disable QUIC/HTTP3 so the browser falls back to HTTP/2 over TCP, keeping all traffic inside the proxy and avoiding the QUIC fingerprint surface entirely. This is common and safe, though a site that offers HTTP/3 and sees a "Chrome" client that never attempts it can treat that as a (weak) signal, since real Chrome usually tries HTTP/3.
The thorough one is to tunnel UDP through the proxy (SOCKS5 UDP ASSOCIATE) so QUIC/STUN stay inside the tunnel and the QUIC fingerprint comes from a real browser stack. Few proxy providers support UDP ASSOCIATE, which is why high-end anti-detect tooling that implements UDP-over-SOCKS5 natively is relatively rare. For most scraping, disabling QUIC is the pragmatic default; serious operators who need HTTP/3 parity invest in UDP-capable proxies or managed APIs that handle the transport for them.
