CVE-2025-62496
BaseFortify
Publication date: 2025-10-16
Last updated on: 2025-10-28
Assigner: Google Inc.
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| quickjs_project | quickjs | to 2025-09-13 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-190 | The product performs a calculation that can produce an integer overflow or wraparound when the logic assumes that the resulting value will always be larger than the original value. This occurs when an integer value is incremented to a value that is too large to store in the associated representation. When this occurs, the value may become a very small or negative number. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability occurs in the QuickJS engine's BigInt string parsing function when it tries to create a BigInt from a very large string of digits. The function calculates the number of bits needed to store the BigInt, but for extremely large inputs, this calculation causes an integer overflow. This overflow results in an incorrect, smaller number of bits and memory limbs being allocated. Consequently, when the actual BigInt data is written, it exceeds the allocated buffer size, causing a heap out-of-bounds write.
How can this vulnerability impact me? :
The vulnerability can lead to a heap out-of-bounds write, which may cause memory corruption. This can potentially be exploited to execute arbitrary code, crash the application, or cause denial of service, depending on how the QuickJS engine is used within an application.