CVE-2024-53848

Description

A flaw was found in check-jsonschema. The default cache strategy uses the basename of a remote schema as the name of the file in the cache, for example, https://example.org/schema.json, which will be stored as schema.json. This naming allows for conflicts. If an attacker can get a user to run check-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.

Statement

This vulnerability is of significant severity because it directly undermines the integrity of the JSON schema validation process, a important mechanism for ensuring data consistency and security in many applications. By exploiting the cache naming collision, an attacker can inject a malicious schema that bypasses intended validation rules, leading to the acceptance of unauthorized or malformed data. Such a compromise can result in cascading effects, including data corruption, application malfunction, and potential exploitation of downstream systems relying on the validated data. The broad applicability of JSON schema validation across diverse systems amplifies the potential impact, elevating this issue from moderate to a high-severity concern, particularly in environments where schema validation is a key line of defense against invalid or malicious input.

Mitigation

- Users can use --no-cache to disable caching.

- Users can use --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.)

- Users can explicitly download the schema before use as a local file, as in curl -LOs https://example.org/schema.json; check-jsonschema --schemafile ./schema.json

Understanding the Weakness (CWE)

Access Control,Integrity

Technical Impact: Bypass Protection Mechanism; Modify Application Data

An attacker could package untrusted data with trusted data to bypass protection mechanisms to gain access to and possibly modify sensitive data.

Frequently Asked Questions

Want to get errata notifications? Sign up here.