Zero Trust is a security model that assumes no user, device, or network is trustworthy by default — every request to access a resource is authenticated, authorised, and continuously validated, regardless of where it originates. The old castle-and-moat model trusted anything inside the corporate perimeter; Zero Trust removes that implicit trust entirely. The guiding phrase is "never trust, always verify." This guide is both a quick-reference cheat sheet and a practitioner's implementation playbook: the principles, the official frameworks, the five pillars with concrete controls, the maturity stages, how it maps to the Microsoft stack, a phased roadmap, and the common pitfalls that hollow out a Zero Trust programme.
The core idea in one minute
Zero Trust replaces "trusted network = trusted user" with a per-request decision. Three principles, drawn from NIST, define it:
- Verify explicitly. Authenticate and authorise every request using all available signals — user identity, device health, location, workload, data sensitivity, and behavioural risk — not just a password or an IP range.
- Use least-privilege access. Grant the minimum access needed, just-in-time and just-enough, with risk-based adaptive policies. Privileged access is time-bound and reviewed.
- Assume breach. Operate as though attackers are already inside. Minimise blast radius with segmentation, encrypt end to end, and use rich telemetry to detect, respond, and improve.
The two frameworks you should know
Two reference frameworks anchor most Zero Trust work. They are complementary, not competing.
| Framework | What it is | Use it for |
|---|---|---|
| NIST SP 800-207 | The foundational standard (published 2020). Defines Zero Trust tenets and the logical architecture: a Policy Engine and Policy Administrator forming the Policy Decision Point, enforcing through a Policy Enforcement Point on every access request. | The conceptual model and vocabulary — the "why" and the architecture. |
| CISA Zero Trust Maturity Model 2.0 | An implementation roadmap (v2.0, April 2023) built on top of 800-207. Organises progress into five pillars and four maturity stages so you can measure and advance incrementally. | Planning, self-assessment, and tracking maturity — the "how" and the roadmap. |
In practice you reason about Zero Trust through the CISA pillars and measure yourself against its maturity stages, while NIST 800-207 supplies the underlying decision-and-enforcement architecture.
The five pillars — cheat sheet
CISA organises Zero Trust into five pillars, supported by three cross-cutting capabilities. Each pillar below lists the controls that actually move the needle.
1. Identity
Identity is the new perimeter and the highest-leverage pillar — most breaches start with a compromised credential. The goal is phishing-resistant authentication and continuous, risk-based authorisation.
- Enforce multi-factor authentication for every user, prioritising phishing-resistant methods (FIDO2 security keys, passkeys, certificate-based auth, Windows Hello for Business) over SMS or voice.
- Apply Conditional Access policies that evaluate user risk, sign-in risk, device state, and location on every authentication.
- Enforce least privilege and just-in-time elevation; remove standing admin rights and review access regularly.
- Block legacy authentication protocols that cannot enforce MFA.
- Monitor risky sign-ins and automate response (require MFA, force password reset, or block) based on risk level.
- Move toward passwordless and continuous access evaluation so sessions are revalidated when risk changes, not just at login.
2. Devices
A verified identity on a compromised device is still a risk. Every endpoint that touches corporate data must be known, managed, and healthy.
- Enrol all endpoints in MDM/UEM (Intune, Jamf, or equivalent) so the device has a managed identity.
- Require device compliance — disk encryption, OS patch level, EDR running, secure boot — as a condition of access.
- Block unmanaged or non-compliant devices from sensitive resources; gate access on real-time device health signals.
- Maintain a complete asset inventory; you cannot protect what you cannot see.
- Deploy EDR/XDR on every endpoint and feed its signals into access decisions.
3. Networks (and environments)
Eliminate the assumption that being on the network grants any trust. Shrink trust zones until they wrap individual workloads.
- Microsegment the network so a compromised host cannot move laterally to others.
- Encrypt all traffic, east-west (internal) as well as north-south (in/out), not just at the edge.
- Replace flat VPN access with Zero Trust Network Access (ZTNA), which grants per-application access instead of full network access.
- Remove implicit trust based on network location — an internal IP address is not an authorisation.
- Control egress and inspect traffic for anomalies and data exfiltration.
4. Applications and workloads
Applications — including APIs, cloud services, containers, and serverless functions — must authorise every call and be continuously assessed.
- Publish internal apps through an application proxy or ZTNA rather than exposing them directly to the internet.
- Enforce authorisation at the application and API layer, validating identity and context on every request.
- Integrate security testing into CI/CD (SAST/DAST/dependency scanning) so vulnerabilities are caught before deployment.
- Use a CASB / Defender for Cloud Apps to discover shadow IT and apply session controls to SaaS.
- Continuously monitor application access for anomalies and abuse.
5. Data
Data is the asset everything else exists to protect, and the pillar most often neglected. The aim is to know where sensitive data lives and to protect it directly.
- Classify and label data by sensitivity so policy can follow it.
- Apply Data Loss Prevention (DLP) across email, endpoints, and cloud.
- Encrypt data at rest and in transit, and where possible attach protection to the file itself (rights management) so it stays protected when it moves.
- Govern access with least privilege and regular access reviews; tie data access to identity and device posture.
- Log and monitor data access to detect unusual retrieval or bulk export.
The three cross-cutting capabilities
Three capabilities run horizontally through all five pillars and are what make Zero Trust adaptive rather than static:
- Visibility and analytics — comprehensive telemetry feeding a SIEM/XDR so decisions are based on current signals.
- Automation and orchestration — automated, policy-driven response (SOAR) so reactions are fast and consistent.
- Governance — the policies, ownership, and oversight that keep the programme aligned to risk and compliance.
The four maturity stages
CISA's model lets you score each pillar against four stages. Use it as an honest self-assessment, then target the next stage rather than chasing "Optimal" everywhere at once.
| Stage | Characteristics |
|---|---|
| Traditional | Manual, static, siloed controls. Perimeter-based trust. Configuration changes are manual and infrequent. |
| Initial | First automation and some cross-pillar integration. Policies begin to use signals beyond the network boundary. |
| Advanced | Coordinated, largely automated controls across pillars, centralised visibility, and risk-based policy. |
| Optimal | Fully automated, dynamic, just-in-time access with continuous monitoring and self-healing response. |
Mapping Zero Trust to the Microsoft stack
If you run Microsoft 365 and Entra, most of the building blocks are already in your tenant. This mapping turns the pillars into specific products.
| Pillar | Microsoft capabilities |
|---|---|
| Identity | Entra ID Conditional Access, MFA / passkeys, Identity Protection (risk policies), Privileged Identity Management, access reviews |
| Devices | Intune compliance policies, device-based Conditional Access, Defender for Endpoint |
| Networks | Entra Internet Access & Private Access (ZTNA, part of the Entra Suite), network microsegmentation |
| Applications | Entra application proxy, Defender for Cloud Apps (CASB), app registrations with scoped permissions |
| Data | Microsoft Purview sensitivity labels, DLP, Information Protection encryption |
The capabilities you can use depend on your licensing — Entra ID P2 risk policies and the Entra Suite's ZTNA features sit above the baseline. Our Microsoft 365 E3 vs E5 vs E7 guide breaks down which tier unlocks which Zero Trust control.
A phased implementation roadmap
Zero Trust is a journey, not a product you switch on. Sequence the work so each phase delivers risk reduction on its own.
- Phase 1 — Identity foundation. Enforce MFA everywhere, block legacy auth, deploy baseline Conditional Access, and remove standing admin rights. This closes the most-exploited attack paths first.
- Phase 2 — Device trust. Enrol endpoints in MDM, define compliance baselines, deploy EDR, and gate access to sensitive apps on device health.
- Phase 3 — Application and data control. Bring apps behind a proxy or ZTNA, deploy CASB for SaaS, classify data, and turn on DLP for your highest-sensitivity content.
- Phase 4 — Network segmentation. Microsegment workloads, replace flat VPN with per-app ZTNA, and encrypt east-west traffic.
- Phase 5 — Optimise and automate. Centralise telemetry in a SIEM/XDR, automate response, add continuous access evaluation, and move toward just-in-time, risk-adaptive access across every pillar.
Common mistakes that undermine Zero Trust
- Treating it as a product purchase. No single vendor "gives you Zero Trust." It is an architecture and an operating model built from controls you already partly own.
- Stopping at MFA. MFA is the start of the identity pillar, not the finish line. Without device trust, least privilege, and segmentation, a single token theft still grants broad access.
- Ignoring the data pillar. Many programmes nail identity and devices but never classify or protect the data itself — the thing attackers are actually after.
- Boiling the ocean. Trying to reach "Optimal" across all five pillars at once stalls. Advance one stage at a time, starting with identity.
- Buying licences and not enabling features. Risk-based Conditional Access, PIM, and DLP deliver nothing while switched off. License to a deployment plan.
- Forgetting governance and visibility. Without centralised telemetry and clear ownership, policies drift and gaps go unnoticed.
Measure where you actually stand
Before planning the next phase, get an honest read on your current posture. Our free, browser-based x365 Microsoft 365 & Entra audit tool surfaces MFA coverage, Conditional Access gaps, legacy-auth exposure, and identity configuration without sending tenant data off your device — a fast way to baseline the identity and device pillars. Pair it with our Conditional Access gaps guide to close the policy holes that licensing alone will not fix.
Frequently asked questions
What is Zero Trust Architecture in simple terms?
Zero Trust is a security model that trusts no user, device, or network by default. Instead of assuming everything inside the corporate perimeter is safe, it authenticates and authorises every single request to access a resource, using signals like user identity, device health, location, and risk. The principle is "never trust, always verify."
What are the five pillars of Zero Trust?
CISA's Zero Trust Maturity Model defines five pillars: Identity, Devices, Networks, Applications & Workloads, and Data. They are supported by three cross-cutting capabilities — Visibility & Analytics, Automation & Orchestration, and Governance — that run across all five.
What is the difference between NIST 800-207 and the CISA maturity model?
NIST SP 800-207 is the foundational standard that defines Zero Trust tenets and the logical decision-and-enforcement architecture (Policy Engine, Policy Administrator, Policy Enforcement Point). The CISA Zero Trust Maturity Model 2.0 is an implementation roadmap built on top of it, organising the work into five pillars and four maturity stages so organisations can self-assess and advance incrementally.
Where should I start with Zero Trust?
Start with the identity pillar, because most breaches begin with a compromised credential. Enforce MFA for everyone (ideally phishing-resistant), block legacy authentication, deploy risk-based Conditional Access, and remove standing administrative privileges. Then extend to device compliance, application and data controls, and network segmentation in later phases.
Is MFA the same as Zero Trust?
No. MFA is an essential first control within the identity pillar, but Zero Trust is a complete architecture spanning identity, devices, networks, applications, and data, plus continuous monitoring and least-privilege access. Relying on MFA alone leaves device trust, segmentation, and data protection unaddressed.
Can I do Zero Trust with Microsoft 365?
Largely yes. Entra ID Conditional Access and Identity Protection cover identity, Intune and Defender for Endpoint cover devices, Defender for Cloud Apps and application proxy cover apps, and Microsoft Purview covers data. The exact controls available depend on your licence tier — Entra ID P2 and the Entra Suite unlock the more advanced risk-based and ZTNA capabilities.