HabrSeptember 15, 2026🇷🇺Translated from Russian

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

A developer has introduced Hydrat, an automated WireGuard gateway designed to maintain connectivity when VLESS servers become blocked or degraded. The project allows users to keep a single WireGuard profile on phones, laptops, and routers while the server handles proxy selection and failover.

The gateway accepts VLESS links, subscription feeds, and Tor bridges through an admin panel. Candidates undergo preliminary and full testing that checks access to Cloudflare, YouTube, ChatGPT, OpenAI API, and Telegram services, including UDP performance. Up to 10,000 candidates can be stored, with a working pool limited to 200 high-quality routes.

Active monitoring detects outages through fast HTTP and DNS probes, while a separate QoE loop measures time-to-first-byte and throughput against historical baselines. Routes enter degradation status after three poor results out of five and recover only after four good measurements. Two confirmed failures within a 20-measurement window also trigger alerts.

Client assignment uses weighted rendezvous hashing for initial selection. Planned route changes require a sustained 30 percent advantage, at least 30 minutes on the current path, and confirmation across three checks. Failover prefers pre-assigned backups before scanning the pool, and transport-level blocking occurs only when no viable alternative remains.

Network changes are applied sequentially: a new Xray outbound is created first, nftables rules are updated next, and old exits are removed last to avoid transient client disconnection. Separate counters ensure that only newer test results update route state.

The service runs in Docker, supports obfs4 and webtunnel Tor bridges, and preserves the last applied routing plan across restarts. The author notes that the server must remain reachable via WireGuard and therefore recommends placement within Russian jurisdiction.

Related articles

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.

HabrPrivacy & Surveillance

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

Anti-detect browser users relying on UDP-capable proxies face a hidden risk of real IP leakage when the browser fails to properly route UDP traffic. The QUIC protocol, which powers HTTP/3, runs over UDP and enables features like 0-RTT handshakes, independent streams, and connection migration that can bypass proxy routes. WebRTC connections using ICE, STUN, and TURN further increase exposure because they often attempt direct UDP paths outside the configured SOCKS5 proxy. Without deep network stack control such as TUN interfaces or socket interception, browsers may send WebRTC and QUIC packets through the host's real network interface. Aurorium Browser claims to solve this by natively supporting UDP proxying so that both QUIC and WebRTC traffic stays inside the tunnel. The article stresses that simply disabling WebRTC or forcing HTTP/2 fallback is insufficient and can itself create detectable anomalies for anti-fraud systems.

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.