Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
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 js-yaml to version 5.2.1 or higher.
js-yaml is a human-friendly data serialization language.
Affected versions of this package are vulnerable to Inefficient Algorithmic Complexity in the omapTag.addItem() function of src/tag/sequence/omap.ts, which performs a linear scan for duplicate keys on every insertion into an ordered map. An attacker can block the Node.js event loop and cause denial of service by supplying an !!omap value with many entries, around 50,000 in a roughly 2 MB document, which forces O(n²) duplicate-key checks. Exploitation requires the application to parse untrusted YAML with the YAML 1.1 schema (yaml.load(input, { schema: yaml.YAML11_SCHEMA })), under which the !!omap tag is resolved.