A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2024-29371

CVE-2024-29371: Jose4j DoS Vulnerability via JWE Token

CVE-2024-29371 is a Denial-of-Service vulnerability in Jose4j that allows attackers to exhaust server resources using malicious JWE tokens with high compression ratios. This article covers technical details, affected versions, and mitigation.

Published: May 26, 2026

CVE-2024-29371 Overview

CVE-2024-29371 is a denial-of-service vulnerability in the jose4j library before version 0.9.6. The flaw enables attackers to submit a malicious JSON Web Encryption (JWE) token containing a payload with an exceptionally high compression ratio. When the server processes and decompresses the token, it consumes excessive memory and CPU resources. This is commonly referred to as a zip bomb attack against the JWE decompression routine. The vulnerability affects applications using jose4j to validate or decrypt JWE tokens from untrusted sources.

Critical Impact

A single unauthenticated network request containing a crafted JWE token can exhaust server memory and processing capacity, leading to application unavailability.

Affected Products

  • jose4j versions prior to 0.9.6
  • Java applications consuming JWE tokens via the jose4j library
  • Identity and authentication services relying on jose4j for JOSE processing

Discovery Timeline

  • 2025-12-17 - CVE-2024-29371 published to NVD
  • 2026-01-23 - Last updated in NVD database

Technical Details for CVE-2024-29371

Vulnerability Analysis

The vulnerability falls under [CWE-1259] (Improper Restriction of Security Token Assignment) and represents an algorithmic complexity attack against decompression logic. JSON Web Encryption supports an optional zip header parameter indicating that the plaintext was compressed before encryption, typically with DEF (DEFLATE). The jose4j library decompresses this content during token processing.

Without an enforced output size limit, an attacker can craft a small JWE token whose compressed payload expands into gigabytes of data. The decompression operation allocates memory and consumes CPU cycles proportional to the expanded size, not the input size. The attack does not require authentication or user interaction and is delivered over the network.

Root Cause

The root cause is missing bounds enforcement on the decompressed plaintext size during JWE processing. The library trusted the zip parameter and decompressed the payload to completion without monitoring the output buffer growth against a maximum threshold. Version 0.9.6 introduces protective limits on decompression output.

Attack Vector

An attacker generates a JWE token using the DEF compression algorithm and packs a highly compressible plaintext such as a long sequence of repeating null bytes. The compressed ciphertext remains small enough to pass typical request size filters. When the target service decrypts and decompresses the token, the runtime allocates memory for the expanded payload. Repeated submissions multiply the resource pressure, causing OutOfMemoryError exceptions, garbage collection thrashing, or full service unavailability. Technical detail is available at the jose4j Bitbucket issue tracker.

Detection Methods for CVE-2024-29371

Indicators of Compromise

  • Sudden spikes in Java heap usage or OutOfMemoryError exceptions correlated with inbound JWE traffic
  • Unusually small JWE tokens that produce large decompressed payloads during processing
  • High CPU utilization on JOSE-processing services following requests carrying the zip header value DEF
  • Repeated requests from a single source containing JWE tokens with compression headers

Detection Strategies

  • Inspect application logs for JWE parsing exceptions, memory allocation failures, or thread pool exhaustion
  • Inventory dependencies and flag any service shipping jose4j at a version lower than 0.9.6
  • Add request middleware to log JWE header parameters and alert when the zip parameter is present on tokens from untrusted issuers

Monitoring Recommendations

  • Track JVM heap, GC pause time, and thread counts on services that process JWE tokens
  • Monitor request latency distributions for token validation endpoints and alert on sustained tail latency increases
  • Forward application and runtime telemetry to a centralized analytics platform for correlation across hosts

How to Mitigate CVE-2024-29371

Immediate Actions Required

  • Upgrade jose4j to version 0.9.6 or later across all Java services
  • Audit transitive dependencies in build manifests such as pom.xml and build.gradle for vulnerable jose4j versions
  • Restart affected services after dependency updates to ensure the patched library is loaded

Patch Information

The maintainers addressed the issue in jose4j0.9.6 by enforcing limits on decompressed output during JWE processing. Patch details and discussion are tracked in the official Bitbucket issue.

Workarounds

  • Reject inbound JWE tokens that include a zip header parameter when compression is not required by the protocol
  • Enforce maximum request body sizes at the reverse proxy or API gateway tier
  • Apply per-source rate limiting on endpoints that decrypt or validate JWE tokens
  • Run JOSE-processing components with strict JVM heap limits so resource exhaustion is contained to a single process

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechJose4j

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-1259
  • Vendor Resources
  • Bitbucket Issue - Zip Bomb Vulnerability
  • Related CVEs
  • CVE-2023-51775: Jose4j Java Library DOS Vulnerability

  • CVE-2023-31582: Jose4j Low Iteration Count Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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