HabrJuly 26, 2026🇷🇺Translated from Russian

Personal Digital Resilience: Strategies to Secure Access Chains and Preserve Data Portability

A few years ago the author lost access to a Facebook account because SMS-based two-factor codes stopped arriving on a Russian mobile number. Support offered identity verification via passport selfie, but the account was not important enough to pursue. The incident highlighted how everyday activities—work, finance, health, travel, and communication—now depend on digital services, so the failure of any single service disrupts real processes rather than just an app.

Digital resilience is defined as the ability to keep real-world processes running when their digital foundations break. It rests on two pillars: security, which limits unauthorized access and account takeover, and independence from any single provider, which guards against outages, policy changes, or sudden service closures. Corporate environments address these risks with dedicated teams and budgets; individuals rarely do.

The author models every process as a chain: real-world activity → digital service → access credentials → data. Failure can occur at any link, producing three main scenarios. When a service becomes unavailable, recovery requires a new service plus previously exported data in a portable format. When access is lost but the service still exists, the first step is to regain the original account; if that fails, a new account plus exported data is needed. When data are deleted or corrupted inside an otherwise working account, the same exported copy restores the prior state.

Because a complete audit of every digital process is impractical, the author recommends starting with the list of accounts already stored in a password manager. For each important account the security section is reviewed: strong unique password, modern second factor, and documented recovery options. Data-export capabilities are then checked so that information can be retrieved if the account is ever closed.

Accounts are treated as a dependency graph. Root nodes—those that can recover other accounts but are not themselves recovered through another account—are identified and isolated. Circular dependencies are removed, and recovery paths are split by jurisdiction to prevent a single regulatory event from affecting both trees. In the resulting structure, Yandex serves as the Russian root (with final recovery performed through support identity checks) while Google serves as the external root. Russian phone numbers and Yandex email were removed from Google’s recovery settings, and backup codes are stored offline. All high-value services were migrated from SMS second factors to TOTP codes generated by Ente Auth, chosen because its secrets can be exported and are not locked inside a single cloud provider.

Data are classified into three categories. Personal files under direct control are mirrored to independent locations. Data that exist only inside third-party services are exported in portable formats on a regular schedule. Secrets—password-manager exports, TOTP seeds, and recovery codes—are collected into a single encrypted archive whose master password is written on paper and kept separately. The archive and other backups are synchronized with rclone to two cloud storages in different jurisdictions plus an offline drive.

Recovery procedures are tested: exported files are imported into test environments, and the “forgot password” flow is walked through for critical accounts without actually resetting them. The author acknowledges that complete elimination of single points of failure is impossible; Google remains a large node whose loss would require rebuilding the external tree. The goal is therefore not zero-risk architecture but explicit knowledge of dependencies and a documented, testable path back to functional processes.

Related articles

SecuritylabPrivacy & Surveillance

How to Detect and Remove Stolen Photos from Fake Profiles, Listings and Ads

Photos are frequently stolen from social networks, old listings, building chats and review sites, then reused in fake profiles, advertisements and rental scams. Russian law under Article 152.1 of the Civil Code protects the right to one's image, while separate copyright rules protect the photographer. Victims are advised to gather strong evidence including full-page screenshots, PDF copies and original files before contacting platforms. Search tools such as Yandex Images, Google Lens and TinEye help locate copies across multiple services. Complaints can be filed directly with site administrators on VKontakte, Odnoklassniki, Avito and Telegram, or escalated to Roskomnadzor and police when personal data or fraud is involved. Preventive steps include lowering image resolution, adding watermarks and restricting album visibility through privacy settings.

HabrPrivacy & Surveillance

Configuration Drift Silently Breaks Multi-Hop Chains in sing-box Reality Fleet

A post-mortem analysis of a censorship circumvention network using sing-box and Reality revealed that four out of seven nodes were unreachable due to outdated allowlists, even though all monitoring reported green status. The fleet consisted of 14 endpoints across seven machines and four providers, with traffic routed in two hops where entry nodes only knew client identities and exit nodes only knew destinations. White-list rules on entry nodes permitted only five addresses instead of all required relays, causing urltest to silently discard most chains without logging failures. Canary checks, external probes, and the relay-lockdown.sh script all passed because none compared the allowlist against the full signed configuration. Two private paid nodes lacked any route section entirely, exposing them to potential abuse. The issue stemmed from configuration drift over time, with no single person maintaining an overview of the entire system. Automated fixes were implemented with safeguards to prevent fleet-wide lockouts.

HabrPrivacy & Surveillance

Why Distributed Mesh Architectures Resist IP Blocking Better Than Centralized Servers

The article explains the fundamental limitations of single-server or small-server setups when facing IP-based censorship and DPI systems. A centralized infrastructure relies on a finite, relatively static list of addresses that can be discovered, tracked, and blocked over time. In contrast, a client-side mesh turns user devices into active transport nodes that relay traffic peer-to-peer, creating a constantly changing set of endpoints. This architectural shift transforms address blocking from a one-time list-maintenance task into an ongoing discovery problem. The design still requires an auxiliary trust and coordination layer called the backbone network, while anti-DPI techniques such as ClientHello rotation and decoy traffic protect individual connections. The approach carries real costs in battery life, bandwidth, and operational complexity on client devices.

HabrPrivacy & Surveillance

Chrome Adds On-Device Gemini Nano While Ask Gemini Sends Page Content to Google Cloud

Google has introduced an 'AI on device' toggle in Chrome settings that enables local execution of the Gemini Nano model directly on the user's computer. Several gigabytes of Gemini Nano weights are now stored in the browser profile directory and can run on CPU or GPU for tasks such as initial analysis of suspicious pages. Despite the local model being present, the user-facing 'Ask Gemini' feature does not use it and instead routes page content, URLs, and up to ten additional tabs to Google's cloud infrastructure. The company uses two distinct systems under the Gemini name: the cloud-based Ask Gemini / Gemini in Chrome service and the on-device Gemini Nano accessed only through internal APIs or by websites and extensions. When Enhanced Protection is enabled, results from the local Safe Browsing analysis may still be transmitted to Google Safe Browsing servers. The naming and interface choices have created confusion, as users cannot directly invoke the downloaded Gemini Nano model for tasks like summarizing open pages.