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 to version 3.0.2 or higher.
call
is the primary HTTP router of the hapi
framework.
The vulnerability arise from undefined
values inside a path (last segment being an exception) making their way into components that do not care for values being undefined
(eg. the database layer).
For example, the request URI /delete/company//
may incorrectly match a route looking for /delete/company/{company}/
. By itself, the bad match is not a vulnerability. However, depending on the remaining logic in the application, such a bad match may result in skipping a protection mechanisms. In the above example, if the route translates to a DB delete command, it might delete all the companies from the db.