Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-28180

CVE-2024-28180: Go-jose_project Go-jose DOS Vulnerability

CVE-2024-28180 is a denial of service flaw in Go-jose_project Go-jose that allows attackers to exhaust memory and CPU via compressed JWE data. This article covers technical details, affected versions, and patches.

Published: January 28, 2026

CVE-2024-28180 Overview

CVE-2024-28180 is a denial of service vulnerability in the go-jose package, a Go implementation of the Javascript Object Signing and Encryption (JOSE) set of standards. The vulnerability allows an attacker to send a maliciously crafted JSON Web Encryption (JWE) token containing compressed data that, when processed by the Decrypt or DecryptMulti functions, consumes excessive amounts of memory and CPU resources during decompression.

Critical Impact

Applications using vulnerable versions of go-jose can be rendered unavailable through resource exhaustion attacks when processing malicious JWE tokens, potentially affecting authentication systems and API services that rely on this cryptographic library.

Affected Products

  • go-jose versions prior to 4.0.1
  • go-jose versions prior to 3.0.3
  • go-jose versions prior to 2.6.3
  • Fedora Linux distributions with affected go-jose packages

Discovery Timeline

  • March 9, 2024 - CVE-2024-28180 published to NVD
  • December 3, 2025 - Last updated in NVD database

Technical Details for CVE-2024-28180

Vulnerability Analysis

This vulnerability stems from improper handling of compressed content within JWE tokens. The go-jose library supports JWE content encryption with optional compression (using algorithms like DEFLATE). When a token containing compressed data is processed by the Decrypt or DecryptMulti functions, the library decompresses the payload without adequate bounds checking.

An attacker can exploit this by crafting a JWE token with a small compressed payload that expands to an extremely large size upon decompression—a technique commonly known as a "zip bomb" or "decompression bomb." This asymmetric resource consumption allows attackers with minimal bandwidth to cause significant resource exhaustion on the target server.

The vulnerability is classified under CWE-409 (Improper Handling of Highly Compressed Data), which specifically addresses scenarios where applications fail to properly handle compressed data that has extreme compression ratios.

Root Cause

The root cause of this vulnerability is the absence of decompression size limits in the Decrypt and DecryptMulti functions. Prior to the patch, the library would decompress JWE payloads without checking whether the decompressed size was within reasonable bounds. This allowed attackers to craft payloads where a small compressed input could expand to arbitrarily large amounts of data, exhausting server memory and CPU resources.

Attack Vector

The attack is network-based and requires the attacker to have low-level authentication (as indicated by the CVSS vector). The attacker sends a specially crafted JWE token to any endpoint that processes encrypted JWE data using the vulnerable go-jose library. When the application attempts to decrypt the token, the decompression operation consumes excessive resources.

The attack flow typically involves:

  1. Attacker identifies an endpoint accepting JWE tokens that uses go-jose for decryption
  2. Attacker crafts a JWE with highly compressible data (e.g., repeated patterns) that achieves extreme compression ratios
  3. The malicious JWE is sent to the target application
  4. The Decrypt or DecryptMulti function processes the token and attempts to decompress the payload
  5. Memory and CPU are consumed proportionally to the decompressed size, potentially causing service degradation or complete denial of service

Detection Methods for CVE-2024-28180

Indicators of Compromise

  • Unusual memory consumption spikes in applications processing JWE tokens
  • CPU utilization spikes correlating with JWE decryption operations
  • Application crashes or out-of-memory errors in services using go-jose
  • Increased response times for API endpoints that process encrypted tokens
  • Memory allocation failures logged in application or system logs

Detection Strategies

  • Monitor application memory usage patterns for sudden, unexplained growth during token processing
  • Implement application performance monitoring (APM) to track resource consumption of cryptographic operations
  • Use dependency scanning tools to identify vulnerable go-jose versions in your codebase
  • Review application logs for decompression-related errors or timeout events
  • Deploy runtime application self-protection (RASP) solutions that can detect resource exhaustion patterns

Monitoring Recommendations

  • Set up alerting thresholds for memory and CPU usage on services processing JWE tokens
  • Implement request-level resource limits and timeouts for token processing operations
  • Monitor network traffic for unusually sized encrypted payloads that appear small but cause high processing time
  • Track the ratio of request payload size to processing time as an anomaly indicator
  • Enable detailed logging for token validation failures and resource-related exceptions

How to Mitigate CVE-2024-28180

Immediate Actions Required

  • Upgrade go-jose to patched versions: 4.0.1, 3.0.3, or 2.6.3 depending on your version branch
  • Audit your application to identify all locations where Decrypt or DecryptMulti functions are called
  • Implement resource limits at the application or infrastructure level to contain potential DoS impact
  • Consider temporarily disabling JWE compression if it is not strictly required
  • Review and update dependency lock files to ensure patched versions are pulled

Patch Information

The go-jose maintainers have released security patches that introduce decompression size limits. The patched versions now return an error if the decompressed data would exceed 250kB or 10x the compressed size (whichever is larger). This effectively mitigates the decompression bomb attack vector.

Patched versions:

  • Version 4.x: Upgrade to 4.0.1 or later
  • Version 3.x: Upgrade to 3.0.3 or later
  • Version 2.x: Upgrade to 2.6.3 or later

Relevant commits and advisories:

  • GitHub Security Advisory GHSA-c5q2-7r4c-mv6g
  • Patch commit for v4
  • Patch commit for v3
  • Patch commit for v2

Workarounds

  • Implement request timeout limits for endpoints that process JWE tokens to prevent long-running decompression operations
  • Deploy rate limiting on endpoints accepting encrypted tokens to reduce the attack surface
  • Add application-level memory limits using container resource constraints or process memory limits
  • Consider using JWE without compression if the compression feature is not essential for your use case
  • Implement input validation to reject JWE tokens with compression headers if compression is not expected
bash
# Example: Update go-jose dependency in Go modules
go get github.com/go-jose/go-jose/v4@v4.0.1
go mod tidy
go mod verify

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGo Jose

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability3.64%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-409
  • Technical References
  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34986: Go JOSE Library DoS Vulnerability

  • CVE-2025-27144: Go JOSE JWT Parsing DoS 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