HabrSeptember 15, 2026🇷🇺Translated from Russian

UDP Proxies and QUIC Protocol: How Real IP Addresses Leak Through Anti-Detect Browsers

Among users engaged in multi-accounting and proxy-based operations, a common concern is that applications lacking proper UDP support can leak the real IP address, undermining the entire purpose of using proxies. The risk arises because many anti-detect browsers do not correctly handle UDP traffic even when the purchased proxy supports it.

UDP proxies, typically implemented via SOCKS5 with UDP Associate, are required for modern web protocols. Most legacy HTTP/HTTPS proxies only route TCP traffic and cannot forward UDP datagrams needed for streaming, real-time calls, or online gaming.

The primary trigger for UDP usage in browsers is the QUIC protocol. HTTP/3 runs over QUIC, which itself operates on top of UDP. This stack provides 0-RTT resumption, independent stream multiplexing, and connection migration that survives network changes. When a browser cannot route QUIC through the proxy, it either falls back to HTTP/2 over TCP or attempts a direct path, creating detectable anomalies for anti-fraud systems.

An even more direct leakage vector is WebRTC. During ICE candidate gathering, the browser collects local, STUN-reflexive, and TURN-relayed addresses. If the anti-detect browser cannot force WebRTC traffic through the proxy, the real public IP obtained via STUN can be sent directly to the remote peer.

The article explains that merely disabling WebRTC or blocking QUIC is not a complete solution. Proper protection requires routing all UDP traffic through the proxy at the network-stack level, for example by using a virtual TUN interface. Aurorium Browser states it has implemented native UDP proxy support so that both QUIC sessions and WebRTC connections remain inside the tunnel when a compatible SOCKS5 proxy is configured.

Users are advised to test their setup on sites such as browserleaks.com/quic and networktest.twilio.com to verify whether QUIC and UDP traffic actually traverses the proxy or leaks the real address.

Related articles

HabrPrivacy & Surveillance

Hydrat Project Builds Automated WireGuard Gateway for Resilient VLESS and Tor Routing

A developer has released Hydrat, a self-hosted gateway that connects devices via WireGuard while automatically managing VLESS and Tor backends to survive server blocks and quality degradation. The system maintains a pool of tested proxies, performs continuous health checks, and switches routes without requiring client-side profile changes. Two Go processes handle control logic and network enforcement separately, using SQLite for state and nftables plus Xray for traffic routing. TCP and UDP can be assigned independent exits, with geoip.dat support and custom rules to keep marketplace apps functional. The project emphasizes stability over direct connections and is designed for deployment on servers in Russian jurisdiction.

AntiMalwarePrivacy & Surveillance

OpenAI Contractors Manually Review Real User Chats in Project Lily

OpenAI has engaged hundreds of external contractors to analyze actual user conversations with ChatGPT as part of its model improvement efforts. The reviewers, working under project Lily, examine real queries that may contain personal, medical, or other sensitive information despite the use of a Privacy Filter. Contractors summarize prompts, compare four model responses, and assign ratings from one to seven while flagging behaviors such as excessive sycophancy or inappropriate emojis. User identities are hidden and some data is filtered, yet OpenAI acknowledged that not all personal information is reliably removed. The same human review process is also employed by Anthropic for its Claude model. Users can opt out of future training use through account settings, although prior data remains unaffected.

AntiMalwarePrivacy & Surveillance

Google to Offer Granular Controls for Advanced Protection Mode in Android 16

Google is preparing more flexible settings for its Advanced Protection security mode that first appeared in Android 16. The changes were discovered by Android Authority researchers while examining Google Play Services version 26.36.30. A new Expert features section will let users enable individual protections such as USB Protection, intrusion detection logging, and restrictions on unsafe Wi-Fi networks without activating the entire strict mode. USB Protection blocks new USB connections while the screen is locked to prevent physical attacks, though it can interfere with fast charging on Pixel 6 and newer devices. Users will also be able to opt out of automatic connections to open or risky Wi-Fi networks if they regularly use public hotspots. Intrusion Logging remains optional and stores encrypted security logs in the cloud. The update aims to preserve core security benefits while removing the all-or-nothing requirement of the current Advanced Protection implementation.

HabrPrivacy & Surveillance

rkn-block-checker 0.6.0 Adds Local Web UI and Reduces False Positives on Anti-Bot Responses

The open-source tool rkn-block-checker received a major update in version 0.6.0 that improves accuracy when detecting Russian ISP censorship blocks. The previous version incorrectly flagged sites protected by anti-bot systems as blocked by Roskomnadzor because it searched for common stub-page strings without checking HTTP status codes. A new logic layer now separates rate-limit responses such as HTTP 429 from genuine provider stub pages that typically return 200 OK or 451. The release also introduces a fully local Web UI built with Python’s standard-library HTTP server and vanilla JavaScript, eliminating the need for heavy frameworks. Results stream in real time via NDJSON so users can watch checks complete without polling or WebSocket connections. The project remains available on PyPI and GitHub under the MIT license.