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 check-jsonschema
to version 0.30.0 or higher.
check-jsonschema is an A jsonschema CLI and pre-commit hook
Affected versions of this package are vulnerable to Acceptance of Extraneous Untrusted Data With Trusted Data via the default caching mechanism for remote schemas. An attacker can manipulate the cache to insert a malicious schema, which will be used instead of the intended schema, potentially allowing invalid data to pass validation by directing a user to a malicious schema URL.
This vulnerability can be mitigated by disabling caching with --no-cache
, using --cache-filename
to specify cache filenames, or by manually downloading the schema as a local file before use as in curl -LOs https://example.org/schema.json; check-jsonschema --schemafile ./schema.json