Parse ServerApplication · Parseplatform

CVE-2026-30966

CRITICAL · 10.0 CVSS v3.1 Published 2026-03-10
Fix available
A fix is available. Upgrade to 8.6.20 / 9.5.2 or later.
See remediation →
100/100
Remediation priority · Urgent
Remotely reachable No privileges Zero-click Patch available

Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.

NVD · unedited
Parse Server is an open source backend that can be deployed to any infrastructure that can run Node.js. Prior to 9.5.2-alpha.7 and 8.6.20, Parse Server's internal tables, which store Relation field mappings such as role memberships, can be directly accessed via the REST API or GraphQL API by any client using only the application key. No master key is required. An attacker can create, read, update, or delete records in any internal relationship table. Exploiting this allows the attacker to inject themselves into any Parse Role, gaining all permissions associated with that role, including full read, write, and delete access to classes protected by role-based Class-Level Permissions (CLP). Similarly, writing to any such table that backs a Relation field used in a pointerFields CLP bypasses that access control. This vulnerability is fixed in 9.5.2-alpha.7 and 8.6.20.

Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.

dbcve analysis · high confidence

Parse Server before 9.5.2-alpha.7 and 8.6.20 allows direct access to internal relation tables (storing role memberships and relation field mappings) via REST or GraphQL API using only the application key, without requiring the master key. This enables unauthenticated attackers to create, read, update, or delete records in internal relationship tables, allowing them to inject themselves into any Parse Role and bypass role-based Class-Level Permissions (CLP) for full read/write/delete access to protected classes.

MitigationUpgrade Parse Server to version 9.5.2-alpha.7, 8.6.20, or later to patch the access control vulnerability on internal relation tables.

Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.

Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.

NVD · CPE data
Parse ServerApplication
Affected:< 8.6.20>= 9.0.0, < 9.5.2= 9.5.2

CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.

From the vector
Attack vector
Network
Complexity
Low
Privileges
None
User interaction
None
Scope
Changed
Confidentiality
High
Integrity
High
Availability
Low

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:L

Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.

dbcve checks

Work through these to decide whether this CVE applies to you.

  1. Determine installed Parse Server version
    Check the running Parse Server version by querying the server's health/version endpoint, or inspect package.json in the deployment, or run `npm list parse-server` in the project directory
    Affected if Version is less than 8.6.20, or between 9.0.0 and 9.5.2 inclusive, or exactly 9.5.2
  2. Verify master key requirement for internal relations
    Review Parse Server configuration (usually in index.js, server.js, or environment variables) for the requireMasterKey setting and confirm it is set to true for _Relation class operations, or check if the master key must be provided for any request to _Relation
    Affected if requireMasterKey is not enforced or can be bypassed for _Relation class access
  3. Confirm REST API is accessible with only application key
    Send a REST API request to the Parse Server endpoint (usually /parse/classes/_Relation) using only the application ID/key in the headers, without including the master key, and observe if the request succeeds
    Affected if The API accepts requests to _Relation endpoints with only the application key and returns successful responses without requiring the master key
  4. Check Class-Level Permissions configuration
    Query the _CLP class or inspect CLP settings via Parse Dashboard for any protected classes to understand what roles and permissions are configured
    Affected if Protected classes rely on Parse Roles for access control and the _Relation class is accessible without master key

You are affected if your Parse Server version falls within the vulnerable range and the _Relation class can be accessed via REST or GraphQL API without providing the master key.

Generated from the published advisory. Verify against your own configuration.

Check your environment

Paste your version and any relevant configuration and it will be compared against the affected criteria above. Do not include secrets or credentials.

AI-assisted, checked against the advisory. Informational, not a guarantee.

Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.

dbcve · scoped
Upgrade available Upgrade to 8.6.20 / 9.5.2 or later
Fixed in 8.6.209.5.2
Vendor patch github.com →
Interim mitigation

Upgrade Parse Server to version 9.5.2-alpha.7, 8.6.20, or later to patch the access control vulnerability on internal relation tables.

Recommended fix High confidence

8.6.20 for version 8.x branch; 9.5.2 or later for version 9.x branch

  1. Identify current Parse Server version by checking package.json or running `npm list parse-server`
  2. If running version 8.x (< 8.6.20): upgrade to version 8.6.20 or later by running `npm install parse-server@^8.6.20`
  3. If running version 9.x (>= 9.0.0 and < 9.5.2, or exactly 9.5.2): upgrade to version 9.5.2 or later by running `npm install parse-server@^9.5.2`
  4. After upgrading, restart the Parse Server instance
  5. Verify the fix is applied by testing that internal relation tables (e.g., _Join:roles) cannot be accessed via REST API or GraphQL API using only the application key without proper master key authentication
Caveat Review Parse Server changelog between current version and target upgrade version for any breaking changes in API behavior, deprecations, or configuration requirements

Generated from the published advisory — verify against the referenced sources before acting.

Fix this in Parse Server Scoped from the published advisory
  • Consultation4.0 h
  • Implementation2.0 h
  • Testing4.0 h
  • Review / QA2.0 h
12.0 hours of engineering $2,120
Get the upgrade done

An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $3,392.

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

Check whether your project pulls in CVE-2026-30966 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.

References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.

Primary sources

Practitioner notes

Contributed

Peer-ranked notes from engineers who’ve handled CVE-2026-30966 in production — separate from our analysis above.

No notes yet

Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.

What this is

A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.

What belongs here
  • Verified mitigations, workarounds, and config changes
  • Version or environment caveats, and links to real fixes
  • No weaponised exploit code, or anything meant to cause harm
  • No spam, self-promotion, credentials, or personal data