Apollo Federation vulnerable to prototype pollution via incomplete key sanitization
Critical severity
GitHub Reviewed
Published
Mar 13, 2026
in
apollographql/federation
•
Updated Mar 13, 2026
Package
Affected versions
< 2.9.6
>= 2.10.0, < 2.10.5
>= 2.11.0, < 2.11.6
>= 2.12.0, < 2.12.3
>= 2.13.0, < 2.13.2
Patched versions
2.9.6
2.10.5
2.11.6
2.12.3
2.13.2
< 2.9.6
>= 2.10.0, < 2.10.5
>= 2.11.0, < 2.11.6
>= 2.12.0, < 2.12.3
>= 2.13.0, < 2.13.2
2.9.6
2.10.5
2.11.6
2.12.3
2.13.2
< 2.9.6
>= 2.10.0, < 2.10.5
>= 2.11.0, < 2.11.6
>= 2.12.0, < 2.12.3
>= 2.13.0, < 2.13.2
2.9.6
2.10.5
2.11.6
2.12.3
2.13.2
Description
Published to the GitHub Advisory Database
Mar 13, 2026
Reviewed
Mar 13, 2026
Last updated
Mar 13, 2026
Impact
A vulnerability exists in query plan execution within the gateway that may allow pollution of
Object.prototypein certain scenarios. A malicious client may be able to polluteObject.prototypein gateway directly by crafting operations with field aliases and/or variable names that target prototype-inheritable properties. Alternatively, if a subgraph were to be compromised by a malicious actor, they may be able to polluteObject.prototypein gateway by crafting JSON response payloads that target prototype-inheritable properties.Because
Object.prototypeis shared across the Node.js process, successful exploitation can affect subsequent requests to the gateway instance. This may result in unexpected application behavior, privilege escalation, data integrity issues, or other security impact depending on how polluted properties are subsequently consumed by the application or its dependencies. As of the date of this advisory, Apollo is not aware of any reported exploitation of this vulnerability.Patches
Mitigations addressing prototype pollution exposure have been applied in
@apollo/federation-internals,@apollo/gateway, and@apollo/query-plannerversions2.9.6,2.10.5,2.11.6,2.12.3, and2.13.2. Users are encouraged to upgrade to these versions or later at their earliest convenience.Workarounds
A fully effective workaround is not available without a code change. As an interim measure, users who are unable to upgrade immediately may consider placing an input validation layer in front of the gateway to filter operations containing GraphQL names matching known
Object.prototypepollution patterns (e.g.,__proto__,constructor,prototype). Users should also ensure that subgraphs in their federated graph originate from trusted sources.References