The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade nuxt to version 3.21.10, 4.5.1 or higher.
Affected versions of this package are vulnerable to Improper Validation of Specified Quantity in Input via the v-for in server-side rendering of islands or server components. An attacker can cause the server to allocate excessive memory and crash by sending a request with a large integer value for a prop used in v-for, leading to unbounded expansion during rendering. This can be exploited remotely without authentication by crafting requests that trigger excessive iteration counts in the rendering logic.
This vulnerability can be mitigated by clamping the prop value used in v-for within server components (e.g., using v-for="n in Math.min(count, 1000)"), or by avoiding the use of v-for directly over an unclamped prop.