Question

Difficulty: MediumZero Trust Architecture Principles

An enterprise organization is replacing its legacy perimeter-based defenses with a Zero Trust Architecture (ZTA) across its internal API microservices. Currently, services authenticate once at session initiation and receive unrestricted inter-service communication permissions across the internal subnet. Which design change must the security team implement to adhere to core Zero Trust principles?

  1. Enforce dynamic continuous verification of identity, device posture, and context for every request, regardless of whether the traffic originates internally.Answer
  2. B
    Grant implicit trust to all internal subnet traffic after successful initial mutual TLS authentication at the edge gateway.
  3. C
    Require multi-factor authentication during initial user login while allowing session authorization privileges to remain static for the remainder of the session.
  4. D
    Deploy internal honeypots to act as inline filtering mechanisms for preventing unauthorized inter-service microservice requests.

Answer

Enforce dynamic continuous verification of identity, device posture, and context for every request, regardless of whether the traffic originates internally.
The core tenets of Zero Trust Architecture (NIST SP 800-207) mandate explicit validation and continuous verification. Every access request must be authenticated, authorized, and encrypted based on real-time contextual data, identity, and device health, regardless of whether the request originates inside or outside the traditional network perimeter.

Step-by-Step Solution

1
Analyze current system weaknesses
Identified implicit trust after initial session authentication across internal microservices.
Legacy architectures rely on perimeter trust, allowing lateral movement once inside.
2
Apply Zero Trust Architecture (ZTA) core principles
Determine that all requests must be explicitly validated and continuously authorized.
Zero Trust operates under the assumption of breach and treats all network segments as potentially untrusted.
3
Select the compliant design modification
Requiring per-request continuous verification of identity, device posture, and contextual variables.
This removes implicit internal trust and enforces microsegmentation and continuous authorization.

Key Concept

Zero Trust Architecture Principles - Explicit Validation and Continuous Verification
Rate this question