A security architect is auditing the access management architecture of a microservices-based enterprise platform. The platform relies on a central Identity Provider (IdP), an API Gateway, fine-grained access policies, and a SIEM system. Which of the following technical mechanisms specifically fulfill the Authorization pillar of the AAA framework? (Select TWO.)
- Evaluating JSON Web Token (JWT) scope claims at the API gateway to restrict microservice endpoint executionAnswer
- Enforcing Role-Based Access Control (RBAC) matrix rules to restrict backend database query execution based on user permissionsAnswer
- CValidating user credentials and Time-based One-Time Password (TOTP) codes against the central IdP database during initial session establishment
- DStreaming API call telemetry, HTTP request timestamps, and user ID metadata to the centralized SIEM log repository
Answer
The controls that specifically fulfill the Authorization pillar are evaluating JWT scope claims at the API gateway and enforcing Role-Based Access Control (RBAC) matrix rules on backend queries.
Evaluating JWT scope claims at the API gateway and enforcing RBAC policies on backend database queries both represent Authorization controls. Authorization is the pillar of AAA responsible for determining what actions, endpoints, or data an authenticated subject is permitted to access based on privileges, scopes, or assigned roles.
Step-by-Step Solution
Key Concept
Authentication verifies identity, Authorization determines permissions and access rights, and Accounting logs actions and usage for auditability.