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

CVE-2026-27181: MajorDoMo Auth Bypass Vulnerability

CVE-2026-27181 is an authentication bypass flaw in MajorDoMo that allows attackers to uninstall modules without authentication, potentially wiping entire installations. This article covers technical details, impact, and mitigation.

Published: February 20, 2026

CVE-2026-27181 Overview

CVE-2026-27181 is a critical authorization bypass vulnerability in MajorDoMo (Major Domestic Module), an open-source home automation platform. The vulnerability allows unauthenticated attackers to arbitrarily uninstall modules through the market module endpoint, potentially wiping the entire MajorDoMo installation with a series of unauthenticated GET requests. This flaw stems from missing authentication checks in the market module's admin() method, which processes mode parameters directly from user input without verifying credentials.

Critical Impact

An unauthenticated attacker can remotely destroy the entire MajorDoMo home automation system by iterating through module names and triggering the uninstall functionality, leading to complete system unavailability and potential data loss.

Affected Products

  • MajorDoMo (Major Domestic Module) - versions prior to the security patch
  • MajorDoMo market module component
  • Self-hosted MajorDoMo installations exposed to network access

Discovery Timeline

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

Technical Details for CVE-2026-27181

Vulnerability Analysis

This vulnerability is classified as CWE-862 (Missing Authorization), a broken access control flaw that allows unauthenticated users to access privileged functionality. The market module in MajorDoMo fails to implement proper authentication checks before processing administrative operations.

The core issue lies in the market module's admin() method, which reads the mode parameter from $_REQUEST via the gr('mode') function and assigns it directly to $this->mode at the start of execution. This design flaw makes all mode-gated code paths, including the critical uninstall mode, reachable without any authentication via the /objects/?module=market endpoint.

When the uninstall mode is triggered, the handler calls uninstallPlugin(), which performs several destructive operations: deleting module records from the database, executing the module's uninstall() method via eval(), recursively deleting the module's directory and template files using removeTree(), and removing associated cycle scripts.

Root Cause

The root cause of CVE-2026-27181 is the complete absence of authentication and authorization checks in the market module's admin() method. The method blindly trusts user-supplied input from $_REQUEST without verifying whether the requesting user has administrative privileges. This architectural flaw violates the principle of least privilege and fails to implement defense-in-depth security controls.

Attack Vector

The attack vector is network-based, requiring no authentication, no user interaction, and presenting low attack complexity. An attacker with network access to a vulnerable MajorDoMo installation can exploit this vulnerability by:

  1. Sending a crafted GET request to /objects/?module=market with the mode parameter set to uninstall
  2. Specifying a target module name in the request parameters
  3. Iterating through known or discovered module names to systematically uninstall all modules

The vulnerability allows attackers to craft simple HTTP GET requests that trigger the uninstall functionality. By enumerating module names and sending repeated requests, an attacker can completely destroy the MajorDoMo installation, removing all installed modules, their configurations, and associated data.

For detailed technical analysis and proof-of-concept information, see the Chocapikk Blog Post and the VulnCheck Security Advisory.

Detection Methods for CVE-2026-27181

Indicators of Compromise

  • HTTP GET requests to /objects/?module=market containing mode=uninstall parameter from external or unauthorized IP addresses
  • Multiple sequential requests to the market module endpoint with different module name parameters
  • Unexpected deletion of module directories under the MajorDoMo installation path
  • Database records showing module removals without corresponding administrator activity logs
  • Missing or corrupted template files and cycle scripts

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing mode=uninstall to the /objects/?module=market endpoint
  • Monitor HTTP access logs for patterns of unauthenticated requests to administrative endpoints
  • Deploy intrusion detection system (IDS) signatures for MajorDoMo-specific attack patterns
  • Enable file integrity monitoring on MajorDoMo module directories to detect unauthorized deletions

Monitoring Recommendations

  • Configure real-time alerting for any access to the market module's administrative functions from non-trusted networks
  • Establish baseline behavior for module installation and uninstallation activities and alert on deviations
  • Monitor database transaction logs for unexpected DELETE operations on module-related tables
  • Implement network traffic analysis to identify reconnaissance and exploitation attempts targeting MajorDoMo installations

How to Mitigate CVE-2026-27181

Immediate Actions Required

  • Restrict network access to MajorDoMo installations using firewall rules, limiting access to trusted IP addresses only
  • Place MajorDoMo behind a reverse proxy with authentication requirements for all administrative endpoints
  • Create backups of all module configurations, database content, and installation files immediately
  • Review access logs for signs of prior exploitation attempts or successful attacks
  • Consider temporarily disabling the market module if not actively required

Patch Information

A security patch addressing this vulnerability is available via GitHub Pull Request #1177. Organizations running MajorDoMo should apply this patch immediately or update to a version that includes the fix. The patch adds proper authentication checks to the market module's admin() method, ensuring that only authenticated administrators can access mode-gated functionality.

For additional context and technical details, refer to the VulnCheck Security Advisory.

Workarounds

  • Implement network-level access controls to restrict access to the MajorDoMo web interface to trusted networks only
  • Deploy a reverse proxy (such as nginx or Apache) with HTTP Basic Authentication in front of MajorDoMo to enforce authentication on all requests
  • Use web application firewall rules to block requests containing mode=uninstall or similar administrative parameters to the market endpoint
  • If feasible, disable or remove the market module entirely until a patch can be applied
bash
# Example: Restrict MajorDoMo access using iptables
# Allow only trusted network (e.g., 192.168.1.0/24) to access MajorDoMo on port 80
iptables -A INPUT -p tcp --dport 80 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -j DROP

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechMajordomo

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.02%

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

  • GitHub Pull Request

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

  • CVE-2026-27179: MajorDoMo SQL Injection Vulnerability

  • CVE-2026-27177: MajorDoMo Stored XSS Vulnerability

  • CVE-2026-27180: MajorDoMo RCE via Update URL Poisoning
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