A software enterprise recently migrated its legacy inventory management application to a hybrid cloud environment. To protect application access, the security team configured a Web Application Firewall at the network edge and mandated multi-factor authentication during user login. However, once an employee successfully authenticates at the start of their shift, backend microservices honor all subsequent data requests based on the request originating from an internal IP subnet, without re-evaluating risk telemetry, user behavior, or device compliance. Which core principle of Zero Trust Architecture is directly violated by this security design?
- Continuous verification and explicit validation, because session context and authorization must be evaluated dynamically per request rather than assuming persistent trust after initial authentication.Answer
- BPerimeter-based implicit trust, because network subnets should automatically inherit high trust levels once edge firewall rules and initial MFA pass inspection.
- CAuthentication enforcement, because verifying identity at session initiation inherently satisfies all authorization requirements across internal microservices.
- DCorrective control application, because detective logging controls must supersede preventive identity checks once network boundary traffic is established.
Answer
Continuous verification and explicit validation, because session context and authorization must be evaluated dynamically per request rather than assuming persistent trust after initial authentication.
The correct answer accurately identifies that Zero Trust Architecture eliminates implicit trust based on physical or logical network location. Under Zero Trust guidelines (such as NIST SP 800-207), access decisions must be explicitly validated and continuously re-evaluated on a per-request basis using contextual signals (e.g., device health, resource sensitivity, threat intelligence), rather than relying on a single initial MFA event at the network border.
Step-by-Step Solution
Key Concept
Continuous Verification and Explicit Validation in Zero Trust Architecture