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

CVE-2026-27180: MajorDoMo RCE via Update URL Poisoning

CVE-2026-27180 is an unauthenticated remote code execution vulnerability in MajorDoMo that exploits supply chain compromise through update URL poisoning, allowing attackers to deploy webshells. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 20, 2026

CVE-2026-27180 Overview

CVE-2026-27180 is a critical remote code execution vulnerability affecting MajorDoMo (Major Domestic Module), a popular home automation platform. The vulnerability allows unauthenticated attackers to achieve remote code execution through a supply chain compromise attack by poisoning the system's update URL mechanism.

The saverestore module exposes its admin() method through the /objects/?module=saverestore endpoint without authentication. This occurs because the module uses gr('mode') which reads directly from $_REQUEST instead of the framework's $this->mode property. An attacker can exploit this by first poisoning the system update URL via the auto_update_settings mode handler, then triggering the force_update handler to initiate a malicious update chain. The autoUpdateSystem() method fetches an Atom feed from the attacker-controlled URL with minimal validation, downloads a tarball via curl with TLS verification disabled (CURLOPT_SSL_VERIFYPEER set to FALSE), extracts it using exec('tar xzvf ...'), and copies all extracted files to the document root using copyTree(). This chain allows an attacker to deploy arbitrary PHP files, including webshells, to the webroot with just two GET requests.

Critical Impact

Unauthenticated attackers can achieve complete server compromise by deploying arbitrary PHP code, including webshells, through update URL poisoning requiring only two GET requests.

Affected Products

  • MajorDoMo (Major Domestic Module) - all versions prior to the security fix

Discovery Timeline

  • 2026-02-18 - CVE CVE-2026-27180 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2026-27180

Vulnerability Analysis

This vulnerability represents a severe supply chain compromise vector that chains multiple security weaknesses into a devastating attack path. The root issue stems from improper access control on the saverestore module's administrative functionality.

The attack exploits an authentication bypass caused by the module directly reading user input via gr('mode') from PHP's $_REQUEST superglobal rather than using the framework's authenticated $this->mode property. This architectural flaw exposes privileged administrative functions to unauthenticated users.

Once access is gained, the attacker leverages unsafe update mechanisms. The system's auto-update feature exhibits multiple security failures: it accepts arbitrary URLs for update feeds, performs inadequate validation on feed content, explicitly disables TLS certificate verification when downloading update packages, and executes shell commands with unsanitized input during the extraction process.

The vulnerability is classified under CWE-494: Download of Code Without Integrity Check, which accurately captures the core security failure of accepting and executing code from untrusted sources without proper verification.

Root Cause

The vulnerability's root cause is twofold. First, the saverestore module bypasses the framework's access control mechanism by using gr('mode') to read request parameters directly, exposing administrative endpoints to unauthenticated users. Second, the update subsystem lacks fundamental security controls: no TLS certificate verification (CURLOPT_SSL_VERIFYPEER is explicitly set to FALSE), no code signing or integrity verification for downloaded packages, and direct shell execution of archive extraction commands. The combination of these issues creates a trivially exploitable attack chain.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker executes the attack in two phases:

Phase 1 - Update URL Poisoning: The attacker sends a GET request to /objects/?module=saverestore with parameters to invoke the auto_update_settings mode handler, setting the update URL to an attacker-controlled server hosting a malicious Atom feed.

Phase 2 - Triggering Malicious Update: A second GET request triggers the force_update handler, which causes the system to:

  1. Fetch the Atom feed from the poisoned URL
  2. Download the malicious tarball without TLS verification
  3. Extract the archive using exec('tar xzvf ...')
  4. Copy all extracted files to the web document root via copyTree()

The attacker's malicious archive contains PHP webshells or backdoors that, once copied to the webroot, provide persistent remote access to the compromised system. For detailed technical analysis and proof-of-concept information, see the Chocapikk Blog Post and the VulnCheck Advisory.

Detection Methods for CVE-2026-27180

Indicators of Compromise

  • Unexpected HTTP requests to /objects/?module=saverestore with auto_update_settings or force_update mode parameters from external IP addresses
  • Modified update configuration settings pointing to non-official domains or IP addresses
  • New or unexpected PHP files appearing in the web document root directory
  • Outbound connections to unknown external servers during update processes
  • Presence of webshells or suspicious PHP files with generic names in the webroot

Detection Strategies

  • Monitor web server access logs for requests containing module=saverestore combined with suspicious mode parameters like auto_update_settings or force_update
  • Implement file integrity monitoring (FIM) on the MajorDoMo webroot directory to detect unauthorized file additions or modifications
  • Configure network monitoring to alert on outbound connections to unknown hosts during update cycles
  • Review system configuration for unauthorized changes to update URL settings

Monitoring Recommendations

  • Deploy web application firewalls (WAF) with rules to block unauthenticated access to the saverestore module endpoints
  • Enable verbose logging for all administrative module access attempts in MajorDoMo
  • Implement egress filtering to restrict outbound connections to known legitimate update servers
  • Set up real-time alerts for file creation events in the web document root directory

How to Mitigate CVE-2026-27180

Immediate Actions Required

  • Apply the security patch from the GitHub Pull Request #1177 immediately
  • Review and verify the current update URL configuration is set to the official MajorDoMo server
  • Audit the webroot directory for any unauthorized PHP files or webshells
  • Restrict network access to the MajorDoMo administrative interface to trusted IP addresses only
  • Consider temporarily disabling the auto-update functionality until the patch is applied

Patch Information

A security fix is available via GitHub Pull Request #1177. Users should update to the latest version of MajorDoMo that includes this fix. The patch addresses the authentication bypass in the saverestore module and implements proper access controls for administrative functions. For additional technical details, review the VulnCheck Advisory.

Workarounds

  • Implement network-level access controls to restrict access to /objects/?module=saverestore to authenticated administrative networks only
  • Configure a web application firewall to block requests containing module=saverestore from untrusted sources
  • Disable the auto-update feature entirely by removing or restricting access to update-related configuration endpoints
  • Place MajorDoMo behind a reverse proxy with authentication requirements for all administrative endpoints
bash
# Example: Nginx configuration to restrict saverestore module access
location /objects/ {
    # Block unauthenticated access to saverestore module
    if ($args ~* "module=saverestore") {
        return 403;
    }
    # Or restrict to trusted IP addresses
    # allow 192.168.1.0/24;
    # deny all;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechMajordomo

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/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
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-494
  • Technical References
  • Chocapikk Blog Post

  • GitHub Pull Request

  • VulnCheck Advisory
  • Related CVEs
  • CVE-2026-27175: MajorDoMo OS Command Injection RCE Flaw

  • CVE-2026-27174: MajorDoMo RCE Vulnerability

  • CVE-2026-27179: MajorDoMo SQL Injection Vulnerability

  • CVE-2026-27181: MajorDoMo Auth Bypass 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