CVE-2026-32878: Parse Server vulnerable to schema poisoning via prototype pollution in deep copy
Impact
An attacker can bypass the default request keyword denylist protection and the class-level permission for adding fields by sending a crafted request that exploits prototype pollution in the deep copy mechanism. This allows injecting fields into class schemas that have field addition locked down, and can cause permanent schema type conflicts that cannot be resolved even with the master key.
Patches
The vulnerable third-party deep copy library has been replaced with a built-in deep clone mechanism that handles prototype properties safely, allowing the existing denylist check to correctly detect and reject the prohibited keyword.
Workarounds
None.
Vulnerability Independence
This vulnerability is not caused by or dependent on a vulnerability in a third-party dependency.
The third-party deepcopy library that was replaced in the fix has no known CVE or security advisory regarding this. The library functions as designed. It is not vulnerable.
The vulnerability is in parse-server's own request processing logic. Parse-server's security-critical keyword denylist check runs after the deep copy step in the request pipeline. The deep copy step strips proto properties as a normal part of its cloning behavior, which means the denylist check never sees the prohibited key. This allows an attacker to bypass both the denylist protection and class-level permissions for adding fields, resulting in schema poisoning.
The root cause is parse-server's reliance on a cloning mechanism that alters the shape of the data before the security check can inspect it. This is a logic flaw in parse-server's security pipeline, not a vulnerability in a dependency. Replacing the cloning mechanism was the fix for parse-server's own bug.
Other sources
Parse Server is an open source backend that can be deployed to any infrastructure that can run Node.js. Prior to 9.6.0-alpha.20 and 8.6.44, an attacker can bypass the default request keyword denylist protection and the class-level permission for adding fields by sending a crafted request that exploits prototype pollution in the deep copy mechanism. This allows injecting fields into class schemas that have field addition locked down, and can cause permanent schema type conflicts that cannot be resolved even with the master key. In 9.6.0-alpha.20 and 8.6.44, the vulnerable third-party deep copy library has been replaced with a built-in deep clone mechanism that handles prototype properties safely, allowing the existing denylist check to correctly detect and reject the prohibited keyword. No known workarounds are available.
— MITRE
Affected Software
Event History
Frequently Asked Questions
What is the severity of CVE-2026-32878?
CVE-2026-32878 has a medium severity rating due to the potential for schema poisoning via prototype pollution.
How do I fix CVE-2026-32878?
To fix CVE-2026-32878, upgrade to Parse Server version 8.6.44 or 9.6.0-alpha.20 or later.
What are the versions affected by CVE-2026-32878?
CVE-2026-32878 affects Parse Server versions prior to 8.6.44 and between 9.0.0 and 9.6.0-alpha.20.
What impact does CVE-2026-32878 have on my application?
CVE-2026-32878 allows an attacker to bypass request keyword protections and manipulate class-level field permissions.
Is there a workaround for CVE-2026-32878?
There is no documented workaround for CVE-2026-32878; updating to a fixed version is recommended.