Is it possible to enforce extra authentication (via an external service) or an extra layer of decision making after a successful active directory authentication?
Thanks
Is it possible to enforce extra authentication (via an external service) or an extra layer of decision making after a successful active directory authentication?
Thanks
Short answer: yes.
You probably mean extra authorization given the tags you used (XACML). You would typically use AD / LDAP for authentication with an app. Once you retrieve the user's roles and groups, you can then call a Policy Decision Point (PDP) either from an interceptor or the application requesting authentication. The PDP would then authorize the request using XACML policies.