CVE-2025-62494: Type confusion in string addition in QuickJS
A type confusion vulnerability exists in the handling of the string addition (+) operation within the QuickJS engine.
The code first checks if the left-hand operand is a string.
It then attempts to convert the right-hand operand to a primitive value using JSToPrimitiveFree. This conversion can trigger a callback (e.g., toString or valueOf).
During this callback, an attacker can modify the type of the left-hand operand in memory, changing it from a string to a different type (e.g., an object or an array).
The code then proceeds to call JSConcatStringInPlace, which still treats the modified left-hand value as a string.
This mismatch between the assumed type (string) and the actual type allows an attacker to control the data structure being processed by the concatenation logic, resulting in a type confusion condition. This can lead to out-of-bounds memory access, potentially resulting in memory corruption and arbitrary code execution in the context of the QuickJS runtime.
Affected Software
Event History
Frequently Asked Questions
What is the severity of CVE-2025-62494?
CVE-2025-62494 is classified as a high severity vulnerability due to the potential for exploitation in the QuickJS engine.
How do I fix CVE-2025-62494?
To fix CVE-2025-62494, update to the latest version of Falling Tree QuickJS which addresses this type confusion issue.
Who is affected by CVE-2025-62494?
CVE-2025-62494 affects users of Falling Tree QuickJS, specifically versions prior to the patch that resolves this vulnerability.
What is the nature of the vulnerability in CVE-2025-62494?
CVE-2025-62494 is a type confusion vulnerability that occurs during the string addition operation in the QuickJS engine.
Is CVE-2025-62494 exploitable?
Yes, CVE-2025-62494 can be exploited to execute arbitrary code if an attacker can manipulate the inputs to the vulnerable code.