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

CVE-2025-65888: OneFlow DoS Vulnerability

CVE-2025-65888 is a denial of service flaw in OneFlow 0.9.0 caused by improper dimension validation in flow.empty(). This post covers the technical details, affected versions, impact, and mitigation strategies.

Published: January 30, 2026

CVE-2025-65888 Overview

A dimension validation flaw exists in the flow.empty() component of OneFlow 0.9.0 that allows attackers to cause a Denial of Service (DoS) condition. The vulnerability occurs when the component fails to properly validate dimension values, permitting negative or excessively large dimension inputs that can crash the application or exhaust system resources.

Critical Impact

Remote attackers can exploit this input validation flaw to trigger a Denial of Service condition without authentication, potentially disrupting machine learning workflows and production systems relying on OneFlow.

Affected Products

  • OneFlow 0.9.0
  • OneFlow flow.empty() component
  • Systems utilizing OneFlow tensor operations with user-supplied dimension parameters

Discovery Timeline

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

Technical Details for CVE-2025-65888

Vulnerability Analysis

This vulnerability is classified as CWE-400 (Uncontrolled Resource Consumption), manifesting specifically as an input validation failure in OneFlow's tensor creation functionality. The flow.empty() function is designed to create tensors with specified dimensions, but the implementation lacks proper boundary checks on dimension parameters.

When a user or attacker supplies a negative dimension value or an excessively large positive value, the function fails to reject these invalid inputs at the validation stage. This oversight can lead to memory allocation failures, resource exhaustion, or unexpected application behavior that results in service unavailability.

The vulnerability is particularly concerning in environments where OneFlow processes untrusted input, such as web services exposing machine learning inference APIs or multi-tenant GPU computing platforms.

Root Cause

The root cause stems from insufficient input validation in the dimension parameter handling logic of the flow.empty() component. The function does not implement proper bounds checking to ensure dimension values fall within acceptable ranges before attempting tensor allocation. Negative dimensions are logically invalid for tensor creation, while extremely large dimensions can trigger integer overflow conditions or memory exhaustion scenarios.

Attack Vector

The vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker can craft malicious requests containing invalid dimension parameters and send them to any service that exposes OneFlow tensor operations. The attack requires low complexity to execute—simply passing a negative integer (e.g., -1) or an extremely large value to the dimension parameter of flow.empty() can trigger the DoS condition.

The attack does not compromise data confidentiality or integrity, but successfully terminates or hangs the target process, causing complete loss of availability for affected services.

Detection Methods for CVE-2025-65888

Indicators of Compromise

  • Unexpected application crashes or terminations in OneFlow-based services
  • Error logs showing memory allocation failures or invalid dimension exceptions
  • Process hangs with abnormally high memory consumption during tensor operations
  • Repeated requests containing negative or extremely large integer values in tensor dimension parameters

Detection Strategies

  • Monitor application logs for dimension-related errors or exceptions in flow.empty() calls
  • Implement input validation logging to detect anomalous dimension values before they reach OneFlow functions
  • Deploy application-level rate limiting to identify potential DoS attack patterns
  • Use runtime monitoring to detect memory exhaustion or unusual resource consumption patterns

Monitoring Recommendations

  • Set up alerting for OneFlow process crashes or unexpected restarts
  • Monitor system memory usage for sudden spikes correlated with tensor creation operations
  • Track API request patterns for dimension parameters outside normal operational ranges
  • Implement health checks that verify OneFlow service responsiveness

How to Mitigate CVE-2025-65888

Immediate Actions Required

  • Update OneFlow to a patched version when available from the vendor
  • Implement input validation at the application layer to reject negative or excessively large dimension values before passing to flow.empty()
  • Restrict network access to OneFlow-based services to trusted sources only
  • Deploy web application firewalls or API gateways to filter malicious input patterns

Patch Information

Users should monitor the OneFlow GitHub Repository for security updates addressing this vulnerability. The issue has been documented in GitHub Issue #10664. Contact the OneFlow maintainers or check the OneFlow Official Site for official patch announcements and updated releases.

Workarounds

  • Implement wrapper functions that validate dimension parameters before calling flow.empty(), ensuring values are positive and within reasonable bounds
  • Deploy application-level exception handling to gracefully catch and recover from dimension-related failures
  • Use containerization with resource limits to prevent a single crash from affecting the entire system
  • Consider running OneFlow in isolated environments to limit the blast radius of potential DoS attacks

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 Official Site

  • GitHub User Profile

  • OneFlow GitHub Repository

  • GitHub Issue #10664
  • 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