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

CVE-2026-27174: MajorDoMo RCE Vulnerability

CVE-2026-27174 is a remote code execution vulnerability in MajorDoMo that allows unauthenticated attackers to execute arbitrary PHP code via the admin panel. This article covers technical details, impact, and mitigation.

Published: February 20, 2026

CVE-2026-27174 Overview

MajorDoMo (aka Major Domestic Module) contains a critical unauthenticated remote code execution vulnerability in the admin panel's PHP console feature. An include order bug in modules/panel.class.php causes execution to continue past a redirect() call that lacks an exit statement, allowing unauthenticated requests to reach the ajax handler in inc_panel_ajax.php. The console handler within that file passes user-supplied input from GET parameters (via register_globals) directly to eval() without any authentication check. An attacker can execute arbitrary PHP code by sending a crafted GET request to /admin.php with ajax_panel, op, and command parameters.

Critical Impact

This vulnerability allows unauthenticated attackers to achieve complete system compromise through arbitrary PHP code execution, potentially leading to full server takeover, data theft, and lateral movement within the network.

Affected Products

  • MajorDoMo (Major Domestic Module) - Home Automation System
  • Installations with publicly accessible admin panels
  • Systems using affected versions of modules/panel.class.php and inc_panel_ajax.php

Discovery Timeline

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

Technical Details for CVE-2026-27174

Vulnerability Analysis

This vulnerability represents a classic case of improper authentication enforcement combined with dangerous code execution primitives. The root issue stems from an include order bug where the authentication check in modules/panel.class.php calls redirect() but fails to immediately terminate script execution with an exit statement. This allows unauthenticated request processing to continue through the logic flow.

Once an attacker bypasses the authentication gate, they can reach the AJAX handler in inc_panel_ajax.php, which contains a console feature designed for administrative debugging. This console handler uses PHP's register_globals functionality to accept user-controlled input from GET parameters, which is then passed directly to eval() for execution.

The combination of authentication bypass and direct eval() execution creates a trivially exploitable attack surface. No authentication tokens, session cookies, or special headers are required—only a properly formatted HTTP GET request to the vulnerable endpoint.

Root Cause

The vulnerability originates from two distinct coding errors that combine to create a critical security flaw:

  1. Missing Exit Statement: The authentication check in modules/panel.class.php invokes redirect() for unauthenticated users but fails to call exit or die() afterward. In PHP, redirect() typically only sends HTTP headers and does not halt script execution unless explicitly coded to do so. This allows the remaining code to execute despite the redirect being issued.

  2. Unsafe eval() Usage: The console handler in inc_panel_ajax.php passes user-supplied input directly to eval() without sanitization. The use of register_globals means that GET parameters are automatically converted to PHP variables, making exploitation trivial.

This vulnerability is classified as CWE-94 (Improper Control of Generation of Code / Code Injection).

Attack Vector

The attack leverages the network-accessible admin panel interface. An attacker sends a specially crafted GET request to /admin.php containing the following parameters:

  • ajax_panel - Triggers the AJAX handler pathway
  • op - Specifies the operation to perform (console execution)
  • command - Contains the malicious PHP code to execute

The vulnerable code path processes the request as follows: the redirect() call fires but script execution continues, the AJAX handler is invoked, register_globals populates variables from GET parameters, and the command parameter is passed directly to eval(). The attacker's PHP code executes with the privileges of the web server process, typically allowing file system access, database manipulation, and further system compromise.

For technical details on the exploitation mechanism, refer to the Chocapikk Blog Post and the Vulncheck Security Advisory.

Detection Methods for CVE-2026-27174

Indicators of Compromise

  • HTTP GET requests to /admin.php containing ajax_panel, op, and command parameters from external IP addresses
  • Unusual process spawning from the web server process (e.g., www-data or apache user)
  • Unexpected files created in web-accessible directories or temporary folders
  • Anomalous outbound network connections from the MajorDoMo server

Detection Strategies

  • Configure web application firewalls (WAF) to detect and block requests containing eval(), system(), exec(), or other dangerous PHP functions in the command parameter
  • Implement log monitoring for suspicious access patterns to /admin.php with AJAX-related parameters
  • Deploy endpoint detection and response (EDR) solutions to identify post-exploitation activities such as reverse shells or unauthorized file modifications
  • Use network intrusion detection systems (IDS) to flag unusual traffic patterns from home automation servers

Monitoring Recommendations

  • Enable verbose HTTP access logging on the MajorDoMo server and forward logs to a centralized SIEM
  • Monitor for privilege escalation attempts and lateral movement originating from the affected system
  • Set up alerts for any process execution by the web server user that includes command-line interpreters or network utilities

How to Mitigate CVE-2026-27174

Immediate Actions Required

  • Restrict network access to the MajorDoMo admin panel to trusted IP addresses only using firewall rules
  • Place the admin interface behind a VPN or reverse proxy with strong authentication
  • If not required, disable or remove the PHP console feature entirely
  • Audit server logs for signs of prior exploitation

Patch Information

A fix has been submitted via the GitHub Pull Request #1177. Organizations should review and apply this patch immediately or upgrade to a patched version when officially released. The patch addresses the missing exit statement after the redirect() call and implements proper authentication checks for the console feature.

Workarounds

  • Implement IP-based access controls to restrict admin panel access to internal networks only
  • Deploy a reverse proxy (e.g., nginx) in front of MajorDoMo to enforce authentication before requests reach the application
  • Disable register_globals if supported by your PHP configuration (note: register_globals was removed in PHP 5.4.0, so ensure you are running a supported PHP version)
  • Monitor and block requests containing dangerous PHP function names in URL parameters
bash
# Example nginx configuration to restrict admin access
location /admin.php {
    # Allow only trusted internal networks
    allow 192.168.1.0/24;
    allow 10.0.0.0/8;
    deny all;
    
    # Additional basic authentication layer
    auth_basic "Restricted Access";
    auth_basic_user_file /etc/nginx/.htpasswd;
    
    proxy_pass http://localhost:8080;
}

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.32%

  • 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-94
  • Technical References
  • Chocapikk Blog Post

  • GitHub Pull Request

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

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

  • 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