在这种情况下发现的MFA差异是什么

时间:2014-10-27 16:24:28

标签: yodlee

网站帐户是这样的(PMPS,FMPA)有什么区别?

    "mfaType": {
        "typeId": 5,
        "typeName": "MULTI_LEVEL"
    },
    "mfaCoverage": "PMPS",

对此:

    "mfaType": {
        "typeId": 4,
        "typeName": "SECURITY_QUESTION"
    },
    "mfaCoverage": "FMPA",

1 个答案:

答案 0 :(得分:1)

"mfaCoverage": "PMPS" is used for representing the financial institution sites which does not prompt MFA for all the users accessing the web site. This denotes that MFA will be prompted only for some users.

"mfaCoverage": "FMPA" is used for representing the financial institution sites which prompt MFA for all the users accessing the web site. This denotes that MFA will be prompted only for some users.

但是你不应该担心覆盖范围,而应该关注mfaType.typeName以确定金融机构支持哪种类型的MFA。

以下是可能的值及其含义 -

  • SECURITY_QUESTION - 表示FI网站的安全问题和答案为MFA。

  • IMAGE - 表示FI网站要求用户输入图片验证码中的值。

  • TOKEN_ID - 表示FI网站要求用户输入通过电子邮件或消息接收的OTP(一次性密码),或者使用RSA令牌生成代码。

  • MUTLI_LEVEL - 此MFA是上述任意两种MFA类型的组合。

相关问题