The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-33948

CVE-2026-33948: jq JSON Processor Disclosure Vulnerability

CVE-2026-33948 is an information disclosure flaw in jq command-line JSON processor that allows validation bypass via embedded NUL bytes. This post covers the technical details, affected versions, and mitigation steps.

Published: April 17, 2026

CVE-2026-33948 Overview

CVE-2026-33948 is an input validation vulnerability in jq, a popular command-line JSON processor. The vulnerability exists in commits before 6374ae0bcdfe33a18eb0ae6db28493b1f34a0a5b 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.

Critical Impact

Attackers can craft malicious JSON input with a benign prefix before a NUL byte followed by malicious trailing data. jq validates only the prefix while silently discarding the suffix, enabling parser differential attacks against downstream consumers that process the full input.

Affected Products

  • jq (commits before 6374ae0bcdfe33a18eb0ae6db28493b1f34a0a5b)

Discovery Timeline

  • 2026-04-14 - CVE CVE-2026-33948 published to NVD
  • 2026-04-14 - Last updated in NVD database

Technical Details for CVE-2026-33948

Vulnerability Analysis

This vulnerability is classified as CWE-20 (Improper Input Validation). The core issue lies in how jq handles buffer length calculation when parsing JSON input from files or stdin. The vulnerable code uses strlen() to determine the valid length of the input buffer, which only counts characters up to the first NUL (0x00) byte. However, the actual data read by fgets() may contain embedded NUL bytes followed by additional data.

This discrepancy creates a parser differential vulnerability where jq's view of the input differs from what downstream consumers see. An attacker can exploit this by crafting input that appears valid to jq's validation but contains malicious payloads after an embedded NUL byte.

Root Cause

The root cause is the improper use of strlen() for buffer length calculation in src/util.c. The strlen() function is designed to find the length of a C-style null-terminated string, which stops counting at the first NUL byte encountered. When processing binary-safe input that may contain embedded NUL bytes, this approach incorrectly truncates the perceived input length, causing jq to validate only a portion of the actual data.

Attack Vector

The attack vector involves network-accessible input parsing. An attacker crafts a malicious payload consisting of:

  1. A valid JSON prefix that passes jq validation
  2. An embedded NUL byte (0x00)
  3. Malicious trailing data that jq ignores but downstream consumers process

Workflows that use jq to validate untrusted JSON before passing it to other systems are vulnerable. The downstream system may process the full input including the malicious suffix, while jq's validation only examined the benign prefix.

c
       if (p != NULL)
         state->current_line++;
 
-      if (p == NULL && state->parser != NULL) {
-        /*
-         * There should be no NULs in JSON texts (but JSON text
-         * sequences are another story).
-         */
-        state->buf_valid_len = strlen(state->buf);
-      } else if (p == NULL && feof(state->current_input)) {
+      if (p == NULL && feof(state->current_input)) {
         size_t i;
 
         /*

Source: GitHub Commit

Detection Methods for CVE-2026-33948

Indicators of Compromise

  • JSON input containing embedded NUL bytes (0x00) in unexpected positions
  • Discrepancies between jq validation results and downstream parser interpretations
  • Unusual byte sequences in JSON data streams where binary characters appear after valid JSON structures

Detection Strategies

  • Monitor for binary data within JSON input streams, particularly NUL bytes that should not appear in valid JSON
  • Implement logging that compares input sizes at validation points versus downstream processing points
  • Deploy content inspection rules that flag JSON inputs containing control characters or NUL bytes

Monitoring Recommendations

  • Audit systems that use jq as a JSON validation gateway before forwarding to other consumers
  • Review logs for size discrepancies between received input and validated content
  • Monitor for parser differential symptoms where validated content differs from processed content

How to Mitigate CVE-2026-33948

Immediate Actions Required

  • Update jq to a version containing commit 6374ae0bcdfe33a18eb0ae6db28493b1f34a0a5b or later
  • Review workflows that rely on jq for JSON validation before forwarding to downstream systems
  • Implement additional input validation that rejects JSON containing NUL bytes

Patch Information

The vulnerability has been patched in commit 6374ae0bcdfe33a18eb0ae6db28493b1f34a0a5b. The fix removes the vulnerable code path that used strlen() for buffer length calculation, ensuring the parser correctly handles the actual byte count from input operations. Users should update to a version of jq that includes this commit. For more details, see the GitHub Security Advisory.

Workarounds

  • Pre-filter JSON input to reject any data containing NUL bytes before passing to jq
  • Implement binary-safe length checks in validation workflows that compare actual input size with jq's perceived size
  • Use alternative JSON validators that handle embedded NUL bytes correctly until jq can be updated
bash
# Pre-filter to reject input containing NUL bytes before jq validation
if grep -qP '\\x00' input.json; then
    echo "Rejecting input containing NUL bytes"
    exit 1
fi
jq '.' input.json

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechJq

  • SeverityLOW

  • CVSS Score2.9

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-20
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-32cx-cvvh-2wj9
  • Related CVEs
  • CVE-2026-33947: jq JSON Processor DoS Vulnerability

  • CVE-2026-39956: jq JSON Processor Use-After-Free Vulnerability

  • CVE-2026-40164: jq JSON Processor DoS Vulnerability

  • CVE-2026-32316: jq JSON Processor Buffer Overflow Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English