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

CVE-2026-28414: Gradio Path Traversal Vulnerability

CVE-2026-28414 is a path traversal flaw in Gradio on Windows with Python 3.13+ that allows unauthenticated attackers to read arbitrary files. This post covers technical details, affected versions, impact, and mitigation.

Published: March 6, 2026

CVE-2026-28414 Overview

CVE-2026-28414 is a path traversal vulnerability in Gradio, an open-source Python package designed for quick prototyping of machine learning demos and web applications. This vulnerability affects Gradio installations running on Windows with Python 3.13 or later, enabling unauthenticated attackers to read arbitrary files from the file system through an absolute path traversal attack.

The vulnerability stems from a behavioral change in Python 3.13's os.path.isabs function, which no longer considers root-relative paths like /windows/win.ini as absolute paths on Windows systems. This change breaks Gradio's path validation logic, allowing attackers to bypass security controls and access sensitive files—even when the Gradio application has authentication enabled.

Critical Impact

Unauthenticated attackers can read arbitrary files from Gradio servers running on Windows with Python 3.13+, bypassing authentication controls and potentially exposing sensitive configuration files, credentials, and application data.

Affected Products

  • Gradio versions prior to 6.7 running on Windows with Python 3.13+
  • gradio_project gradio (all versions before 6.7)

Discovery Timeline

  • 2026-02-27 - CVE CVE-2026-28414 published to NVD
  • 2026-03-05 - Last updated in NVD database

Technical Details for CVE-2026-28414

Vulnerability Analysis

This vulnerability is classified under CWE-36 (Absolute Path Traversal) and CWE-22 (Improper Limitation of a Pathname to a Restricted Directory). The core issue lies in how Gradio handles path validation when joining user-supplied paths with server-side base directories.

Prior to Python 3.13, the os.path.isabs function on Windows would identify paths like /windows/win.ini as absolute paths (root-relative), allowing Gradio's path security logic to properly reject them. However, Python 3.13 changed this behavior to align with POSIX conventions, where such paths are considered relative rather than absolute on Windows.

The attack can be executed remotely over the network without any privileges or user interaction. Successful exploitation results in high confidentiality impact, as attackers can read arbitrary files from the target system. The vulnerability does not affect integrity or availability, making it a pure information disclosure issue.

Root Cause

The root cause is a compatibility issue between Gradio's path validation logic and Python 3.13's updated os.path.isabs semantics. Gradio relied on os.path.isabs to detect and reject absolute paths in user input, preventing directory traversal attacks. When Python 3.13 changed the definition of absolute paths on Windows, root-relative paths (starting with / but without a drive letter) were no longer detected as absolute, allowing them to slip through validation and be used in file access operations.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction. An attacker can craft malicious HTTP requests to a Gradio application, supplying root-relative paths like /windows/win.ini or /etc/passwd (on POSIX-like environments) as file references. Due to the flawed validation logic, these paths bypass security checks and are processed by the server, resulting in arbitrary file read access.

The vulnerability is particularly concerning because it bypasses Gradio's authentication mechanisms entirely. Even applications configured with authentication remain vulnerable, as the path traversal can be exploited before or around authentication checks in certain request handlers.

Attackers could target sensitive files such as Windows system configuration files, application configuration files containing database credentials, API keys stored in environment files, or source code of the deployed application.

Detection Methods for CVE-2026-28414

Indicators of Compromise

  • Unexpected file access requests containing root-relative paths (e.g., /windows/system32/config/ or /windows/win.ini) in Gradio application logs
  • HTTP requests with path traversal sequences targeting Gradio endpoints
  • Access attempts to system configuration files or sensitive directories outside the application's intended scope
  • Anomalous read operations on system files from the Gradio process

Detection Strategies

  • Monitor HTTP request logs for path traversal patterns including root-relative paths starting with / followed by Windows system directories
  • Implement Web Application Firewall (WAF) rules to detect and block requests containing suspicious path patterns
  • Deploy file integrity monitoring on sensitive system files and directories
  • Enable verbose logging in Gradio applications to capture all file access attempts

Monitoring Recommendations

  • Configure centralized logging for all Gradio application instances with real-time alerting on suspicious file access patterns
  • Establish baseline file access behavior for Gradio applications and alert on deviations
  • Monitor process file descriptors for unexpected access to system files outside application directories
  • Implement network-level monitoring for unusual data exfiltration patterns from Gradio servers

How to Mitigate CVE-2026-28414

Immediate Actions Required

  • Upgrade Gradio to version 6.7 or later immediately on all Windows systems running Python 3.13+
  • Audit existing Gradio deployments to identify vulnerable configurations (Windows + Python 3.13+)
  • Review access logs for evidence of exploitation attempts
  • Consider temporarily restricting network access to vulnerable Gradio instances until patching is complete

Patch Information

The vulnerability is fixed in Gradio version 6.7. Organizations should upgrade to this version or later to remediate the vulnerability. For detailed information about the fix, refer to the GitHub Security Advisory GHSA-39mp-8hj3-5c49.

To upgrade Gradio:

bash
pip install --upgrade gradio>=6.7

Workarounds

  • If immediate patching is not possible, consider downgrading Python to version 3.12 or earlier on affected Windows systems
  • Deploy Gradio behind a reverse proxy with strict path filtering rules that reject root-relative paths
  • Restrict network access to Gradio applications using firewall rules, limiting exposure to trusted networks only
  • Run Gradio in containerized environments with restricted file system access to minimize the impact of potential exploitation
bash
# Configuration example
# Upgrade Gradio to the patched version
pip install gradio==6.7

# Verify the installed version
pip show gradio | grep Version

# For containerized deployments, ensure minimal file system exposure
# Example Docker run with read-only root filesystem and limited volume mounts
docker run --read-only --tmpfs /tmp --volume /app/data:/data:ro gradio-app:latest

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechGradio

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.18%

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

  • CWE-22
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2024-0964: Gradio Path Traversal Vulnerability

  • CVE-2023-34239: Gradio Path Traversal Vulnerability

  • CVE-2026-27167: Gradio Information Disclosure Vulnerability

  • CVE-2026-28415: Gradio OAuth CSRF 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