diff --git a/src/Core/IdentityServer/BaseRequestValidator.cs b/src/Core/IdentityServer/BaseRequestValidator.cs index dc579c4be7..dc36d2ae1b 100644 --- a/src/Core/IdentityServer/BaseRequestValidator.cs +++ b/src/Core/IdentityServer/BaseRequestValidator.cs @@ -87,7 +87,7 @@ namespace Bit.Core.IdentityServer return; } - var twoFactorRequirement = await RequiresTwoFactorAsync(user); + var twoFactorRequirement = await RequiresTwoFactorAsync(user, request.GrantType); if (twoFactorRequirement.Item1) { // Just defaulting it @@ -260,8 +260,14 @@ namespace Bit.Core.IdentityServer protected abstract void SetErrorResult(T context, Dictionary customResponse); - private async Task> RequiresTwoFactorAsync(User user) + private async Task> RequiresTwoFactorAsync(User user, string grantType) { + if (grantType == "client_credentials") + { + // Do not require MFA for api key logins + return new Tuple(false, null); + } + var individualRequired = _userManager.SupportsUserTwoFactor && await _userManager.GetTwoFactorEnabledAsync(user) && (await _userManager.GetValidTwoFactorProvidersAsync(user)).Count > 0; @@ -286,9 +292,10 @@ namespace Bit.Core.IdentityServer private async Task IsValidAuthTypeAsync(User user, string grantType) { - if (grantType == "authorization_code") + if (grantType == "authorization_code" || grantType == "client_credentials") { // Already using SSO to authorize, finish successfully + // Or login via api key, skip SSO requirement return true; } diff --git a/src/Core/IdentityServer/CustomTokenRequestValidator.cs b/src/Core/IdentityServer/CustomTokenRequestValidator.cs index e1cf85ae75..501f971669 100644 --- a/src/Core/IdentityServer/CustomTokenRequestValidator.cs +++ b/src/Core/IdentityServer/CustomTokenRequestValidator.cs @@ -87,7 +87,13 @@ namespace Bit.Core.IdentityServer } protected override void SetSsoResult(CustomTokenRequestValidationContext context, - Dictionary customResponse) => throw new System.NotImplementedException(); + Dictionary customResponse) + { + context.Result.Error = "invalid_grant"; + context.Result.ErrorDescription = "Single Sign on required."; + context.Result.IsError = true; + context.Result.CustomResponse = customResponse; + } protected override void SetErrorResult(CustomTokenRequestValidationContext context, Dictionary customResponse)