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
    • 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-33996

CVE-2026-33996: Libjwt Information Disclosure Flaw

CVE-2026-33996 is an information disclosure vulnerability in Libjwt affecting versions 3.0.0 to 3.2.x. The flaw occurs during JWK parsing for RSA-PSS keys. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-33996 Overview

CVE-2026-33996 is a NULL Pointer Dereference vulnerability in LibJWT, a C JSON Web Token Library. Starting in version 3.0.0 and prior to version 3.3.0, the JWK parsing for RSA-PSS did not protect against a NULL value when expecting to parse JSON string values. A specially crafted JWK file could exploit this behavior by using integers in places where the code expected a string, leading to application crashes or potential denial of service conditions.

Critical Impact

Applications using LibJWT to parse untrusted JWK files with RSA-PSS keys are vulnerable to crashes through malformed input, potentially causing service disruption.

Affected Products

  • LibJWT versions >= 3.0.0 and < 3.3.0
  • Applications using LibJWT for JWK parsing with RSA-PSS key support
  • Systems processing JWK files from untrusted sources

Discovery Timeline

  • 2026-03-27 - CVE CVE-2026-33996 published to NVD
  • 2026-03-31 - Last updated in NVD database

Technical Details for CVE-2026-33996

Vulnerability Analysis

This vulnerability exists in LibJWT's JSON Web Key (JWK) parsing functionality, specifically when handling RSA-PSS cryptographic keys. The flaw occurs because the parser fails to validate that expected JSON string values are actually strings before dereferencing them. When the parser encounters an integer value where a string is expected, it attempts to process this data without proper type checking, resulting in a NULL pointer dereference.

The vulnerability is classified as CWE-476 (NULL Pointer Dereference), which occurs when an application dereferences a pointer that it expects to be valid but is actually NULL. In this case, the parsing logic does not adequately verify the JSON value types before attempting string operations.

Root Cause

The root cause stems from insufficient input validation in the JWK parsing routines for RSA-PSS keys. The code assumes that certain JSON fields will always contain string values as per the JWK specification. However, when processing a maliciously crafted JWK file that contains integer values instead of the expected strings, the parsing function returns NULL, which is then dereferenced without a safety check.

Attack Vector

The attack requires an adversary to craft a malicious JWK file with type-confused values (integers where strings are expected) and have the target application parse this file. The attack vector is categorized as Adjacent Network, requiring some level of proximity or access to provide the malicious input. User interaction is required to trigger the vulnerability, as the victim application must actively import or process the attacker-supplied JWK file.

The exploitation chain involves:

  1. Attacker creates a malformed JWK file with RSA-PSS key parameters containing integers instead of strings
  2. The victim application imports this JWK file for key processing
  3. The LibJWT parser encounters the unexpected integer type and returns NULL
  4. The code attempts to dereference the NULL pointer, causing a crash

The vulnerability mechanism involves improper type checking in the JSON parsing logic. When the parser expects a string value for RSA-PSS key parameters but receives an integer, it fails to handle this type mismatch gracefully. For technical implementation details, see the GitHub Security Advisory.

Detection Methods for CVE-2026-33996

Indicators of Compromise

  • Application crashes or segmentation faults when processing JWK files
  • Unexpected service terminations in JWT-based authentication systems
  • Core dumps showing NULL pointer access in LibJWT parsing functions
  • Error logs indicating malformed JWK file processing attempts

Detection Strategies

  • Monitor application logs for segmentation faults or abnormal terminations related to JWT processing
  • Implement input validation to detect malformed JWK files before they reach the LibJWT parser
  • Use static analysis tools to identify LibJWT version dependencies in your codebase
  • Deploy file integrity monitoring on systems that store JWK files

Monitoring Recommendations

  • Enable crash reporting and analyze core dumps for LibJWT-related NULL pointer dereferences
  • Implement rate limiting on endpoints that accept JWK file uploads
  • Monitor for unusual patterns in JWT authentication failures that may indicate exploitation attempts
  • Set up alerts for LibJWT-related error messages in application logs

How to Mitigate CVE-2026-33996

Immediate Actions Required

  • Upgrade LibJWT to version 3.3.0 or later immediately
  • Audit all applications using LibJWT to identify vulnerable versions
  • Restrict JWK file imports to trusted sources only until patching is complete
  • Use the jwk2key tool to validate JWK files before importing them

Patch Information

The vulnerability has been fixed in LibJWT version 3.3.0. The fix adds proper NULL value checks when parsing JSON string values in RSA-PSS JWK handling. The security patch is available through the official commit. Users should update their LibJWT dependency to version 3.3.0 or newer to remediate this vulnerability.

Workarounds

  • Do not import JWK files from untrusted or unverified sources
  • Use the jwk2key utility to check for validity of JWK files before processing
  • If possible, avoid using JWK files with RSA-PSS keys until the patch can be applied
  • Implement application-level input validation to reject malformed JWK structures before LibJWT processing
bash
# Configuration example
# Validate JWK file before importing
jwk2key --check /path/to/untrusted.jwk

# Update LibJWT to patched version
# For systems using package managers:
apt-get update && apt-get install libjwt>=3.3.0

# Or rebuild from source:
git clone https://github.com/benmcollins/libjwt.git
cd libjwt
git checkout v3.3.0
./configure && make && make install

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLibjwt

  • SeverityMEDIUM

  • CVSS Score5.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:A/AC:H/AT:P/PR:N/UI:A/VC:L/VI:L/VA:H/SC:L/SI:L/SA:L/E:X/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
  • ConfidentialityHigh
  • IntegrityLow
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal Vulnerability
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