Loading...
Skip to main content

CVE-2026-30863

CRITICAL

Parse Server: JWT audience validation bypass in Google, Apple, and Facebook authentication adapters

Published March 9, 2026Updated March 16, 2026Source: osv

Summary

### Impact The Google, Apple, and Facebook authentication adapters use JWT verification to validate identity tokens. When the adapter's audience configuration option is not set (`clientId` for Google/Apple, `appIds` for Facebook), JWT verification silently skips audience claim validation. This allows an attacker to use a validly signed JWT issued for a different application to authenticate as any user on the target Parse Server. - For Google and Apple, the vulnerability is exploitable when the server does not configure `clientId`. The adapters accepted this as valid and simply skipped audience validation. - For Facebook Limited Login, the vulnerability exists regardless of configuration. The adapter validated `appIds` only for Standard Login (Graph API), but the Limited Login JWT path never passed `appIds` as the audience to JWT verification. ### Patches The fix enforces `clientId` (Google/Apple) and `appIds` (Facebook) as mandatory and passes them to JWT verification for audience validation. While this is technically a breaking change for servers that omit these options, it is not a breaking change as per documentation — all three options are documented as required configuration. ### Workarounds - Google / Apple: Ensure `clientId` is set in the adapter configuration. When set, JWT verification correctly validates the audience claim even on unpatched versions. - Facebook Limited Login: There is no workaround. The unpatched adapter does not pass `appIds` to JWT audience validation, so the only mitigation is to upgrade. ### References - GitHub security advisory: https://github.com/parse-community/parse-server/security/advisories/GHSA-x6fw-778m-wr9v - Fix Parse Server 9: https://github.com/parse-community/parse-server/releases/tag/9.5.0-alpha.11 - Fix Parse Server 8: https://github.com/parse-community/parse-server/releases/tag/8.6.10

Remediation

Upgrade to the fixed version using your package manager.

npm
Update parse-server to 9.5.0-alpha.11 or later
npm install parse-server@9.5.0-alpha.11
npm
Update parse-server to 8.6.10 or later
npm install parse-server@8.6.10

After upgrading, run your dependency scanner again to confirm the vulnerability is resolved.

Affected Packages (2)

PackageEcosystemAffectedFixed In
parse-server
npm
All versions9.5.0-alpha.11
parse-server
npm
All versions8.6.10

Vulnerability Classification

Common Weakness Enumeration (CWE) identifiers for this vulnerability type.

  • CWE-287
    Improper AuthenticationMITRE

CVSS Score Breakdown

What the CVSS (Common Vulnerability Scoring System) 9.1 score means for each attack dimension.

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Confidentiality
Integrity
Availability

CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N

Frequently Asked Questions

What is CVE-2026-30863?
Parse Server: JWT audience validation bypass in Google, Apple, and Facebook authentication adapters This vulnerability has been assigned a severity rating of CRITICAL (CVSS score: 9.1/10).
How do I check if my project is affected by CVE-2026-30863?
CVE-2026-30863 affects parse-server. Use GeekWala's free vulnerability scanner to check your dependencies against CVE-2026-30863 and 200,000+ other known vulnerabilities.

Severity & Exploitability

CVSS Score
9.1

Exploitation is straightforward and causes maximum impact. Patch immediately.

Also Known As

GHSA-x6fw-778m-wr9v
BIT-parse-2026-30863

Related CVEs

  • CVE-2026-30965
    CRITICAL

    Parse Server vulnerable to session token exfiltration via `redirectClassNameForKey` query parameter

  • CVE-2024-39309
    CRITICAL

    ZDI-CAN-23894: Parse Server literalizeRegexPart SQL Injection Authentication Bypass Vulnerability

  • CVE-2026-31871
    CRITICAL

    Parse Server vulnerable to SQL Injection via dot-notation sub-key name in `Increment` operation on PostgreSQL

  • CVE-2022-39396
    CRITICAL

    Remote code execution via MongoDB BSON parser through prototype pollution

  • CVE-2026-31856
    CRITICAL

    Parse Server vulnerable to SQL injection via `Increment` operation on nested object field in PostgreSQL

  • CVE-2026-31800
    HIGH

    Parse Server: Classes `_GraphQLConfig` and `_Audience` master key bypass via generic class routes

  • CVE-2026-30948
    HIGH

    Parse Server vulnerable to stored cross-site scripting (XSS) via SVG file upload

  • CVE-2026-33409
    HIGH

    Parse Server has an auth provider validation bypass on login via partial authData

Check if you're affected

Scan your dependencies to see if this vulnerability affects your projects.

Scan Your Dependencies