A security operations engineer is investigating an access issue where a newly provisioned systems administrator can successfully log in via SAML 2.0 Single Sign-On (SSO) to an enterprise cloud portal, but receives an HTTP 403 Forbidden error whenever attempting to open the database administration dashboard. The Identity Provider (IdP) SAML assertion log contains the following snippet:
xml
<saml:AttributeStatement>
<saml:Attribute Name="http://schemas.xmlsoap.org/ws/2005/05/identity/claims/department">
<saml:AttributeValue>Database_Admins</saml:AttributeValue>
</saml:Attribute>
</saml:AttributeStatement>
However, the dashboard Service Provider (SP) policy configuration requires an attribute claim key named `roles` with a value of `db-admin-access` to grant rights.
Which of the following identity and access management operational issues BEST describes the root cause of this access failure?
- Authentication succeeded at the Identity Provider, but authorization failed at the Service Provider due to a claim attribute mapping mismatch.Answer
- BPrimary authentication failed at the Identity Provider because SAML assertions cannot transmit user identity attributes to web applications.
- CThe Service Provider denied access because cloud management dashboards require implicitly trusted internal network perimeters rather than continuous attribute validation.
- DThe HTTP 403 Forbidden status indicates a failure of a detective auditing control during the SSO flow rather than a preventive access control mechanism.