Skip to content

Commit

Permalink
Merge pull request #529 from MOlechowski/fix-439-symantec-vip-support
Browse files Browse the repository at this point in the history
Modify case for handling mfa prompt.
  • Loading branch information
Mark Wolfe authored Jul 25, 2020
2 parents 70016f0 + 077e545 commit 212ea05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/provider/adfs/adfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func checkResponse(doc *goquery.Document) (AuthResponseType, string, error) {
if name == "AuthMethod" {
val, _ := s.Attr("value")
switch val {
case "VIPAuthenticationProviderWindowsAccountName":
case "VIPAuthenticationProviderWindowsAccountName", "VIPAuthenticationProviderUPN":
responseType = MFA_PROMPT
case "AzureMfaAuthentication":
responseType = AZURE_MFA_WAIT
Expand Down

0 comments on commit 212ea05

Please sign in to comment.