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-2025-23326

CVE-2025-23326: Nvidia Triton Inference Server DOS Flaw

CVE-2025-23326 is a denial of service vulnerability in Nvidia Triton Inference Server caused by integer overflow through crafted input. This article covers the technical details, affected versions, impact, and mitigation.

Updated: May 11, 2026

CVE-2025-23326 Overview

CVE-2025-23326 is an integer overflow vulnerability in NVIDIA Triton Inference Server affecting both Windows and Linux deployments. A remote attacker can submit a specially crafted input to trigger the overflow without authentication or user interaction. Successful exploitation causes a denial of service against the inference server.

The flaw is tracked under CWE-680, which covers integer overflow conditions that lead to buffer overflow or other unsafe memory operations. NVIDIA has published an advisory and security update for affected versions of Triton Inference Server.

Critical Impact

Unauthenticated attackers can remotely disrupt AI inference workloads by sending crafted input that triggers an integer overflow, halting model serving for production applications.

Affected Products

  • NVIDIA Triton Inference Server (Windows builds)
  • NVIDIA Triton Inference Server (Linux builds)
  • Deployments on Microsoft Windows and Linux kernel hosts

Discovery Timeline

  • 2025-08-06 - CVE-2025-23326 published to NVD
  • 2025-08-12 - Last updated in NVD database

Technical Details for CVE-2025-23326

Vulnerability Analysis

NVIDIA Triton Inference Server is a high-performance serving platform that hosts machine learning models from frameworks such as TensorFlow, PyTorch, ONNX, and TensorRT. It typically exposes HTTP and gRPC endpoints for inference requests on the network.

The vulnerability stems from improper validation of size or length fields when parsing attacker-controlled input. When the affected code path performs arithmetic on these fields, the result wraps around the integer storage limit. This integer overflow leads to undersized allocations, out-of-bounds access, or other unsafe operations that crash the server process.

Because Triton is designed to serve production inference traffic, an unexpected process termination disrupts every model hosted by the affected instance. Recovery requires process restart and may interrupt downstream applications that depend on real-time inference. The impact is confined to availability, with no confidentiality or integrity loss reported by NVIDIA.

Root Cause

The root cause is a [CWE-680] integer overflow to buffer overflow weakness. Input-derived size values are used in calculations without sufficient range checks, allowing the result to exceed the maximum value of the underlying integer type and wrap to a small or negative value.

Attack Vector

The attack vector is network-based and requires no privileges or user interaction. An attacker who can reach the Triton HTTP or gRPC inference endpoint sends a crafted request whose dimensions, tensor shapes, or payload lengths trigger the overflow during request parsing or tensor handling. The server process then terminates, producing a denial of service condition.

No public exploit code or proof-of-concept has been published for CVE-2025-23326 at the time of writing. Refer to the NVIDIA Support Answer for vendor-specific exploitation context.

Detection Methods for CVE-2025-23326

Indicators of Compromise

  • Unexpected crashes or restarts of the tritonserver process without correlating workload changes
  • Repeated inference requests from a single source containing abnormally large tensor dimensions or payload sizes
  • HTTP 5xx errors or gRPC UNAVAILABLE responses immediately following anomalous request payloads
  • Core dumps or segmentation fault entries in system logs referencing Triton libraries

Detection Strategies

  • Monitor Triton server logs for parser errors, abrupt termination signals, and watchdog-triggered restarts
  • Inspect inference request metadata for tensor shape values approaching 32-bit or 64-bit integer boundaries
  • Correlate network telemetry for unauthenticated clients posting to /v2/models/*/infer endpoints with malformed payloads
  • Apply rate-based detections for clients that repeatedly cause server crashes within short intervals

Monitoring Recommendations

  • Enable Triton metrics export to Prometheus and alert on inference request failure spikes and process restart counters
  • Forward host process events and OS-level crash dumps to a centralized SIEM for correlation
  • Track availability of model endpoints with synthetic health probes that detect downtime within seconds
  • Audit ingress firewall rules to confirm Triton endpoints are not exposed to untrusted networks

How to Mitigate CVE-2025-23326

Immediate Actions Required

  • Apply the patched Triton Inference Server release identified in the NVIDIA security bulletin
  • Restrict network access to Triton HTTP and gRPC ports so only authenticated, trusted clients can reach inference endpoints
  • Place Triton behind an API gateway or reverse proxy that enforces request size limits and input validation
  • Inventory all Triton deployments across Windows and Linux hosts to confirm version coverage

Patch Information

NVIDIA has released updated Triton Inference Server builds that address CVE-2025-23326. Administrators should consult the NVIDIA Support Answer 5687 for the fixed version numbers applicable to their platform and upgrade promptly. Full vulnerability metadata is available in the NIST NVD entry for CVE-2025-23326 and the CVE.org record.

Workarounds

  • Enforce maximum request size and tensor dimension limits at an upstream proxy until the patch is deployed
  • Run Triton inside a process supervisor that restarts the server automatically on crash to limit downtime
  • Require mutual TLS or token authentication on inference endpoints to reduce the unauthenticated attack surface
  • Segment Triton hosts onto isolated networks accessible only to approved application tiers
bash
# Example: restrict Triton inference ports to an internal subnet on Linux
sudo iptables -A INPUT -p tcp --dport 8000 -s 10.0.0.0/24 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 8001 -s 10.0.0.0/24 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 8000 -j DROP
sudo iptables -A INPUT -p tcp --dport 8001 -j DROP

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 Inference Server

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.15%

  • 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-680
  • Technical References
  • NIST CVE-2025-23326 Details

  • CVE.org Record CVE-2025-23326
  • Vendor Resources
  • NVIDIA Support Answer
  • Related CVEs
  • CVE-2026-24173: NVIDIA Triton Server DoS Vulnerability

  • CVE-2026-24146: NVIDIA Triton Inference Server DoS Flaw

  • CVE-2026-24175: NVIDIA Triton Server DoS Vulnerability

  • CVE-2026-24174: NVIDIA Triton Inference Server DoS 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