GHSA-777c-2fxx-qr28: Erlang/ash_authentication vulnerability
Summary
AshAuthentication's OAuth2 and OIDC family strategies matched the local user by email address rather than by the OpenID Connect iss/sub claim combination. A provider login presenting a victim's email (including an unverified, reused, or emailverified: false account) resolved to and signed in as the victim's existing local account. An unauthenticated attacker who can register an account on any accepted OAuth provider with the victim's email obtains the victim's full local privileges.
Details
Per OpenID Connect Core §5.7, only the iss/sub claim combination uniquely and stably identifies an end-user; any other claim, including email, MUST NOT be used as a unique identifier. AshAuthentication's OAuth2/OIDC register flow nonetheless drove the upsert by the email field (upsertidentity on email, or a user-defined sign-in filter), and the sign-in preparation filtered users by email.
1. Provider login. The attacker signs in to a configured OAuth/OIDC provider with the victim's email. This is trivial for providers that don't verify email ownership, and possible under email-reuse / reclamation for providers that do.
2. AshAuthentication register step. 'Elixir.AshAuthentication.Strategy.OAuth2.IdentityChange':change/3 invokes the upsert action whose upsertidentity resolves on the email. The action lands on the victim's existing record.
3. Sign-in preparation. 'Elixir.AshAuthentication.Strategy.OAuth2.SignInPreparation':prepare/3 does not verify the returned user against an iss/sub identity, so the attacker is authenticated as the victim.
Configurations
Exploitation requires one of:
The configured OAuth/OIDC provider does not reliably verify email ownership (lets a user register with any email, or fails to verify it). Many social/enterprise providers fall into this category, including Slack, generic OIDC deployments, and any custom OAuth2 endpoint without strict email validation. The provider allows email reclamation: the victim's email becomes available on the provider (account deletion, organisation off-boarding, mail-host change) and the attacker registers it. The attacker then signs in via that provider and takes over the local account.
Providers that strictly verify email ownership and forbid reuse (e.g. modern Google Workspace, GitHub for accounts that have completed verification) are not directly exploitable, but applications that accept any of the affected strategy types in addition are still exposed via the weaker providers in the set.
PoC
1. On any accepted OAuth/OIDC provider, register an account whose email is the victim's email (or use a provider that allows email reuse). 2. Complete the standard OAuth flow against the AshAuthentication application. 3. The application's upsert resolves on email, signs the attacker in as the victim, and returns a session token for the victim's account.
Impact
Unauthenticated remote account takeover against any AshAuthentication-using application that exposes an OAuth2/OIDC strategy. The default configuration of every affected strategy is vulnerable; no application-level misconfiguration is required. An attacker who succeeds gains the victim's full local identity, with read, write, and destructive access to whatever the victim's account can do.
References
Introduction commit: https://github.com/team-alembic/ashauthentication/commit/c5f589058e04239263f50a1430eb17ea6d5dd1a2 Patch commit (4.x backport): https://github.com/team-alembic/ashauthentication/commit/728b8d28c1b5f465fa1116ef044a815300fc733d Patch commit (5.x): https://github.com/team-alembic/ashauthentication/commit/64530644f9b37ebb76ca14aeb83a77597a0034b7
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
erlang/ash_authenticationto a version that resolves this vulnerability.Fixed in 5.0.0-rc.10 - Upgrade
Upgrade
erlang/ash_authenticationto a version that resolves this vulnerability.Fixed in 4.14.0 - Upgrade
Upgrade
AshAuthentication/Elixir.AshAuthenticationto a version that resolves this vulnerability.Patch 728b8d28c1b5f465fa1116ef044a815300fc733d - Upgrade
Upgrade
AshAuthentication/Elixir.AshAuthenticationto a version that resolves this vulnerability.Patch 64530644f9b37ebb76ca14aeb83a77597a0034b7 - Configuration
Update AshAuthentication OAuth2/OIDC identity matching so upsert/sign-in preparation resolves the local user by the OpenID Connect `iss`/`sub` combination rather than the `email` field (previously `upsert_identity`/sign-in preparation matched users by email).
AshAuthentication OAuth2/OIDC strategies User matching/upsert identity = match by OpenID Connect iss/sub claim combination instead of email
Event History
Frequently Asked Questions
Which deployments are exposed to account takeover?
Deployments using AshAuthentication OAuth2 or OIDC family strategies are exposed when a configured provider login can be matched to an existing local user by email. Risk is especially high for providers that allow unverified email addresses or where email addresses can be reused or reclaimed.
What does an attacker need to exploit this?
The attacker does not need a local account or prior authentication. They need to authenticate through an accepted OAuth/OIDC provider using an account that presents the victim's email address, including an account with email_verified set to false.
How can I check whether my integration uses the vulnerable matching behavior?
Review the OAuth/OIDC register and sign-in configuration for identity upserts keyed on email, such as upsert_identity on the email field, or a user-defined sign-in filter that selects users by email. The sign-in preparation path is also affected if it filters local users by email.
What is the impact after a successful provider login?
The provider login resolves to the victim's existing local account and signs the attacker in with that account's full local privileges.