CVE-2026-33948: jq: Embedded-NUL Truncation in CLI JSON Input Path Causes Prefix-Only Validation of Malformed Input
jq is a command-line JSON processor. Commits before 6374ae0bcdfe33a18eb0ae6db28493b1f34a0a5b contain a vulnerability where CLI input parsing allows validation bypass via embedded NUL bytes. When reading JSON from files or stdin, jq uses strlen() to determine buffer length instead of the actual byte count from fgets(), causing it to truncate input at the first NUL byte and parse only the preceding prefix. This enables an attacker to craft input with a benign JSON prefix before a NUL byte followed by malicious trailing data, where jq validates only the prefix as valid JSON while silently discarding the suffix. Workflows relying on jq to validate untrusted JSON before forwarding it to downstream consumers are susceptible to parser differential attacks, as those consumers may process the full input including the malicious trailing bytes. This issue has been patched by commit 6374ae0bcdfe33a18eb0ae6db28493b1f34a0a5b.
Affected Software
Remediation
Event History
Frequently Asked Questions
What is the severity of CVE-2026-33948?
CVE-2026-33948 is classified with medium severity due to its potential to allow validation bypass through embedded NUL bytes in CLI input.
How do I fix CVE-2026-33948?
To fix CVE-2026-33948, upgrade jq to a version above 6374ae0bcdfe33a18eb0ae6db28493b1f34a0a5b to mitigate this vulnerability.
What type of software is affected by CVE-2026-33948?
CVE-2026-33948 affects the Stedolan jq command-line JSON processor version prior to 6374ae0bcdfe33a18eb0ae6db28493b1f34a0a5b.
What is the main issue with CVE-2026-33948?
The main issue with CVE-2026-33948 is that it allows prefix-only validation of malformed input due to a flaw in CLI input parsing.
Can CVE-2026-33948 affect data integrity?
Yes, CVE-2026-33948 can potentially affect data integrity by enabling attacks that exploit the validation bypass for JSON input.