CVE-2026-49229

HIGHPre-NVD 8.38.3
EchelonGraph scoreLOW confidence

This high-severity CVE scores 8.3 under the CNA's CVSS (NVD's own analysis pending). EPSS exploit-prediction score not yet available (the EPSS model rescores nightly; freshly-published CVEs typically appear within 48 hours). GitHub Security Advisory data not yet ingested — confidence will rise once GHSA publishes (typical lag: hours to days for open-source ecosystem CVEs; never for infrastructure-only CVEs).

Triggered by: NVD CVSS baseline
Sources: cna:github_m
8.3
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS: CVSS: 8.3Exploit: NoneExposed: 0

No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.

@actual-app/sync-server: Disabled OpenID users keep access through existing session tokens

Summary

In OpenID multi-user mode, disabling a user only blocks future OpenID login for that identity. Existing Actual session tokens for the disabled user remain valid, so the user can continue calling authenticated server endpoints after an administrator has disabled the account.

Details

The disabled-user check is present during OpenID login finalization. Existing users are only accepted when the matching row has enabled = 1, and a disabled row causes the OpenID grant to fail before a new session token is created.

// packages/sync-server/src/accounts/openid.ts:284-291
const { id: userIdFromDb, display_name: displayName } =
  accountDb.first(
    'SELECT id, display_name FROM users WHERE user_name = ? and enabled = 1',
    [identity],
  ) || {};

if (userIdFromDb == null) { throw new Error('openid-grant-failed'); }

The shared session validation path does not perform the same enabled-user check. It accepts any existing token row that has not expired, then returns the session object to every route protected by validateSessionMiddleware.

// packages/sync-server/src/util/validate-user.ts:10-41
export function validateSession(req: Request, res: Response) {
  let { token } = req.body || {};
  if (!token) {
    token = req.headers['x-actual-token'];
  }

const session = getSession(token); ... return session; }

This means account disablement and session authorization diverge:

OpenID login path: users.enabled must be 1
Existing session path: token exists and is not expired; users.enabled is not checked

The default token expiration setting is never, so this is not just a short race after disablement on default deployments.

// packages/sync-server/src/load-config.js:260-264
token_expiration: {
  doc: 'Token expiration time.',
  format: 'tokenExpiration',
  default: 'never',
  env: 'ACTUAL_TOKEN_EXPIRATION',
},

Admins can change a user's enabled state through the user update route, but that update does not delete the user's existing sessions. After the update, the old token still satisfies validateSession.

// packages/sync-server/src/app-admin.js:91-101
app.patch('/users', validateSessionMiddleware, async (req, res) => {
  if (!isAdmin(res.locals.user_id)) {
    ...
  }

const { id, userName, role, displayName, enabled } = req.body || {};

// packages/sync-server/src/services/user-service.ts:98-102
getAccountDb().mutate(
  'UPDATE users SET user_name = ?, display_name = ?, enabled = ?, role = ? WHERE id = ?',
  [userName, displayName, enabled, roleId, userId],
);

Authenticated server features then continue to trust that session. For example, the sync API installs validateSessionMiddleware for the whole router, so a disabled user can keep using any sync operation that their still-valid session and existing file ownership/access allow.

// packages/sync-server/src/app-sync.ts:37-39
const app = express();
app.use(validateSessionMiddleware);
app.use(errorMiddleware);

This is distinct from the previously published cross-user sync authorization issue: the attacker does not need to access another user's file ID. The bypass is that a disabled user's own session remains authorized after account disablement.

PoC

  • Run an Actual Sync Server in OpenID multi-user mode with @actual-app/sync-server 26.5.0. Use the default token expiration setting, or any setting where the token has not expired yet.
  • Log in as a non-admin OpenID user and save the returned Actual session token.
  • As an admin, disable that same user through PATCH /admin/users by sending enabled: false.
  • Reuse the old token against a protected endpoint.

Example success check:

curl -s https://actual.example.com/account/validate \
  -H 'X-Actual-Token: '

Expected result on the affected code path: the request is still treated as authenticated and returns the disabled user's account/session information instead of 401 or 403.

A sync-facing check uses the same session validation primitive:

curl -s https://actual.example.com/sync/list-user-files \
  -H 'X-Actual-Token: '

Expected result on the affected code path: the disabled user can still list and operate on budget files that the stale session is otherwise allowed to access.

Impact

A disabled OpenID user can keep post-authentication access until the session row is deleted or expires. With the default token_expiration: never, this can persist indefinitely.

For a disabled basic user, the confirmed impact is continued access to that user's own budgets and any budgets shared with that user, including sensitive financial data and allowed mutations. For a disabled admin user, the impact is broader because the existing token can still satisfy admin role checks; that condition preserves administrative access after the account was disabled.

The missing rule is that session validation should reject disabled users, and disabling or deleting a user should revoke that user's existing sessions.

CVSS v3
8.3
EG Score
8.3(low)
EPSS
KEV
Not listed

Published

June 22, 2026

Last Modified

June 22, 2026

Vendor Advisories for CVE-2026-49229(1)

These vendors published their own advisory mentioning this CVE — often with vendor-specific remediation steps + affected product lists not in NVD.

Affected Packages

(1 across 1 ecosystem)
npm(1)
PackageVulnerable rangeFixed inDependents
@actual-app/sync-server26.6.0

Data Freshness Timeline

(refreshed 14× in last 7d / 29× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

  1. 2026-07-07 04:43 UTCEG score recompute
  2. 2026-07-06 16:31 UTCEG score recompute
  3. 2026-07-06 04:06 UTCEG score recompute
  4. 2026-07-05 15:55 UTCEG score recompute
  5. 2026-07-05 03:46 UTCEG score recompute
  6. 2026-07-04 15:33 UTCEG score recompute
  7. 2026-07-04 03:23 UTCEG score recompute
  8. 2026-07-03 15:11 UTCEG score recompute
  9. 2026-07-03 02:58 UTCEG score recompute
  10. 2026-07-02 14:48 UTCEG score recompute
  11. 2026-07-02 02:38 UTCEG score recompute
  12. 2026-07-01 14:29 UTCEG score recompute
  13. 2026-07-01 02:20 UTCEG score recompute
  14. 2026-06-30 14:10 UTCEG score recompute
  15. 2026-06-30 01:59 UTCEG score recompute
  16. 2026-06-29 13:50 UTCEG score recompute
  17. 2026-06-29 01:41 UTCEG score recompute
  18. 2026-06-28 13:31 UTCEG score recompute
  19. 2026-06-28 01:22 UTCEG score recompute
  20. 2026-06-27 13:12 UTCEG score recompute
  21. 2026-06-27 01:03 UTCEG score recompute
  22. 2026-06-26 12:54 UTCEG score recompute
  23. 2026-06-26 00:44 UTCEG score recompute
  24. 2026-06-25 12:32 UTCEG score recompute
  25. 2026-06-25 00:22 UTCEG score recompute
Show 4 more
  1. 2026-06-24 12:13 UTCEG score recompute
  2. 2026-06-23 23:52 UTCEG score recompute
  3. 2026-06-23 11:41 UTCEG score recompute
  4. 2026-06-22 23:30 UTCEG score recompute

Frequently asked(4)

What is CVE-2026-49229?
CVE-2026-49229 is a high vulnerability published on June 22, 2026. @actual-app/sync-server: Disabled OpenID users keep access through existing session tokens Summary In OpenID multi-user mode, disabling a user only blocks future OpenID login for that identity. Existing Actual session tokens for the disabled user remain valid, so the user can continue calling…
When was CVE-2026-49229 disclosed?
CVE-2026-49229 was first published in the National Vulnerability Database on June 22, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
What is the CVSS score of CVE-2026-49229?
CVE-2026-49229 has a CVSS v4.0 base score of 8.3 (CNA self-assessment; NVD's own analysis pending). The EG score is currently aggregating — additional source signals are being incorporated as they become available..
How do I remediate CVE-2026-49229?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-49229, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

See which npm, PyPI, Go, and Maven packages are affected by CVE-2026-49229

Explore →

Is Your Infrastructure Affected by CVE-2026-49229?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.