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-2026-34447

CVE-2026-34447: ONNX Path Traversal Vulnerability

CVE-2026-34447 is a path traversal vulnerability in Open Neural Network Exchange (ONNX) that enables symlink traversal attacks to read files outside the model directory. This article covers technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-34447 Overview

CVE-2026-34447 is a symlink traversal vulnerability affecting the Open Neural Network Exchange (ONNX), an open standard for machine learning interoperability. Prior to version 1.21.0, the external data loading functionality allows attackers to read files outside the model directory by exploiting symlink traversal techniques. This vulnerability falls under CWE-22 (Path Traversal) and poses significant risk to systems processing untrusted ONNX models.

Critical Impact

Attackers can leverage this symlink traversal vulnerability to read sensitive files outside the intended model directory, potentially exposing configuration files, credentials, or other sensitive data on systems that load untrusted ONNX models.

Affected Products

  • Open Neural Network Exchange (ONNX) versions prior to 1.21.0
  • Applications and ML frameworks that process external ONNX models with external data references
  • Machine learning pipelines that load ONNX models from untrusted sources

Discovery Timeline

  • 2026-04-01 - CVE CVE-2026-34447 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-34447

Vulnerability Analysis

This vulnerability exists in the external data loading mechanism of the ONNX framework. ONNX models can reference external data files to store large tensor weights and other binary data separately from the main model protobuf file. When loading these external data references, the ONNX library follows symlinks without proper validation, allowing an attacker to craft a malicious model that references files outside the intended model directory through symbolic links.

The impact is primarily information disclosure, as the vulnerability allows unauthorized read access to arbitrary files on the filesystem that are accessible to the process loading the ONNX model. This is particularly concerning in multi-tenant ML inference environments or any system that processes ONNX models from untrusted sources.

Root Cause

The root cause is insufficient validation of external data file paths during ONNX model loading. The library fails to properly validate that external data references remain within the model's directory boundary. When the external data loader encounters a symlink, it follows the link without checking whether the resolved path falls outside the expected model directory, enabling classic symlink traversal attacks.

Attack Vector

The attack requires local access in the sense that the attacker must be able to supply a malicious ONNX model file to a target system. The attack vector involves crafting an ONNX model that includes external data references pointing to symlinks, which in turn point to sensitive files outside the model directory. When the victim application loads this malicious model, the ONNX library follows the symlinks and reads the targeted files.

The attack scenario typically unfolds as follows: An attacker creates an ONNX model with external data tensors, prepares symlinks in the model directory pointing to target files such as /etc/passwd or application configuration files, and distributes this malicious model package. When the target system loads the model, the external data loading routine follows the symlinks and exposes the content of the targeted files.

Detection Methods for CVE-2026-34447

Indicators of Compromise

  • ONNX model directories containing unexpected symbolic links pointing outside the model path
  • File access attempts to sensitive system files from ML inference processes
  • ONNX models with external data references containing suspicious path patterns (e.g., ../ sequences or absolute paths)
  • Unusual file read operations originating from ONNX model loading functions

Detection Strategies

  • Monitor filesystem activity from ML inference processes for access to files outside expected model directories
  • Implement file integrity monitoring on ONNX model directories to detect introduction of symlinks
  • Analyze incoming ONNX models for suspicious external data references before processing
  • Deploy application-level logging to track which files are accessed during model loading operations

Monitoring Recommendations

  • Enable audit logging for file access operations on sensitive directories by ML framework processes
  • Implement network monitoring to detect exfiltration of data that may have been read via this vulnerability
  • Configure alerts for symlink creation events within model storage directories
  • Monitor for anomalous behavior patterns in ML inference pipelines that may indicate exploitation attempts

How to Mitigate CVE-2026-34447

Immediate Actions Required

  • Upgrade ONNX to version 1.21.0 or later immediately on all systems processing ONNX models
  • Audit existing ONNX model repositories for presence of symlinks or suspicious external data references
  • Implement strict input validation for ONNX models received from external or untrusted sources
  • Consider running ONNX model loading in sandboxed environments with restricted filesystem access

Patch Information

This vulnerability has been patched in ONNX version 1.21.0. Organizations should upgrade to this version or later. The fix implements proper path validation for external data references, ensuring that resolved file paths remain within the model directory boundary. For detailed information about the security fix, refer to the GitHub Security Advisory.

Workarounds

  • Restrict ONNX model loading to only process models from trusted, verified sources until patching is complete
  • Deploy filesystem access controls to prevent ML inference processes from reading sensitive files
  • Use containerization with restricted filesystem mounts to limit potential exposure from symlink traversal
  • Implement pre-processing validation scripts that scan ONNX model packages for symlinks before allowing them into production pipelines

For production environments where immediate patching is not feasible, consider implementing filesystem sandboxing for ONNX model loading operations. This can be achieved through container isolation with explicit volume mounts limited to required model directories, or through OS-level mechanisms such as AppArmor or SELinux policies that restrict file access from ML processes.

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechOnnx

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34446: ONNX Path Traversal Vulnerability

  • CVE-2026-27489: ONNX Path Traversal Vulnerability

  • CVE-2024-7776: Onnx Path Traversal Vulnerability

  • CVE-2024-27318: ONNX Path Traversal 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