Active Directory - Forced Authentication

Is it possible to provide additional authentication (through an external service) or an additional level of decision-making after successful authentication of the active directory?

thank

+4
source share
1 answer

The short answer is yes.

You probably mean additional authorization, given the tags you used (XACML). Usually you use AD / LDAP to authenticate with the application. After you retrieve the user roles and groups, you can then call the decision point (PDP) from both the interceptor and the application requesting authentication. The PDP then authorizes the request using XACML policies.

+1

Source: https://habr.com/ru/post/1691755/


All Articles