Am I affected?
Users are affected if all of these hold:
- They install and register the
@better-auth/scim plugin (plugins: [scim()]).
- They create SCIM providers without an
organizationId, that is, non-organization ("personal") providers. Organization-scoped providers are not affected because they enforce organization membership and role.
- Their application's deployment has more than one authenticated user, so one account can target another user's provider.
- They have not set
providerOwnership: { enabled: true }.
The SCIM management endpoints first shipped in 1.5.0, so every stable release from 1.5.0 onward is affected, and the stable line is not patched. On the pre-release line, builds through 1.7.0-beta.3 are affected, and 1.7.0-beta.4 carries the fix.
Fix:
- Upgrade to
@better-auth/scim@1.7.0-beta.4 (then 1.7.0). This is a breaking change: it removes the providerOwnership option, makes owner binding mandatory, and adds a permanent scimProvider.userId column.
- Run the schema migration after upgrading (
npx auth migrate). Connections created before the upgrade carry no owner and become unreachable through the management endpoints, so reclaim them at the database level.
- The
1.6.x stable line is not patched. If developers stay on it, apply the workaround below.
Summary
@better-auth/scim does not bind non-organization SCIM providers to their creator in the default configuration. Any authenticated user can manage another user's non-org provider, including reading its metadata, listing connections, regenerating its SCIM bearer token, and deleting the connection. Regenerating the token rotates it: the legitimate token stops working and the attacker holds a valid one.
Details
The plugin tracks provider ownership through an opt-in providerOwnership option and a scimProvider.userId column. Both default to off. When ownership is disabled, a non-org provider row is created without a userId, and the management access check denies access only when a stored owner id is present and differs from the caller:
// non-organization branch of the access check
} else if (provider.userId && provider.userId !== userId) {
throw new APIError("FORBIDDEN", { message: "You must be the owner to access this provider" });
}
Because the default row has no userId, the condition is false and the request is allowed. The same gap reaches every management operation: token generation and regeneration, single-provider read, the connection list (which returns providers where p.userId === userId || !p.userId), and provider deletion.
The most sensitive operation is token regeneration. If Alice creates a non-org provider corp-idp, Bob can call the same generate-token endpoint with providerId: "corp-idp". The existing row passes the ownerless access check, so the plugin deletes it, creates a fresh row, and returns a new SCIM bearer token to Bob. Alice's previous token is now invalid, and Bob's token authenticates against that provider's SCIM API routes.
This requires no organization membership and no elevated role. It is reachable in the default scim() configuration whenever non-organization providers are used.
Proof of concept
Two authenticated users, Alice and Bob, in a default scim() setup:
- Alice signs in and creates a non-org provider:
POST /scim/generate-token with { "providerId": "corp-idp" }.
- Bob signs in and reads Alice's provider:
GET /scim/get-provider-connection?providerId=corp-idp returns 200 with { "providerId": "corp-idp" }.
- Bob regenerates the token:
POST /scim/generate-token with { "providerId": "corp-idp" } returns 201 and a new scimToken.
- Alice's old token is rejected at
GET /scim/v2/Users (401); Bob's regenerated token is accepted (200).
The behavior is reproducible through Better Auth's public API surface with two distinct sessions.
Patches
Fixed in @better-auth/scim@1.7.0-beta.4 (then 1.7.0). The fix makes owner binding mandatory: generateSCIMToken records the creator's userId on every personal connection, and the management endpoints grant access only to that owner. Organization-scoped connections keep their existing membership and role checks. The 1.6.x stable line is not patched.
This release is breaking. It removes the providerOwnership option, owner binding can no longer be disabled, and the scimProvider.userId column becomes a permanent part of the schema, so run npx auth migrate after upgrading. Connections created before the upgrade carry no owner and fail closed; reclaim them by deleting scimProvider rows that have neither organizationId nor userId, or by setting userId to the intended owner, then regenerating tokens.
Workarounds
Until a patched version is available:
- Set
providerOwnership: { enabled: true } when registering the plugin, then run the schema update so the scimProvider.userId column exists (npx auth generate or npx auth migrate). New non-org providers are then owner-bound and non-owners are denied. Providers created before enabling ownership stay ownerless until recreated.
- Or scope every SCIM provider to an organization by always passing
organizationId. Organization providers enforce membership and role and are not exposed.
- Or restrict access to the SCIM management endpoints at the edge while non-org providers remain ownerless.
Impact
Any authenticated user can take over non-organization SCIM providers created by other users when the plugin runs with its default ownership configuration. An attacker can discover non-org provider connections, read provider metadata, regenerate another user's SCIM token (invalidating the legitimate one), authenticate to the SCIM API routes with the new token, manage SCIM-provisioned users subject to the enabled SCIM functionality, and delete the provider connection.
Credit
Reported by Jvr2022 through a private GitHub Security Advisory.
Resources
References
Am I affected?
Users are affected if all of these hold:
@better-auth/scimplugin (plugins: [scim()]).organizationId, that is, non-organization ("personal") providers. Organization-scoped providers are not affected because they enforce organization membership and role.providerOwnership: { enabled: true }.The SCIM management endpoints first shipped in
1.5.0, so every stable release from1.5.0onward is affected, and the stable line is not patched. On the pre-release line, builds through1.7.0-beta.3are affected, and1.7.0-beta.4carries the fix.Fix:
@better-auth/scim@1.7.0-beta.4(then1.7.0). This is a breaking change: it removes theproviderOwnershipoption, makes owner binding mandatory, and adds a permanentscimProvider.userIdcolumn.npx auth migrate). Connections created before the upgrade carry no owner and become unreachable through the management endpoints, so reclaim them at the database level.1.6.xstable line is not patched. If developers stay on it, apply the workaround below.Summary
@better-auth/scimdoes not bind non-organization SCIM providers to their creator in the default configuration. Any authenticated user can manage another user's non-org provider, including reading its metadata, listing connections, regenerating its SCIM bearer token, and deleting the connection. Regenerating the token rotates it: the legitimate token stops working and the attacker holds a valid one.Details
The plugin tracks provider ownership through an opt-in
providerOwnershipoption and ascimProvider.userIdcolumn. Both default to off. When ownership is disabled, a non-org provider row is created without auserId, and the management access check denies access only when a stored owner id is present and differs from the caller:Because the default row has no
userId, the condition is false and the request is allowed. The same gap reaches every management operation: token generation and regeneration, single-provider read, the connection list (which returns providers wherep.userId === userId || !p.userId), and provider deletion.The most sensitive operation is token regeneration. If Alice creates a non-org provider
corp-idp, Bob can call the same generate-token endpoint withproviderId: "corp-idp". The existing row passes the ownerless access check, so the plugin deletes it, creates a fresh row, and returns a new SCIM bearer token to Bob. Alice's previous token is now invalid, and Bob's token authenticates against that provider's SCIM API routes.This requires no organization membership and no elevated role. It is reachable in the default
scim()configuration whenever non-organization providers are used.Proof of concept
Two authenticated users, Alice and Bob, in a default
scim()setup:POST /scim/generate-tokenwith{ "providerId": "corp-idp" }.GET /scim/get-provider-connection?providerId=corp-idpreturns200with{ "providerId": "corp-idp" }.POST /scim/generate-tokenwith{ "providerId": "corp-idp" }returns201and a newscimToken.GET /scim/v2/Users(401); Bob's regenerated token is accepted (200).The behavior is reproducible through Better Auth's public API surface with two distinct sessions.
Patches
Fixed in
@better-auth/scim@1.7.0-beta.4(then1.7.0). The fix makes owner binding mandatory:generateSCIMTokenrecords the creator'suserIdon every personal connection, and the management endpoints grant access only to that owner. Organization-scoped connections keep their existing membership and role checks. The1.6.xstable line is not patched.This release is breaking. It removes the
providerOwnershipoption, owner binding can no longer be disabled, and thescimProvider.userIdcolumn becomes a permanent part of the schema, so runnpx auth migrateafter upgrading. Connections created before the upgrade carry no owner and fail closed; reclaim them by deletingscimProviderrows that have neitherorganizationIdnoruserId, or by settinguserIdto the intended owner, then regenerating tokens.Workarounds
Until a patched version is available:
providerOwnership: { enabled: true }when registering the plugin, then run the schema update so thescimProvider.userIdcolumn exists (npx auth generateornpx auth migrate). New non-org providers are then owner-bound and non-owners are denied. Providers created before enabling ownership stay ownerless until recreated.organizationId. Organization providers enforce membership and role and are not exposed.Impact
Any authenticated user can take over non-organization SCIM providers created by other users when the plugin runs with its default ownership configuration. An attacker can discover non-org provider connections, read provider metadata, regenerate another user's SCIM token (invalidating the legitimate one), authenticate to the SCIM API routes with the new token, manage SCIM-provisioned users subject to the enabled SCIM functionality, and delete the provider connection.
Credit
Reported by Jvr2022 through a private GitHub Security Advisory.
Resources
References