惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
月光博客
月光博客
T
Tailwind CSS Blog
小众软件
小众软件
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
B
Blog RSS Feed
博客园 - 司徒正美
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
博客园 - Franky
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Azure Blog
Microsoft Azure Blog
T
The Blog of Author Tim Ferriss
GbyAI
GbyAI
Apple Machine Learning Research
Apple Machine Learning Research

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The Connected Air Gap: Why Most Backup Isolation Fails
NTCTech · 2026-05-05 · via DEV Community

NTCTech

Most backup architectures marketed as air-gapped are not isolated. They are reachable systems with better storage controls. Shared identity, shared control plane, scheduled connectivity, and immutable-but-addressable storage all produce the same outcome: production compromise can still destroy recovery without touching backup data.

Data protection and blast-radius isolation are different architectural properties. Data protection answers whether backup blocks can be overwritten. Blast-radius isolation answers whether production compromise can destroy recovery capability entirely. The question that cuts through both: Can a compromised production control plane still issue a destructive command against recovery?

connected air gap — four control-plane conditions that break backup isolation

What "Connected Air Gap" Means

An air gap is not a storage property. It is a control-plane boundary — the architectural condition under which no production-privileged actor can reach, command, or disable recovery. Four conditions break that boundary without touching backup data: a shared identity plane, a shared management control plane, a scheduled replication window, and a storage tier that is immutable but still addressable by production-level credentials.

The Four Failure Modes

Failure Mode 1: Shared Identity Plane

The vault is separate. The credentials authenticating the backup agent are issued by the same identity provider as production workloads. A compromised domain admin or exfiltrated service principal can authenticate against the backup platform using production-derived credentials. If recovery shares production trust, recovery shares production blast radius.

Failure Mode 2: Shared Control Plane

Most backup platforms do not fail because backup storage is reachable. They fail because backup control is. The backup management API, reachable from the production management network, exposes purge operations and retention policy modifications without requiring backup credentials. Cloud backup vaults in the same subscription as protected workloads compound this: immutability protects the objects inside the vault. It does not protect the account that owns it.

connected air gap shared control plane — management API reachable from production

Failure Mode 3: Scheduled Reachability

A replication window is a deterministic attack surface with a known open time. An attacker with persistent production access and visibility into the backup schedule can time destructive actions to execute during the open window. The backup data replicates. The target has been poisoned before isolation restores.

Failure Mode 4: Immutable but Reachable

If an attacker can revoke restore authority, destroy the catalog, or disable orchestration, the backup survives and recovery still fails. Immutability protects the object. It does not protect the account that owns it, the credentials that perform restores, or the catalog that maps recovery points.

The Control-Plane Test

"Can a compromised production control plane still issue a destructive command against recovery?"

connected air gap control plane test — four diagnostic checks for backup isolation
If yes, the air gap is connected. Connected systems are reachable systems. Reachable systems are not isolated systems.

connected air gap vendor claims — storage integrity versus blast radius isolation

Where Vendor Claims Break Down

Vendors validate storage integrity. Architects need to validate blast-radius isolation.

Connected Air Gap Condition What the Vendor Validates What Remains Exposed
Shared Identity Plane Separate backup service account Same IdP — production compromise traverses trust
Shared Control Plane Dedicated backup network segment Management API reachable from production subnet
Scheduled Reachability Replication window with disconnection Deterministic attack window during open phase
Immutable but Reachable Object lock / WORM storage Vault deletion, restore credential revocation

Architect's Verdict

An air gap is a control-plane boundary, not a storage property. Every backup architecture that shares an identity plane, a management plane, or a replication schedule with the environment it protects has a connected air gap.

The failure is not a missing feature. It is a misplaced test. Run data protection and blast-radius isolation tests on the same architecture and they return different answers — because they are measuring different properties.

Recovery capability must be designed under the assumption that production is already hostile. Any architecture that shares trust, control, or command authority with production is not isolated. It is delayed compromise.

Originally published at rack2cloud.com