AntiMalware•August 18, 2026•🇷🇺Translated from Russian

VPN Encryption Alone Cannot Hide Traffic from Network Detection Systems

A Habr contributor writing under the username mr_tom explained why encrypted VPN connections can still be identified and blocked by network filters. Although the contents of the tunnel remain hidden from observers, the connection itself continues to produce observable characteristics that allow classification.

Filtering systems can examine the destination IP address, port number, transport protocol, initial handshake features, packet sizes, inter-packet timing, and the temporal behavior of the data flow. These elements enable the system to recognize traffic patterns without decrypting the payload. Simple DPI solutions require no deep analysis and can simply restrict access to known server addresses, subnets, ports, or transport types.

More sophisticated platforms construct traffic fingerprints by combining multiple indicators. They may also perform active probing, connecting directly to a suspected server to observe its responses. Both client traffic patterns and server reactions to unsolicited queries therefore influence detectability.

The author specifically analyzed the combination of VLESS, XHTTP, and REALITY. These components function at different layers: VLESS defines client-server interaction logic, XHTTP manages transport, and REALITY provides transport protection along with a TLS profile. Using port 443 does not automatically make VPN traffic indistinguishable from ordinary HTTPS, because classifiers evaluate handshake details and subsequent flow characteristics beyond the port number alone.

The central takeaway is that no universally unblockable VPN exists as an engineering category. Even heavily disguised connections remain vulnerable to blocking by IP address, newly developed signatures, or the results of active probing. Encryption strength and resistance to traffic recognition therefore represent two distinct properties.

Related articles

Habr•Privacy & Surveillance

CookieTin Extension Manages Partitioned Cookies Across Firefox, Chrome and Edge

Developer Perruer2 has released CookieTin, an open-source browser extension that fully supports partitioned cookies under Firefox Total Cookie Protection and Chrome CHIPS. The tool addresses limitations in older managers like Cookie Quick Manager by correctly retrieving and deleting cookies stored with partitionKey values. It works across Firefox, Chrome and Edge using a single Manifest V3 codebase written in TypeScript and Preact. Key features include accurate cookies.txt export compatible with curl and yt-dlp, protected cookies that survive explicit deletion, and pre-save validation of browser rules for __Host- prefixes and SameSite attributes. E2E tests using Puppeteer verify handling of HttpOnly, partitioned and container cookies in all three browsers.

AntiMalware•Privacy & Surveillance

Kaspersky Premium for macOS Gains App Uninstall Feature to Remove Residual Files

Kaspersky Premium now includes an App Uninstall tool for macOS that locates and deletes leftover files such as caches, cookies, settings, and logs after applications are removed. The feature also identifies duplicate copies of programs and lets users remove all instances or select specific ones while preserving shared components used by other software. Survey data from Kaspersky shows that only 44 percent of macOS users delete unused applications, even though 56 percent regularly clear browser data and 54 percent remove unwanted media files. Residual files can contain sensitive information including account tokens, passwords, IP addresses, event logs, and personal documents, creating privacy risks especially when a device is sold or accessed by unauthorized parties. Deleted files can be restored from the trash or directly within Kaspersky Premium before the application session ends. The company also warns that malicious programs are frequently disguised as legitimate macOS cleaning utilities.

Securitylab•Privacy & Surveillance

Bypassing VPN Detection on iPhone: Detailed Methods to Avoid App Blocks

Many iPhone users encounter apps that detect and block active VPN connections even after switching servers or protocols. The detection often occurs locally on the device by inspecting network interfaces rather than relying solely on external IP addresses. This guide explains how apps identify VPN tunnels through iOS network data and provides practical workarounds including moving the VPN to a router, configuring per-app exclusions, and using web versions of services. It also covers why protocol obfuscation and port changes fail to hide local VPN activity from applications. Additional troubleshooting addresses automatic VPN profiles, ad blockers, and iCloud Private Relay interference. The article emphasizes that no universal toggle exists in iOS to hide an active VPN from all apps.

Habr•Privacy & Surveillance

New Obfuscation Method Dissolves Personal Data Records in Layer of Plausible Variants

A Russian information security researcher has proposed a data protection technique that renders stolen personal records unusable even after full compromise. The approach mixes real data such as phone numbers, emails, passports, addresses, INN and SNILS with vast numbers of semantically valid alternatives. Attackers receive nearly complete information including a 361-character message containing PIN codes and word order, yet lack the secret vector space and reconstruction algorithm required to identify the correct record. Without these components, brute-force attempts produce millions of plausible results with no architectural method to verify accuracy. The method is presented as an alternative to traditional encryption when data must remain accessible yet protected against extraction. A public sandbox is available for testing the approach.