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

CVE-2026-7149: Kaggle-MCP Path Traversal Vulnerability

CVE-2026-7149 is a path traversal vulnerability in dexhunter kaggle-mcp affecting the prepare_kaggle_dataset function. Remote attackers can exploit this flaw to access unauthorized files. This article covers technical details, impact, and mitigation.

Published: April 30, 2026

CVE-2026-7149 Overview

A path traversal vulnerability has been identified in the dexhunter kaggle-mcp project, affecting the prepare_kaggle_dataset function within the src/kaggle_mcp/server.py file. This vulnerability allows remote attackers to manipulate the competition_id argument to traverse directories and potentially access sensitive files outside the intended directory scope. The exploit has been publicly disclosed and the project maintainers have been notified but have not yet responded.

Critical Impact

Remote attackers can exploit insufficient input validation in the competition_id parameter to access arbitrary files on the system through directory traversal sequences, potentially exposing sensitive configuration files, credentials, or other protected data.

Affected Products

  • dexhunter kaggle-mcp (up to commit 406127ffcb2b91b8c10e20e6c2ca787fbc1dc92d)

Discovery Timeline

  • April 27, 2026 - CVE-2026-7149 published to NVD
  • April 29, 2026 - Last updated in NVD database

Technical Details for CVE-2026-7149

Vulnerability Analysis

This path traversal vulnerability (CWE-22) exists in the kaggle-mcp server component, specifically within the prepare_kaggle_dataset function. The vulnerability stems from improper validation of the competition_id parameter, which is used to construct file paths without adequate sanitization. An attacker can inject directory traversal sequences (such as ../) into this parameter to escape the intended directory and access files elsewhere on the file system.

The kaggle-mcp project is a Model Context Protocol (MCP) server that facilitates interactions with Kaggle datasets and competitions. The vulnerable function handles dataset preparation and uses user-supplied input to construct file paths, creating an opportunity for exploitation when malicious input is provided.

Root Cause

The root cause of this vulnerability is insufficient input validation and sanitization of the competition_id argument in the prepare_kaggle_dataset function. The function fails to properly validate or canonicalize file paths before using them in file system operations, allowing attackers to include path traversal sequences that navigate outside the intended directory structure. This is a classic example of CWE-22 (Improper Limitation of a Pathname to a Restricted Directory).

Attack Vector

The attack can be executed remotely over the network without requiring authentication. An attacker sends a specially crafted request containing directory traversal sequences (e.g., ../../etc/passwd) in the competition_id parameter. When the server processes this request, the malicious path components are not filtered, allowing the attacker to read files from arbitrary locations on the file system.

The attack does not require user interaction and can be automated. Since this is a server-side vulnerability in a network-accessible component, exploitation can occur from any network location that can reach the vulnerable service.

Detection Methods for CVE-2026-7149

Indicators of Compromise

  • HTTP requests or API calls containing path traversal sequences (../, ..%2f, ..%5c) in the competition_id parameter
  • Unusual file access patterns in server logs showing attempts to access files outside the kaggle-mcp data directory
  • Error messages in application logs indicating failed attempts to access system files
  • Successful unauthorized access to sensitive files such as /etc/passwd, configuration files, or credential stores

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing path traversal patterns in API parameters
  • Configure intrusion detection systems (IDS) to alert on suspicious path traversal attempts targeting kaggle-mcp endpoints
  • Enable detailed logging on the kaggle-mcp server to capture all incoming requests and file access operations
  • Deploy endpoint detection solutions to monitor for unusual file access patterns originating from the server process

Monitoring Recommendations

  • Monitor server access logs for requests containing encoded or raw path traversal sequences
  • Set up alerts for any file access attempts outside the expected kaggle-mcp data directories
  • Review application logs regularly for error messages related to file path operations
  • Implement file integrity monitoring on sensitive system files to detect unauthorized access

How to Mitigate CVE-2026-7149

Immediate Actions Required

  • Review your deployment of kaggle-mcp and assess exposure to untrusted network access
  • Implement network-level access controls to restrict which systems can reach the kaggle-mcp server
  • Deploy a web application firewall configured to block path traversal attack patterns
  • Monitor the GitHub repository for updates and patches from the maintainers

Patch Information

As of the last update, the project maintainers have not yet responded to the vulnerability report submitted via the GitHub issue tracker. The kaggle-mcp project uses a rolling release model, so users should monitor the repository for commits that address this security issue. The vulnerable code exists up to commit 406127ffcb2b91b8c10e20e6c2ca787fbc1dc92d.

Workarounds

  • Restrict network access to the kaggle-mcp server to trusted IP addresses or internal networks only
  • Implement a reverse proxy with input validation rules to sanitize the competition_id parameter before forwarding requests
  • Consider implementing application-level input validation as a wrapper around the vulnerable function
  • If feasible, disable or remove the prepare_kaggle_dataset functionality until an official patch is available

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechDexhunter

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-22
  • Technical References
  • GitHub PoC Repository

  • GitHub Issue Tracker

  • VulDB Submission #802052

  • VulDB Vulnerability #359748

  • VulDB CTI for #359748
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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