CVE-2025-66456: Elysia vulnerable to prototype pollution with multiple standalone schema validation
Elysia is a Typescript framework for request validation, type inference, OpenAPI documentation and client-server communication. Versions 1.4.0 through 1.4.16 contain a prototype pollution vulnerability in mergeDeep after merging results of two standard schema validations with the same key. Due to the ordering of merging, there must be an any type that is set as a standalone guard, to allow for the proto prop to be merged. When combined with GHSA-8vch-m3f4-q8jf this allows for a full RCE by an attacker. This issue is fixed in version 1.4.17. To workaround, remove the proto key from body.
Other sources
Prototype pollution vulnerability in mergeDeep after merging results of two standard schema validations with the same key. Due to the ordering of merging, there must be an any type that is set as a standalone guard, to allow for the proto prop to be merged.
When combined with GHSA-8vch-m3f4-q8jf this allows for a full RCE by an attacker.
Impact Routes with more than 2 standalone schema validation, eg. zod
Example vulnerable code: typescript import { Elysia } from "elysia" import as z from "zod"
const app = new Elysia() .guard({ schema: "standalone", body: z.object({ data: z.any() }) }) .post("/", ({ body }) => ({ body, win: {}.foo }), { body: z.object({ data: z.object({ messageId: z.string("pollute-me"), }) }) })
Patches Patched by 1.4.17 (https://github.com/elysiajs/elysia/pull/1564)
Reference commit: - https://github.com/elysiajs/elysia/pull/1564/commits/26935bf76ebc43b4a43d48b173fc853de43bb51e - https://github.com/elysiajs/elysia/pull/1564/commits/3af978663e437dccc6c1a2a3aff4b74e1574849e
Workarounds Remove proto key from body
Example plugin for removing proto from body
typescript new Elysia() .onTransform(({ body, headers }) => { if (headers['content-type'] === 'application/json') return JSON.parse(JSON.stringify(body), (k, v) => { if (k === 'proto') return
return v }) })
— GitHub
Affected Software
Remediation
Patch Available
Event History
Frequently Asked Questions
What is the severity of CVE-2025-66456?
The severity of CVE-2025-66456 is classified as moderate due to its potential for prototype pollution.
How do I fix CVE-2025-66456?
To fix CVE-2025-66456, update the elysia package to version 1.4.17 or later.
What is the impact of CVE-2025-66456?
CVE-2025-66456 can lead to unauthorized property manipulation and alteration in JavaScript objects due to prototype pollution.
Which versions of elysia are affected by CVE-2025-66456?
CVE-2025-66456 affects versions of the elysia package from 1.4.0 to 1.4.16.
Is CVE-2025-66456 being actively tracked or reported?
Yes, CVE-2025-66456 is actively reported and tracked as part of ongoing security advisories on GitHub.