check-jsonschema default caching for remote schemas allows for cache confusion
Moderate severity
GitHub Reviewed
Published
Nov 29, 2024
in
python-jsonschema/check-jsonschema
•
Updated Dec 2, 2024
Description
Published by the National Vulnerability Database
Nov 29, 2024
Published to the GitHub Advisory Database
Dec 2, 2024
Reviewed
Dec 2, 2024
Last updated
Dec 2, 2024
Impact
The default cache strategy uses the basename of a remote schema as the name of the file in the cache, e.g.
https://example.org/schema.json
will be stored asschema.json
. This naming allows for conflicts. If an attacker can get a user to runcheck-jsonschema
against a malicious schema URL, e.g.,https://example.evil.org/schema.json
, they can insert their own schema into the cache and it will be picked up and used instead of the appropriate schema.Such a cache confusion attack could be used to allow data to pass validation which should have been rejected.
Patches
A patch is in progress but has not yet been released.
Workarounds
--no-cache
to disable caching.--cache-filename
to select filenames for use in the cache, or to ensure that other usages do not overwrite the cached schema. (Note: this flag is being deprecated as part of the remediation effort.)curl -LOs https://example.org/schema.json; check-jsonschema --schemafile ./schema.json
References