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 symfony/symfony
to version 2.1.0 or higher.
symfony/symfony is a PHP framework for web applications and a set of reusable PHP components.
Affected versions of this package are vulnerable to Path Disclosure which allows access to routes protected by a firewall even when the user is not logged in.
Both the Routing component and the Security component uses the path returned by getPathInfo()
to match a Request. The getPathInfo()
returns a decoded path, but the Routing component Symfony\Component\Routing\Matcher\UrlMatcher
decodes the path a second time, whereas the Security component, Symfony\Component\HttpFoundation\RequestMatcher
, does not.