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 phenx/php-svg-lib
to version 0.5.1 or higher.
phenx/php-svg-lib is a library to read, parse and export to PDF SVG files.
Affected versions of this package are vulnerable to Uncontrolled Recursion via the parsing of attributes in an SVG use
tag, which can lead to infinite recursion. An attacker can cause a denial of service by crafting an SVG document that triggers this recursive behavior. This is only exploitable if the id
attribute in the use
tag is the same as the href
or xlink:href
link attribute, causing the parser to enter an infinite loop until memory resources are exhausted.
<svg width="200" height="200"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<use id="selfref" xlink:href="#selfref" />
</svg>