gpt4 book ai didi

google-app-engine - Google App Engine & Identity-Aware Proxy - 验证外部用户是否启用了 MFA

转载 作者:行者123 更新时间:2023-12-04 08:32:51 24 4
gpt4 key购买 nike

我做了一些研究,以找到一种方法来验证外部用户(GCP 组织之外)是否启用了多因素身份验证。我找到了 Google Workspace is_2sv_enrolled ,但这特定于组织中的用户。
您知道是否有任何方法可以验证外部用户是否通过 Identity-Aware Proxy 从 Google App Engine 登录启用了 MFA?
为了更具体地了解我想要解决的问题,这里是上下文的基本摘要:
我使用 Google App Engine 和 Identity-Aware Proxy 在 Python 中开发了一个解决方案,以便授权用户可以进行身份​​验证并允许他们各自的 IP 地址访问 AWS 上安全组入口中的某些端口,该解决方案包含多种技术,例如:谷歌应用引擎、身份感知代理、谷歌计算引擎、AWS WAF、AWS API 网关、AWS Lambda、AWS Lambda 等。
目前,根据我已经可以管理的条件在身份识别代理中获得授权的任何用户都将被允许进入安全组入口。
问题:我想将这些来自外部用户的访问限制为那些拥有启用 MFA 的 Google 帐户的人。
谢谢。

最佳答案

Google 帐户不提供有关 MFA 的信息(称为声明)。
如果授权请求中提供了正确的范围(openid 配置文件电子邮件),则 Google 帐户会提供有关用户的信息。端点、范围和声明的详细信息记录在 中。发现文档 . Google 在一个众所周知的 URL 上发布此文档:
https://accounts.google.com/.well-known/openid-configuration
以下是 Discovery 文档的内容(截至此日期)。请注意,在 claim_supported 部分中没有返回 MFA 相关信息(声明)的规定。

{
"issuer": "https://accounts.google.com",
"authorization_endpoint": "https://accounts.google.com/o/oauth2/v2/auth",
"device_authorization_endpoint": "https://oauth2.googleapis.com/device/code",
"token_endpoint": "https://oauth2.googleapis.com/token",
"userinfo_endpoint": "https://openidconnect.googleapis.com/v1/userinfo",
"revocation_endpoint": "https://oauth2.googleapis.com/revoke",
"jwks_uri": "https://www.googleapis.com/oauth2/v3/certs",
"response_types_supported": [
"code",
"token",
"id_token",
"code token",
"code id_token",
"token id_token",
"code token id_token",
"none"
],
"subject_types_supported": [
"public"
],
"id_token_signing_alg_values_supported": [
"RS256"
],
"scopes_supported": [
"openid",
"email",
"profile"
],
"token_endpoint_auth_methods_supported": [
"client_secret_post",
"client_secret_basic"
],
"claims_supported": [
"aud",
"email",
"email_verified",
"exp",
"family_name",
"given_name",
"iat",
"iss",
"locale",
"name",
"picture",
"sub"
],
"code_challenge_methods_supported": [
"plain",
"S256"
],
"grant_types_supported": [
"authorization_code",
"refresh_token",
"urn:ietf:params:oauth:grant-type:device_code",
"urn:ietf:params:oauth:grant-type:jwt-bearer"
]
}

关于google-app-engine - Google App Engine & Identity-Aware Proxy - 验证外部用户是否启用了 MFA,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64937575/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com