Zero Trust Architecture

nick@jax:~/writing$ cat zero-trust-architecture.md

Zero Trust Architecture

jan 2026 · nicholas a. southern · ~/writing

// field_noteDefault deny is easy to preach and hard to live with. This one comes from the negotiation table, not the whiteboard.
FILE: LOG_004  |  CLASS: ARCHITECTURE  |  AUTHOR: NAS-982-202-ALPHA  |  DATE: 2025-11-15 Why “Never Trust, Always Verify” is no longer a slogan, it’s the only defensible posture left. NIST 800-207ZTAIDENTITYSEGMENTATIONSOCGRC // TL;DR The perimeter dissolved the day your CFO opened a SaaS app from a hotel Wi-Fi. NIST 800-207 reframes security around identity, device, and per-request authorization. This post walks the model, the failure modes I’ve seen on real watch floors, and a five-step maturity ladder you can bring to a steering committee on Monday.

// Why the Castle Stopped Working

For two decades we treated networks like fortresses: a hardened perimeter, a soft interior, and an implicit assumption that anything inside was trustworthy. That assumption survived as long as workloads, users, and data all sat on the same internal LAN. They don’t anymore.

Today’s enterprise looks like a federation: SaaS in someone else’s cloud, contractors on personal laptops, sensors at the edge, AI services calling APIs neither team fully owns. A VPN tunnel into “the network” is no longer a meaningful trust boundary, it’s just another network with credentials worth phishing.

// FROM THE WATCH FLOOR Every major incident I worked at the NOC followed the same arc: an attacker landed somewhere low-value, then moved laterally because nothing inside the moat was actually checking IDs. The perimeter wasn’t bypassed, it was irrelevant.

// What Zero Trust Actually Says

NIST SP 800-207 doesn’t define a product. It defines a set of principles: assume breach, verify every request, grant least privilege, and make access decisions dynamically based on identity, device posture, and context. Three logical components do the work:

  • Policy Engine (PE): the brain, decides whether a subject can access a resource right now.
  • Policy Administrator (PA): the hand, configures the path and signals the enforcement point.
  • Policy Enforcement Point (PEP): the gate, actually allows or blocks the session.

The mental shift is small but brutal: trust is no longer location-based. Sitting on the corp LAN earns you nothing. Every request gets re-evaluated.

// The Three Pillars Most Teams Get Wrong

1. Identity is the new perimeter.

If MFA is optional, conditional access policies are loose, or service accounts have permanent credentials, you don’t have Zero Trust, you have a marketing slide. Strong, phishing-resistant authentication and continuous identity validation are the foundation everything else stands on.

2. Device posture is non-negotiable.

A correctly authenticated user on a compromised laptop is still a compromised session. EDR signal, patch state, disk encryption, and configuration baselines need to feed the policy engine in real time, not in a quarterly report.

3. Micro-segmentation beats VLAN theater.

Flat networks hidden behind a firewall are not segmented. Real segmentation is workload-to-workload: identity-aware, application-layer, and default-deny. East-west traffic is where attackers live.

// A Five-Step Maturity Ladder

LEVEL 0PERIMETERTrust based on network location. VPN = “inside.” Lateral movement easy. LEVEL 1IDENTITY-AWARESSO + MFA on critical apps. Conditional access policies in place. LEVEL 2DEVICE-AWAREPosture signals (EDR, compliance) feed access decisions. LEVEL 3SEGMENTEDWorkload micro-segmentation. East-west default-deny. LEVEL 4CONTINUOUSRisk-scored, real-time re-authorization on every request.

// Mapping ZTA to GRC Frameworks

For analysts working in regulated environments, Zero Trust isn’t a side quest, it directly supports NIST 800-53 (AC-2/3/4/6, IA-2/5, SC-7), NIST 800-171 for CUI, and the access-control families inside ISO 27001 Annex A. When auditors ask “how do you enforce least privilege at scale?” ZTA is the engineering answer.

// ANALYST’S NOTE The real win of Zero Trust isn’t preventing the breach, it’s shrinking the blast radius when one happens. A compromised credential should buy an attacker one resource, not a quarter of the estate.

// What I’d Do Monday Morning

You don’t need a $4M rip-and-replace. You need a sequence:

  • Week 1: Inventory crown-jewel apps and the identities that touch them.
  • Week 2-3: Enforce MFA + conditional access on those apps. Kill standing privileged sessions.
  • Month 2: Pipe device posture into your IdP. Block non-compliant endpoints.
  • Quarter 2: Stand up identity-aware proxies for internal apps. Retire VPN-as-default.
  • Quarter 3+: Micro-segment the workloads adjacent to crown jewels. Iterate outward.

// Closing

The castle is not coming back. The good news: a Zero Trust posture, executed deliberately, gives a SOC analyst something rare, signal density. Fewer paths, more telemetry per path, faster decisions. That’s the real product of this architecture.

<< BACK TO INTEL_LOGS NEXT: SIGNAL VS. NOISE >>
Scroll to Top