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

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.

HabrPrivacy & Surveillance

Digital Surveillance in Your Pocket: Audit Uncovers Tracking and Weak Cryptography in 11 Top Russian Android Apps

An independent security researcher conducted a static analysis and passive logcat review of 11 popular Russian Android applications from banks, government services, marketplaces, and navigation tools. The audit identified 237 vulnerabilities in total, including six apps signed with outdated RSA-1024 or DSA-1024 keys that violate current NIST standards. VK led the risk ranking with 11 trackers and a 98/100 surveillance score, while Gosuslugi transmitted analytics signals to VK, Yandex, Google, and Huawei ecosystems. Five apps used WebRTC ICE candidate leaks to detect VPN usage, potentially bypassing user privacy protections. Only Goskluch scored low at 42.4/100 by limiting trackers to two, avoiding VPN detection, and using a compliant RSA-2048 signing key. The methodology relied solely on MobSF, jadx, and logcat without bypassing SSL pinning or requiring root access.

HabrPrivacy & Surveillance

Amnezia VPN Survives Coordinated Russian Censorship Campaign Targeting AmneziaWG Protocol Fingerprints

Amnezia VPN has published a detailed post-mortem on the multi-wave blocking campaign conducted by Russian authorities against its Amnezia Free and Amnezia Premium services during June and July. The company describes a shift from simple protocol blocking to sophisticated fingerprinting of AmneziaWG traffic combined with infrastructure DDoS attacks and automated IP-subnet blacklisting. Engineers closed multiple detection vectors including zero-length UDP packets, fixed-size keepalive messages, handshake timing patterns, and nonce zero bytes. The incident forced accelerated migration to AmneziaWG 2.0, discontinuation of legacy client support, and development of AmneziaWG 3.0 while expanding VLESS infrastructure as a backup. Self-hosted users largely avoided direct protocol blocks but still faced subnet-level restrictions. The report highlights how Roskomnadzor now applies cumulative scoring across multiple traffic features rather than single definitive markers.