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-2025-13905

CVE-2025-13905: Privilege Escalation Vulnerability

CVE-2025-13905 is a privilege escalation vulnerability caused by incorrect default permissions allowing local users to modify service binaries. This article covers the technical details, impact, and mitigation.

Published: January 29, 2026

CVE-2025-13905 Overview

CVE-2025-13905 is an Incorrect Default Permissions vulnerability (CWE-276) that enables local privilege escalation through reverse shell execution. The vulnerability exists due to improperly configured file permissions in the installation folder, allowing a local user with normal privileges to modify one or more executable service binaries. Upon service restart, the modified binaries execute with elevated privileges, effectively granting the attacker higher-level system access.

Critical Impact

Local attackers can achieve privilege escalation by replacing legitimate service binaries with malicious executables, gaining elevated system access upon service restart.

Affected Products

  • Schneider Electric software products (specific product names not disclosed in advisory)

Discovery Timeline

  • 2026-01-29 - CVE-2025-13905 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2025-13905

Vulnerability Analysis

This vulnerability stems from a classic insecure permissions misconfiguration affecting service executable binaries. When software is installed with overly permissive file system access controls, local users who should only have read/execute access may instead have write permissions to critical executable files. This creates an opportunity for a privilege escalation attack known as "binary planting" or "service hijacking."

The attack exploits the privilege disparity between the local user context and the service execution context. Windows services typically run under privileged accounts such as SYSTEM, LocalService, or NetworkService. When a lower-privileged user can modify these service binaries, they can inject malicious code that executes with the service's elevated privileges upon restart.

Root Cause

The root cause is the assignment of incorrect default permissions (CWE-276) during the software installation process. Instead of restricting write access to administrative users only, the installation folder and its executable binaries are configured with permissions that allow modification by standard local users. This violates the principle of least privilege and creates a direct path to privilege escalation.

Proper installation should set permissions on service executables to allow only administrators or the SYSTEM account to modify these files, while standard users should have read and execute permissions only.

Attack Vector

The attack requires local access to the target system with standard user privileges. The attacker must identify writable service executables in the installation directory, then replace or modify these binaries with malicious code designed to establish a reverse shell or execute arbitrary commands. The payload executes with elevated privileges when the service is restarted, either manually by an administrator, automatically after a system reboot, or through service recovery mechanisms.

The attack chain typically involves:

  1. Enumerating services and their executable paths
  2. Checking file permissions on service binaries
  3. Replacing the legitimate binary with a malicious payload
  4. Waiting for or triggering a service restart
  5. Achieving code execution with elevated privileges

Detection Methods for CVE-2025-13905

Indicators of Compromise

  • Unexpected modifications to service executable files in installation directories
  • File hash mismatches for known-good service binaries
  • New or unexpected outbound network connections from service processes
  • Anomalous service restart patterns or failures followed by successful restarts

Detection Strategies

  • Monitor file integrity of service executables using hash-based verification tools
  • Audit file permission changes on installation directories and service binaries
  • Implement behavioral detection for services establishing unexpected network connections
  • Alert on service binary modifications outside of approved maintenance windows

Monitoring Recommendations

  • Enable Windows Security Event logging for object access (Event ID 4663) on service executable directories
  • Configure Sysmon to log file creation and modification events in program installation paths
  • Establish baselines for legitimate service binary hashes and monitor for deviations
  • Review service account activity for unusual process execution or network connections

How to Mitigate CVE-2025-13905

Immediate Actions Required

  • Audit file permissions on all Schneider Electric software installation directories
  • Remove write permissions for non-administrative users from service executable folders
  • Verify integrity of service binaries against known-good hashes
  • Review system logs for evidence of unauthorized binary modifications

Patch Information

Schneider Electric has released a security notice addressing this vulnerability. Organizations should review the Schneider Electric Security Notice for specific remediation guidance and updated software versions that address the incorrect default permissions issue.

Workarounds

  • Manually correct file permissions on installation directories to restrict write access to administrators only
  • Implement application whitelisting to prevent execution of unauthorized binaries
  • Use Software Restriction Policies or AppLocker to control which executables can run as services
  • Deploy file integrity monitoring to detect unauthorized modifications to service binaries
bash
# Example: Restricting permissions on Windows installation folder
# Run in elevated PowerShell to remove write access for standard users
icacls "C:\Program Files\[Application]\*" /inheritance:r /grant:r Administrators:F /grant:r SYSTEM:F /grant:r Users:RX

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechN/A

  • SeverityHIGH

  • CVSS Score7.0

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:P/VC:H/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
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-276
  • Technical References
  • Schneider Electric Security Notice
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync 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