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-71003

CVE-2025-71003: OneFlow DoS Vulnerability via flow.arange()

CVE-2025-71003 is an input validation flaw in OneFlow v0.9.0's flow.arange() component that enables attackers to trigger denial of service conditions. This article covers technical details, affected versions, and mitigation.

Published: January 30, 2026

CVE-2025-71003 Overview

CVE-2025-71003 is an input validation vulnerability affecting the flow.arange() component of OneFlow v0.9.0, an open-source deep learning framework. This vulnerability allows attackers to cause a Denial of Service (DoS) condition by providing specially crafted input to the vulnerable function. The flaw stems from improper input validation (CWE-20), which fails to adequately sanitize user-supplied data before processing.

Critical Impact

Attackers can exploit this vulnerability remotely over the network without authentication to crash OneFlow applications, disrupting machine learning workloads and model training operations.

Affected Products

  • OneFlow v0.9.0
  • Applications and services built on OneFlow v0.9.0 utilizing the flow.arange() function

Discovery Timeline

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

Technical Details for CVE-2025-71003

Vulnerability Analysis

The vulnerability resides in the flow.arange() function within OneFlow, a deep learning framework designed for distributed computing. The arange() function is commonly used to generate tensors containing evenly spaced values within a given interval—a fundamental operation in machine learning workflows for creating indices, ranges, and sequential data structures.

When processing user-supplied parameters, the function fails to properly validate input boundaries and data types. This lack of input sanitization allows an attacker to provide malformed or unexpected values that trigger undefined behavior within the framework, ultimately causing the application to crash or become unresponsive.

The network-based attack vector means that any service exposing OneFlow functionality to remote inputs—such as ML inference APIs, model serving endpoints, or distributed training nodes—could be targeted without requiring prior authentication.

Root Cause

The root cause is improper input validation (CWE-20) in the flow.arange() component. The function does not adequately verify that input parameters fall within acceptable ranges or conform to expected data types before attempting to process them. This allows boundary conditions or edge-case inputs to propagate through the system and trigger failure conditions.

Attack Vector

The attack vector is network-based, requiring no user interaction or special privileges. An attacker can remotely send crafted input to any application or service utilizing the vulnerable flow.arange() function. Successful exploitation results in a Denial of Service condition, affecting application availability but not compromising data confidentiality or integrity.

The vulnerability can be exploited by submitting malformed parameters to the flow.arange() function. When the function receives input values that fall outside expected boundaries or contain malformed data types, it fails to handle these edge cases gracefully. Technical details regarding the specific exploitation mechanism can be found in the GitHub Issue Discussion.

Detection Methods for CVE-2025-71003

Indicators of Compromise

  • Unexpected application crashes or service restarts in OneFlow-based workloads
  • Abnormal input patterns targeting flow.arange() function calls in application logs
  • Increased error rates or exceptions originating from tensor creation operations
  • Memory allocation failures or resource exhaustion events coinciding with external requests

Detection Strategies

  • Implement input validation monitoring at application boundaries to detect malformed tensor parameters
  • Deploy anomaly detection for unusual patterns in API requests to ML serving endpoints
  • Monitor system logs for recurring crashes or exceptions in OneFlow processes
  • Configure alerts for unexpected service restarts in ML pipeline components

Monitoring Recommendations

  • Enable verbose logging for OneFlow operations to capture detailed error information
  • Implement rate limiting on public-facing ML inference APIs to reduce DoS impact
  • Monitor resource utilization metrics (CPU, memory) for abnormal spikes during request processing
  • Set up health checks and automated recovery mechanisms for OneFlow-based services

How to Mitigate CVE-2025-71003

Immediate Actions Required

  • Audit all deployments to identify systems running OneFlow v0.9.0
  • Implement input validation at the application layer before passing data to flow.arange()
  • Consider isolating vulnerable OneFlow instances from untrusted network access
  • Monitor the OneFlow GitHub repository for official patches

Patch Information

No official vendor patch has been confirmed at the time of this writing. Users should monitor the OneFlow project's GitHub repository and release notes for security updates addressing this vulnerability. The issue has been documented in the GitHub Issue Discussion.

Workarounds

  • Implement strict input validation for all parameters passed to flow.arange() before invocation
  • Deploy network-level controls to restrict access to OneFlow-based services from untrusted sources
  • Consider upgrading to newer OneFlow versions if available and verified to be unaffected
  • Implement application-level exception handling to gracefully recover from crashes
bash
# Example: Input validation wrapper for flow.arange()
# Validate parameters before passing to the vulnerable function
# Implement boundary checks for start, end, and step parameters
# Ensure data types match expected tensor parameter specifications
# Log and reject requests with invalid input patterns

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-20
  • Technical References
  • GitHub User Profile

  • GitHub Issue Discussion
  • 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-71002: OneFlow DoS Vulnerability via FPE 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