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

CVE-2025-65890: OneFlow v0.9.0 DoS Vulnerability

CVE-2025-65890 is a denial of service flaw in OneFlow v0.9.0 caused by device-ID validation issues. Attackers can trigger DoS via invalid GPU device indexes. This post covers technical details, affected versions, and mitigations.

Published: January 30, 2026

CVE-2025-65890 Overview

A device-ID validation flaw in OneFlow v0.9.0 allows attackers to cause a Denial of Service (DoS) by calling flow.cuda.synchronize() with an invalid or out-of-range GPU device index. This vulnerability (CWE-400: Uncontrolled Resource Consumption) enables remote attackers to disrupt service availability without requiring authentication or user interaction.

Critical Impact

Unauthenticated attackers can remotely crash OneFlow-based applications by exploiting improper validation of GPU device indices, leading to service disruption for machine learning workloads.

Affected Products

  • OneFlow v0.9.0
  • Applications utilizing OneFlow CUDA synchronization functions
  • Systems running OneFlow with GPU acceleration enabled

Discovery Timeline

  • 2026-01-28 - CVE CVE-2025-65890 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2025-65890

Vulnerability Analysis

This vulnerability stems from insufficient input validation in OneFlow's CUDA synchronization functionality. The flow.cuda.synchronize() function accepts a device index parameter that specifies which GPU device to synchronize. When an attacker supplies an invalid or out-of-range GPU device index, the function fails to properly validate this input before attempting to interact with the CUDA runtime.

The flaw allows attackers to trigger uncontrolled resource consumption by forcing the application into an error state. Because the vulnerability is accessible over the network and requires no privileges or user interaction, it presents a significant risk to systems exposing OneFlow-based services.

Root Cause

The root cause is improper input validation (CWE-400) in the device index handling logic within the flow.cuda.synchronize() function. The function does not adequately verify that the provided GPU device index corresponds to an actual, available GPU device on the system before attempting synchronization operations. This missing boundary check allows attackers to specify arbitrary device indices that exceed the number of available GPUs or use negative values.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying a target system running an application built on OneFlow v0.9.0 with exposed API endpoints
  2. Crafting a malicious request that invokes flow.cuda.synchronize() with an invalid device index (e.g., a negative number or an index exceeding the available GPU count)
  3. Sending the request to trigger the DoS condition, causing the application to crash or become unresponsive

The vulnerability is particularly concerning in production machine learning inference environments where OneFlow handles GPU workloads and service availability is critical.

For technical implementation details regarding this vulnerability, refer to OneFlow Issue #10662 which documents the device-ID validation flaw.

Detection Methods for CVE-2025-65890

Indicators of Compromise

  • Unexpected application crashes in OneFlow-based services, particularly those involving CUDA operations
  • Abnormal error messages related to invalid GPU device indices in application logs
  • Repeated calls to flow.cuda.synchronize() with unusual or out-of-range device parameters
  • Service availability issues correlating with incoming API requests targeting CUDA functions

Detection Strategies

  • Monitor application logs for CUDA-related errors involving device index validation failures
  • Implement anomaly detection for API calls to CUDA synchronization functions with unusual device parameters
  • Deploy intrusion detection rules to flag requests containing negative or excessively large device index values
  • Use application performance monitoring to detect sudden service degradation patterns

Monitoring Recommendations

  • Configure alerting for repeated CUDA synchronization failures in OneFlow applications
  • Establish baseline metrics for normal GPU device access patterns to identify anomalous behavior
  • Review access logs for API endpoints that expose CUDA synchronization functionality
  • Implement rate limiting and input validation at the application boundary for GPU-related operations

How to Mitigate CVE-2025-65890

Immediate Actions Required

  • Review all OneFlow v0.9.0 deployments and identify systems exposed to network access
  • Implement input validation at the application layer to sanitize GPU device index parameters before passing to OneFlow
  • Restrict network access to OneFlow-based services to trusted sources only
  • Monitor for patches or updates from the OneFlow development team via the OneFlow GitHub Repository

Patch Information

No official patch has been confirmed at the time of this publication. Organizations should monitor the OneFlow GitHub Repository and OneFlow Issue #10662 for updates regarding security fixes. Contact the OneFlow development team for guidance on remediation timelines.

Workarounds

  • Implement application-level validation to ensure GPU device indices are within the valid range (0 to N-1, where N is the number of available GPUs)
  • Use network segmentation to limit exposure of OneFlow-based services to trusted internal networks only
  • Deploy a reverse proxy or API gateway to filter and validate incoming requests before they reach the OneFlow application
  • Consider containerization with resource limits to contain the impact of potential DoS attacks
bash
# Example: Enumerate available CUDA devices to determine valid index range
# Use this information to implement input validation
nvidia-smi --list-gpus
# Output example: GPU 0: NVIDIA A100 (UUID: GPU-xxxx)
# Valid device indices would be 0 to (GPU_COUNT - 1)

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOneflow

  • 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-400
  • Technical References
  • OneFlow Homepage

  • GitHub User Profile

  • OneFlow GitHub Repository

  • OneFlow Issue #10662
  • Related CVEs
  • CVE-2025-71006: OneFlow v0.9.0 DoS Vulnerability

  • CVE-2025-71005: OneFlow v0.9.0 DoS Vulnerability

  • CVE-2025-71004: OneFlow Denial of Service Vulnerability

  • CVE-2025-71003: OneFlow DoS Vulnerability via flow.arange()
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