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

CVE-2026-2399: Web Admin Path Traversal Vulnerability

CVE-2026-2399 is a path traversal flaw in Web Admin that allows authenticated users to overwrite critical system files via manipulated POST requests. This article covers technical details, impact, and mitigation.

Published: April 17, 2026

CVE-2026-2399 Overview

A Path Traversal vulnerability (CWE-22) has been identified that allows authenticated Web Admin users to overwrite critical system files with text data. The vulnerability exists in the REST API endpoint handling the POST /REST/upssleep request, where improper validation of the request payload enables directory traversal attacks.

Critical Impact

Authenticated attackers with Web Admin privileges can manipulate the POST request payload to traverse directory paths and overwrite critical system files, potentially leading to system compromise, denial of service, or arbitrary configuration changes.

Affected Products

  • Schneider Electric UPS Management Software (specific versions not disclosed)
  • Products utilizing the /REST/upssleep API endpoint
  • Web Admin interfaces with REST API functionality

Discovery Timeline

  • 2026-04-14 - CVE CVE-2026-2399 published to NVD
  • 2026-04-14 - Last updated in NVD database

Technical Details for CVE-2026-2399

Vulnerability Analysis

This Path Traversal vulnerability stems from inadequate input validation in the Web Admin interface's REST API. When processing POST /REST/upssleep requests, the application fails to properly sanitize user-supplied path components, allowing attackers to include directory traversal sequences (such as ../) in the request payload.

The vulnerability requires authentication as a Web Admin user, meaning the attack surface is limited to users who have already obtained administrative credentials. However, once authenticated, an attacker can leverage this flaw to write arbitrary text data to files outside the intended directory structure, potentially overwriting critical system configuration files, application binaries, or security-sensitive data.

The impact is significant in terms of integrity and availability, as successful exploitation could corrupt essential system files, modify security configurations, or render the target system inoperable.

Root Cause

The root cause of this vulnerability is the Improper Limitation of a Pathname to a Restricted Directory (CWE-22). The application does not adequately validate or sanitize the file path parameters within the POST /REST/upssleep request payload before performing file operations. This allows directory traversal sequences to escape the intended directory and access arbitrary locations on the file system.

Key contributing factors include:

  • Lack of path canonicalization before file operations
  • Missing validation against directory traversal patterns
  • Insufficient access controls on file write operations
  • Trust placed in authenticated user input without proper sanitization

Attack Vector

The attack requires adjacent network access and high privileges (Web Admin authentication). An attacker positioned on the same network segment with valid Web Admin credentials can craft a malicious POST /REST/upssleep request containing path traversal sequences in the payload.

The attack flow involves:

  1. Authenticating to the Web Admin interface with valid credentials
  2. Intercepting or crafting a POST /REST/upssleep request
  3. Modifying the request payload to include path traversal sequences (e.g., ../../etc/passwd)
  4. The server processes the request without proper path validation
  5. Critical system files are overwritten with attacker-controlled text data

Since no verified code examples are available, organizations should refer to the Schneider Electric Security Notice for detailed technical information about the vulnerability mechanism and exploitation characteristics.

Detection Methods for CVE-2026-2399

Indicators of Compromise

  • Anomalous POST /REST/upssleep requests containing path traversal sequences such as ../, ..\\, or URL-encoded variants
  • Unexpected file modifications in system directories outside the application's intended scope
  • Web server logs showing repeated requests to the /REST/upssleep endpoint with unusual payload sizes or patterns
  • System integrity alerts indicating unauthorized changes to configuration or binary files

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block path traversal patterns in REST API requests
  • Monitor authentication logs for Web Admin accounts exhibiting unusual activity patterns or making requests to the upssleep endpoint
  • Deploy file integrity monitoring (FIM) on critical system files to detect unauthorized modifications
  • Enable detailed logging for all REST API endpoints and analyze for traversal sequence patterns

Monitoring Recommendations

  • Configure SIEM alerts for HTTP requests containing common path traversal patterns targeting /REST/upssleep
  • Establish baseline behavior for Web Admin accounts and alert on deviations
  • Monitor file system events for write operations to sensitive directories from web application processes
  • Review audit logs regularly for administrative actions involving the affected REST endpoint

How to Mitigate CVE-2026-2399

Immediate Actions Required

  • Review the Schneider Electric Security Notice SEVD-2026-104-01 for vendor-specific guidance
  • Restrict network access to the Web Admin interface to trusted management networks only
  • Audit Web Admin user accounts and remove unnecessary administrative privileges
  • Implement network segmentation to limit adjacent network exposure

Patch Information

Schneider Electric has published security guidance in their official Security Notice (SEVD-2026-104-01). Organizations should consult the Schneider Electric Security Notice for specific patch availability, affected product versions, and remediation instructions.

Workarounds

  • Implement strict network segmentation to limit access to the Web Admin interface from adjacent network segments
  • Deploy a reverse proxy or web application firewall (WAF) in front of the affected service to filter malicious path traversal attempts
  • Enable enhanced logging and monitoring for all REST API requests to the /REST/upssleep endpoint
  • Consider temporarily disabling the affected functionality if business operations permit until a patch is applied
bash
# Example WAF rule to block path traversal attempts (ModSecurity format)
SecRule REQUEST_URI "@contains /REST/upssleep" "chain,id:1001,phase:2,deny,status:403,log,msg:'Path Traversal Attempt Blocked'"
SecRule REQUEST_BODY "@rx \.\.\/" "t:urlDecodeUni,t:htmlEntityDecode"

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:A/AC:L/AT:N/PR:H/UI:N/VC:N/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/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
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • Schneider Electric Security Notice
  • Latest CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40255: AdonisJS HTTP Server 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