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

CVE-2026-24158: NVIDIA Triton Inference Server DoS Flaw

CVE-2026-24158 is a denial of service vulnerability in NVIDIA Triton Inference Server's HTTP endpoint, exploitable via large compressed payloads. This article covers the technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-24158 Overview

NVIDIA Triton Inference Server contains a vulnerability in the HTTP endpoint where an attacker may cause a denial of service by providing a large compressed payload. This vulnerability allows unauthenticated remote attackers to exhaust server resources by sending specially crafted compressed data that expands to consume excessive memory during decompression, effectively rendering the inference service unavailable.

Critical Impact

Successful exploitation enables remote attackers to disrupt AI/ML inference services without authentication, potentially impacting production machine learning pipelines and dependent applications.

Affected Products

  • NVIDIA Triton Inference Server (HTTP endpoint)

Discovery Timeline

  • 2026-03-24 - CVE-2026-24158 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-24158

Vulnerability Analysis

This vulnerability falls under CWE-789 (Memory Allocation with Excessive Size Value), which occurs when the application allocates memory based on an untrusted size value without proper validation. In the context of NVIDIA Triton Inference Server, the HTTP endpoint accepts compressed payloads for inference requests but fails to adequately limit the decompressed size of incoming data.

When Triton processes HTTP requests containing compressed content (such as gzip or deflate encoded bodies), the server decompresses the payload to process the inference request. An attacker can craft a "compression bomb" or "decompression bomb" - a small compressed file that expands to an enormous size when decompressed. This attack vector is commonly known as a "zip bomb" when applied to compressed archives.

The vulnerability is particularly concerning for AI/ML infrastructure as Triton Inference Server is widely deployed in production environments to serve machine learning models. Disruption of inference services can cascade to affect all downstream applications and services that depend on model predictions.

Root Cause

The root cause of this vulnerability lies in insufficient validation of the decompressed payload size before memory allocation. The HTTP endpoint does not enforce adequate limits on the expansion ratio or final size of decompressed request bodies. When processing compressed content, the server allocates memory proportional to the decompressed size without checking whether this allocation is within acceptable bounds, allowing an attacker to trigger excessive memory consumption with minimal bandwidth.

Attack Vector

The attack can be executed remotely over the network without requiring any authentication or user interaction. An attacker sends an HTTP request to the Triton Inference Server endpoint with a compressed payload in the request body. The compressed data is designed to have an extremely high compression ratio, meaning a small amount of data (potentially just a few kilobytes) decompresses into gigabytes of data.

When the server attempts to decompress this payload, it allocates memory for the expanded content. This can rapidly exhaust available system memory, causing the Triton process to crash or become unresponsive. Repeated attacks can prevent the service from recovering, resulting in a sustained denial of service condition.

The attack is particularly effective because:

  1. No authentication is required to send requests to the HTTP inference endpoint
  2. The attacker only needs to send small amounts of data to trigger large memory allocations
  3. The server processes the decompression synchronously, blocking resources

Detection Methods for CVE-2026-24158

Indicators of Compromise

  • Unusual spikes in memory utilization on systems running Triton Inference Server
  • HTTP requests with small content-length but compressed content encoding headers (gzip, deflate, br)
  • Repeated crashes or out-of-memory errors in Triton Inference Server logs
  • Sudden service unavailability of inference endpoints without corresponding increase in legitimate traffic

Detection Strategies

  • Monitor HTTP request patterns for anomalous compression ratios by comparing Content-Length headers to actual payload sizes after decompression
  • Implement alerting on rapid memory consumption events correlated with HTTP endpoint activity
  • Deploy network-based intrusion detection rules to identify requests with suspicious compression characteristics
  • Review Triton server logs for repeated connection resets or memory allocation failures

Monitoring Recommendations

  • Configure resource monitoring to alert when Triton containers or processes exceed memory thresholds
  • Implement rate limiting and request size validation at the load balancer or reverse proxy level
  • Enable detailed access logging on HTTP endpoints to facilitate forensic analysis of potential attacks
  • Monitor container orchestration platforms (Kubernetes) for pod evictions or OOM kill events affecting Triton deployments

How to Mitigate CVE-2026-24158

Immediate Actions Required

  • Review the NVIDIA Support Answer for official patch information and apply available updates
  • Implement request size limits at the reverse proxy or load balancer level to restrict maximum decompressed payload sizes
  • Consider temporarily disabling compressed request body support if not required for your deployment
  • Restrict network access to Triton Inference Server endpoints to trusted sources using firewall rules or network policies

Patch Information

NVIDIA has published a security advisory addressing this vulnerability. Administrators should consult the NVIDIA Support Answer for specific patch versions and upgrade instructions. Review the NVD CVE-2026-24158 Details for additional technical information and updates.

Workarounds

  • Deploy a reverse proxy (such as NGINX or HAProxy) in front of Triton with configured limits on client_body_buffer_size and decompression settings
  • Implement Web Application Firewall (WAF) rules to inspect and limit compressed payload expansion ratios
  • Use Kubernetes resource limits to constrain memory available to Triton pods, preventing system-wide impact from memory exhaustion
  • Enable authentication on Triton endpoints to reduce the attack surface from anonymous remote attackers
bash
# Example NGINX configuration to limit request body size
# Add to nginx.conf or server block configuration
client_max_body_size 10m;
client_body_buffer_size 128k;

# Disable automatic decompression to prevent bomb attacks
# Inspect payloads manually with size limits
gunzip_buffers 16 8k;

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNvidia Triton

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • 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-789
  • Technical References
  • NVD CVE-2026-24158 Details

  • NVIDIA Support Answer

  • CVE-2026-24158 Record Overview
  • Related CVEs
  • CVE-2025-33238: NVIDIA Triton Server 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