Adaptive Authentication
Adaptive authentication is an approach to verifying a user's identity that adjusts the strength of the checks based on the risk of a given sign-in attempt. Instead of applying the same login requirements to everyone, it looks at signals such as location, device, and behavior to decide whether to allow access, require an additional factor, or block the attempt. This lets low-risk logins proceed smoothly while higher-risk ones face stronger verification.
Adaptive authentication is an authentication method that evaluates contextual and risk signals, such as location, device status, and end-user behavior, to determine the authentication requirements applied to a given access attempt. Depending on the assessed risk, a policy framework may permit the session, invoke step-up authentication (for example requiring a second factor), or block the attempt outright; in some vendor implementations these responses are configurable per user or condition. It is primarily concerned with verifying identity (authentication) rather than determining what a principal may do (authorization), though some vendor descriptions frame it as informing authorization levels as well. Note that specific signals, risk-scoring logic, and enforcement responses vary by vendor and deployment configuration; the underlying risk-scoring algorithms and thresholds are typically implementation-specific and out of scope for a general definition.
Why it matters
Static authentication applies the same requirements to every sign-in regardless of context, which forces a trade-off between security and usability: strict controls frustrate legitimate users on low-risk logins, while relaxed controls leave higher-risk attempts under-verified. Adaptive authentication addresses this by scaling verification strength to the assessed risk of each attempt, allowing routine access to proceed with minimal friction while reserving stronger checks for sign-ins that appear anomalous based on signals such as location, device status, and end-user behavior.
Because it can invoke step-up authentication or block an attempt outright in response to elevated risk, adaptive authentication is a common control for mitigating credential-based attacks such as those relying on stolen or replayed credentials. In many deployments, for example, an otherwise valid login from an unfamiliar location or device can be challenged with an additional factor or denied, rather than being accepted solely on a correct password.
It is important to keep the scope of adaptive authentication precise. It is primarily concerned with verifying identity (authentication), not with determining what an authenticated principal is permitted to do (authorization), even though some vendor descriptions frame it as informing authorization levels as well. The specific signals collected, the risk-scoring logic, and the enforcement responses all vary by vendor and configuration, so the security value in any given environment depends heavily on how policies and thresholds are set.
Who it's relevant to
Inside Adaptive Authentication
Common questions
Answers to the questions practitioners most commonly ask about Adaptive Authentication.
