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

CVE-2026-39844: NiceGUI Path Traversal Vulnerability

CVE-2026-39844 is a path traversal flaw in NiceGUI, a Python-based UI framework, allowing attackers to write arbitrary files on Windows systems. This article covers the technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-39844 Overview

CVE-2026-39844 is a path traversal vulnerability in NiceGUI, a Python-based UI framework. Prior to version 3.10.0, the application uses PurePosixPath for path sanitization, which only recognizes forward slashes (/) as path separators. This design flaw allows an attacker to bypass path sanitization on Windows systems by using backslashes (\) in upload filenames, leading to arbitrary file write capabilities.

Critical Impact

Applications that construct file paths using file.name (a pattern demonstrated in NiceGUI's bundled examples) are vulnerable to arbitrary file write on Windows systems, potentially enabling code execution or system compromise.

Affected Products

  • NiceGUI versions prior to 3.10.0
  • Windows-based deployments using NiceGUI file upload functionality
  • Applications following NiceGUI bundled example patterns for file handling

Discovery Timeline

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

Technical Details for CVE-2026-39844

Vulnerability Analysis

This vulnerability stems from a fundamental incompatibility between path handling libraries and operating system conventions. When NiceGUI processes file uploads, it relies on Python's PurePosixPath class for path sanitization. This class is designed for POSIX-compliant systems (Linux, macOS) and only interprets forward slashes (/) as directory separators.

On Windows systems, however, backslashes (\) are the native path separators. An attacker can craft a malicious filename containing backslash characters that appear harmless to the POSIX path sanitization logic but are interpreted as directory traversal sequences by the Windows file system when the file is written.

The vulnerability is classified as CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as path traversal. Exploitation requires network access and the ability to submit crafted filenames through the file upload functionality. While the attack complexity is considered high due to the Windows-specific requirement, successful exploitation results in high integrity impact through arbitrary file writes.

Root Cause

The root cause is the use of PurePosixPath for filename sanitization across all platforms, including Windows. This POSIX-specific class does not recognize Windows path separators (\), allowing malicious backslash-containing filenames to bypass directory traversal protections. When the application subsequently writes the file using the unsanitized filename, the Windows file system interprets the backslashes as path separators, enabling writes outside the intended directory.

Attack Vector

An attacker can exploit this vulnerability by uploading a file with a specially crafted filename containing backslash sequences. For example, a filename such as ..\..\..\..\sensitive_path\malicious_file.py would be treated as a simple filename by PurePosixPath but would traverse directories when processed by Windows. This allows attackers to write arbitrary files to any location accessible by the application's process, potentially overwriting critical system files or planting malicious code.

The attack is network-accessible and requires no authentication or user interaction. Applications following the example patterns in NiceGUI's documentation are particularly vulnerable as they directly use file.name when constructing output paths. For detailed technical analysis, refer to the GitHub Security Advisory GHSA-w8wv-vfpc-hw2w.

Detection Methods for CVE-2026-39844

Indicators of Compromise

  • Uploaded files appearing in unexpected directories outside the designated upload folder
  • File paths containing backslash sequences (\) in upload logs on Windows systems
  • Unexpected file modifications in application directories or system paths
  • Presence of files with traversal patterns in filename metadata

Detection Strategies

  • Monitor file system activity for writes outside designated upload directories
  • Implement logging of all uploaded filenames and inspect for backslash characters on Windows deployments
  • Review application logs for filenames containing patterns like ..\ or multiple consecutive backslashes
  • Use file integrity monitoring (FIM) to detect unauthorized changes to critical application files

Monitoring Recommendations

  • Deploy endpoint detection and response (EDR) solutions to monitor file creation events outside expected paths
  • Configure SentinelOne Singularity Platform to detect suspicious file write operations from web application processes
  • Implement alerting for any file operations where the destination path differs significantly from the configured upload directory
  • Enable audit logging for file system access on Windows servers running NiceGUI applications

How to Mitigate CVE-2026-39844

Immediate Actions Required

  • Upgrade NiceGUI to version 3.10.0 or later immediately
  • Audit existing codebases for patterns that directly use file.name when constructing file paths
  • Implement server-side filename sanitization that normalizes both forward and backslash characters
  • Review recently uploaded files for evidence of path traversal exploitation

Patch Information

The vulnerability has been fixed in NiceGUI version 3.10.0. The security patch addresses the path sanitization bypass by properly handling Windows-style path separators. Organizations should update to the patched version as soon as possible.

For technical details on the fix, refer to the GitHub Commit Update and the GitHub Release v3.10.0.

Workarounds

  • Replace PurePosixPath with pathlib.Path for cross-platform path handling in custom upload handlers
  • Implement explicit filename sanitization that removes or replaces both / and \ characters before constructing file paths
  • Use os.path.basename() to extract only the filename portion, discarding any path components
  • Restrict file uploads to Linux-based servers where this specific bypass is not applicable
bash
# Configuration example
# Upgrade NiceGUI to the patched version
pip install --upgrade nicegui>=3.10.0

# Verify installed version
pip show nicegui | 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/TechNicegui

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.05%

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

  • GitHub Release v3.10.0

  • GitHub Security Advisory GHSA-w8wv-vfpc-hw2w
  • Related CVEs
  • CVE-2026-25732: NiceGUI Path Traversal Vulnerability

  • CVE-2026-33332: Zauberzeug NiceGUI DoS Vulnerability

  • CVE-2026-27156: Zauberzeug Nicegui XSS Vulnerability

  • CVE-2026-25516: NiceGUI ui.markdown() XSS 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