Skip to content

Commit

Permalink
Merge pull request #11 from passbolt/fix-mfa-challange-detection
Browse files Browse the repository at this point in the history
fix mfa challange detection
  • Loading branch information
speatzle authored Apr 7, 2022
2 parents 69221b3 + 1b30521 commit df43c78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ start:
if res.Header.Status == "success" {
return r, &res, nil
} else if res.Header.Status == "error" {
if res.Header.Code == 403 && res.Header.Message == "MFA authentication is required." {
if res.Header.Code == 403 && res.Header.URL == "/mfa/verify/error.json" {
if !firstTime {
// if we are here this probably means that the MFA callback is broken, to prevent a infinit loop lets error here
return r, &res, fmt.Errorf("Got MFA challenge twice in a row, is your MFA Callback broken? Bailing to prevent loop...:")
Expand Down

0 comments on commit df43c78

Please sign in to comment.