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
    • 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-4105

CVE-2026-4105: systemd Privilege Escalation Vulnerability

CVE-2026-4105 is a privilege escalation flaw in systemd-machined that allows local unprivileged users to execute arbitrary commands with root privileges. This article covers technical details, affected versions, and mitigations.

Published: March 20, 2026

CVE-2026-4105 Overview

A privilege escalation vulnerability has been discovered in systemd's systemd-machined service. The flaw exists due to Improper Access Control (CWE-284) caused by insufficient validation of the class parameter in the RegisterMachine D-Bus method. A local unprivileged user can exploit this vulnerability by attempting to register a machine with a specific class value, which may leave behind a usable, attacker-controlled machine object. This allows the attacker to invoke methods on the privileged object, leading to the execution of arbitrary commands with root privileges on the host system.

Critical Impact

Local attackers with low privileges can achieve root-level command execution on vulnerable systemd installations through D-Bus method manipulation.

Affected Products

  • systemd (systemd-machined service)
  • Linux distributions using vulnerable systemd versions
  • Container and VM management systems relying on systemd-machined

Discovery Timeline

  • 2026-03-13 - CVE-2026-4105 published to NVD
  • 2026-03-16 - Last updated in NVD database

Technical Details for CVE-2026-4105

Vulnerability Analysis

This vulnerability resides in the systemd-machined daemon, which is responsible for tracking and managing virtual machines and containers on systemd-based Linux systems. The D-Bus interface exposed by systemd-machined includes the RegisterMachine method, which is intended to allow services to register machine objects representing VMs or containers.

The root cause lies in inadequate validation of the class parameter when processing RegisterMachine requests. When a local unprivileged user attempts to register a machine with a crafted class value, the registration may partially fail but leave behind a residual machine object. This orphaned object retains elevated privileges and remains accessible to the attacker.

Once the attacker gains control of this machine object, they can invoke privileged D-Bus methods intended only for trusted callers. These methods can trigger actions that execute with root privileges, effectively bypassing the normal access control mechanisms of the system.

Root Cause

The vulnerability stems from insufficient input validation in the class parameter handling within the RegisterMachine D-Bus method. The systemd-machined service fails to properly sanitize or validate this parameter before creating machine objects, and does not adequately clean up partial state when registration fails. This combination allows an attacker to create persistent privileged objects through malformed registration attempts.

Attack Vector

This is a local privilege escalation attack requiring the attacker to already have unprivileged access to the target system. The attack proceeds through the following mechanism:

  1. The attacker connects to the systemd-machined D-Bus interface
  2. A RegisterMachine call is made with a specially crafted class parameter value
  3. The registration partially fails but leaves an attacker-controlled machine object
  4. The attacker invokes privileged methods on this orphaned object
  5. Commands are executed with root privileges on the host system

The attack requires local access but does not require user interaction once the attacker has a foothold on the system. While the attack complexity is elevated due to the need for specific conditions and timing, successful exploitation results in complete system compromise.

Detection Methods for CVE-2026-4105

Indicators of Compromise

  • Unexpected machine objects registered in systemd-machined that don't correspond to legitimate VMs or containers
  • Anomalous D-Bus traffic to the org.freedesktop.machine1 interface from unprivileged processes
  • Processes running as root that were spawned through unexpected systemd-machined method calls
  • Log entries in journalctl showing failed or unusual RegisterMachine attempts

Detection Strategies

  • Monitor D-Bus traffic for RegisterMachine calls with unusual or malformed class parameter values
  • Audit systemd-machined logs for registration failures followed by method invocations on the same machine objects
  • Deploy runtime application self-protection (RASP) tools to detect privilege escalation attempts via D-Bus
  • Implement file integrity monitoring on systemd binaries and configuration files

Monitoring Recommendations

  • Enable verbose logging for systemd-machined to capture all D-Bus method calls and their parameters
  • Configure audit rules to track D-Bus connections from non-root processes to privileged systemd services
  • Monitor for unexpected child processes spawned by systemd-machined or related services
  • Set up alerts for any new machine registrations that do not match expected container/VM provisioning workflows

How to Mitigate CVE-2026-4105

Immediate Actions Required

  • Review and apply patches from your Linux distribution vendor when available
  • Restrict access to the systemd-machined D-Bus interface using D-Bus policy configuration
  • Audit existing registered machines using machinectl list and remove any suspicious entries
  • Consider disabling systemd-machined if container/VM management functionality is not required

Patch Information

Administrators should consult the official security advisories for patch availability and remediation guidance:

  • Red Hat CVE-2026-4105 Advisory
  • Red Hat Bug Report #2447262
  • GitHub Security Advisory GHSA-4h6x-r8vx-3862

Contact your Linux distribution vendor for patched systemd packages applicable to your deployment.

Workarounds

  • Disable the systemd-machined service if not required: systemctl disable --now systemd-machined.service
  • Implement D-Bus policy restrictions to limit which users can call the RegisterMachine method
  • Apply SELinux or AppArmor policies to restrict systemd-machined capabilities
  • Use network segmentation and least-privilege principles to limit attacker access to local systems
bash
# Configuration example - Disable systemd-machined service
sudo systemctl stop systemd-machined.service
sudo systemctl disable systemd-machined.service
sudo systemctl mask systemd-machined.service

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechSystemd

  • SeverityMEDIUM

  • CVSS Score6.7

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-284
  • Technical References
  • Red Hat CVE-2026-4105 Advisory

  • Red Hat Bug Report #2447262

  • GitHub Security Advisory GHSA-4h6x-r8vx-3862
  • Related CVEs
  • CVE-2025-4598: Systemd Privilege Escalation Vulnerability

  • CVE-2020-13776: Systemd Privilege Escalation Vulnerability

  • CVE-2026-29111: systemd Denial of Service Vulnerability

  • CVE-2022-3821: Systemd Off-by-One DoS 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