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

CVE-2026-35492: Kedro-Datasets Path Traversal Vulnerability

CVE-2026-35492 is a path traversal vulnerability in Kedro-Datasets PartitionedDataset allowing attackers to write files outside intended directories. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-35492 Overview

CVE-2026-35492 is a path traversal vulnerability affecting Kedro-Datasets, a Kedro plugin providing data connectors for various storage backends. Prior to version 9.3.0, the PartitionedDataset component was vulnerable to path traversal attacks where partition IDs were concatenated directly with the dataset base path without proper validation. An attacker or malicious input containing .. components in a partition ID could cause files to be written outside the configured dataset directory, potentially overwriting arbitrary files on the filesystem.

Critical Impact

Attackers can exploit this path traversal vulnerability to write files outside the intended dataset directory, potentially overwriting critical system or application files across local filesystem, S3, GCS, and other storage backends.

Affected Products

  • Kedro-Datasets versions prior to 9.3.0
  • All storage backends including local filesystem, S3, and GCS
  • Any application using PartitionedDataset component

Discovery Timeline

  • 2026-04-07 - CVE CVE-2026-35492 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-35492

Vulnerability Analysis

This path traversal vulnerability (CWE-22) exists in the PartitionedDataset component of Kedro-Datasets. The flaw stems from insufficient input validation when handling partition IDs. When a user or automated process supplies a partition ID, the system directly concatenates this value with the configured base path without sanitizing or validating the input for directory traversal sequences.

The vulnerability allows an attacker with the ability to influence partition IDs to escape the intended dataset directory and write files to arbitrary locations on the filesystem. This affects the integrity of the system, as malicious actors could overwrite configuration files, inject code into application directories, or corrupt critical data.

The attack requires network access and low privileges to execute, making it accessible to authenticated users who can supply partition IDs to the system. While confidentiality is not directly impacted, the integrity implications are significant due to the ability to modify files outside the designated storage area.

Root Cause

The root cause of this vulnerability is the lack of input validation on partition IDs before path concatenation. The PartitionedDataset implementation directly joins the base path with user-supplied partition identifiers without checking for path traversal sequences such as .. or absolute path indicators. This violates the principle of proper input sanitization and allows directory escape attacks.

Attack Vector

The attack can be executed over the network by any authenticated user who can supply partition IDs to the PartitionedDataset component. The attacker crafts a malicious partition ID containing path traversal sequences (e.g., ../../etc/) that, when concatenated with the base path, resolves to a location outside the intended dataset directory.

The vulnerability mechanism involves the following process: when data is written to a partition, the partition ID is appended to the configured base path. By injecting .. sequences into the partition ID, an attacker can navigate up the directory tree and then into arbitrary directories, effectively writing files anywhere the application has write permissions. This applies to all supported storage backends including local filesystems and cloud storage services like Amazon S3 and Google Cloud Storage.

For detailed technical information, see the GitHub Security Advisory and the related GitHub Issue Discussion.

Detection Methods for CVE-2026-35492

Indicators of Compromise

  • File system access logs showing writes to unexpected directories outside configured dataset paths
  • Partition IDs in application logs containing .. or other path traversal sequences
  • Unexpected file modifications in system or application directories
  • Audit trails showing data operations with anomalous path patterns

Detection Strategies

  • Monitor application logs for partition IDs containing suspicious path components such as .., ./, or absolute paths
  • Implement file integrity monitoring on critical directories to detect unauthorized file writes
  • Review data pipeline configurations to identify use of PartitionedDataset with external or untrusted partition ID sources
  • Deploy runtime application security monitoring to detect path traversal attempts

Monitoring Recommendations

  • Enable verbose logging for Kedro pipeline operations to capture partition ID values
  • Configure cloud storage access logging (S3 CloudTrail, GCS audit logs) to track object writes
  • Set up alerts for file operations outside expected dataset directories
  • Implement centralized log collection for correlation of suspicious partition access patterns

How to Mitigate CVE-2026-35492

Immediate Actions Required

  • Upgrade Kedro-Datasets to version 9.3.0 or later immediately
  • Audit existing data pipelines to identify all uses of PartitionedDataset
  • Review historical partition IDs for evidence of exploitation attempts
  • Restrict write permissions for the application to minimize potential impact

Patch Information

The vulnerability has been fixed in Kedro-Datasets version 9.3.0. The fix implements proper validation of partition IDs before path concatenation, rejecting any input containing path traversal sequences. Users should upgrade to this version or later to remediate the vulnerability.

For patch details, see the GitHub Pull Request that addresses this issue.

Workarounds

  • Implement input validation at the application layer to sanitize partition IDs before passing to PartitionedDataset
  • Use allowlists to restrict partition ID formats to known safe patterns (alphanumeric characters only)
  • Deploy network segmentation to limit access to systems running vulnerable Kedro-Datasets versions
  • Monitor and alert on any partition operations until upgrade is complete
bash
# Upgrade kedro-datasets to the patched version
pip install --upgrade kedro-datasets>=9.3.0

# Verify installed version
pip show kedro-datasets | grep Version

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechKedro Datasets

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Pull Request Update

  • GitHub Security Advisory

  • GitHub Issue Discussion
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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