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

CVE-2026-27178: MajorDoMo Stored XSS Vulnerability

CVE-2026-27178 is a stored XSS flaw in MajorDoMo that allows unauthenticated attackers to inject malicious scripts via the shoutbox, enabling session hijacking. This article covers technical details, impact, and mitigation.

Published: February 20, 2026

CVE-2026-27178 Overview

CVE-2026-27178 is a stored cross-site scripting (XSS) vulnerability in MajorDoMo (Major Domestic Module), a popular home automation platform. The vulnerability exists in the shoutbox functionality where user-supplied parameters are injected and stored without proper sanitization. An unauthenticated attacker can exploit the /objects/?method= endpoint to execute stored methods with attacker-controlled parameters, leading to persistent XSS attacks that automatically execute when administrators view the dashboard.

Critical Impact

Unauthenticated attackers can inject malicious scripts that execute automatically every 3 seconds when administrators load the dashboard, enabling session hijacking through cookie exfiltration.

Affected Products

  • MajorDoMo (Major Domestic Module) - All versions prior to patch

Discovery Timeline

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

Technical Details for CVE-2026-27178

Vulnerability Analysis

This stored XSS vulnerability represents a critical security weakness in MajorDoMo's input handling architecture. The attack chain begins at the /objects/?method= endpoint, which permits unauthenticated execution of stored methods with attacker-controlled parameters. Default methods such as ThisComputer.VolumeLevelChanged pass the user-supplied VALUE parameter directly into the say() function without any validation or encoding.

The say() function stores the message raw in the shouts database table without proper escaping or sanitization. When the shoutbox widget renders these stored messages, it does so without sanitization in both the PHP rendering code and HTML templates. The auto-refresh mechanism of the dashboard widget, which updates every 3 seconds, ensures that injected scripts execute automatically when any administrator loads the dashboard.

Root Cause

The root cause of CVE-2026-27178 is a complete lack of input sanitization at multiple points in the data flow. First, the /objects/?method= endpoint accepts and processes parameters from unauthenticated users without validation. Second, the say() function stores raw, unsanitized input directly into the database. Third, the shoutbox widget renders stored content without HTML encoding or output escaping. This combination of missing input validation and output encoding creates a classic stored XSS vulnerability pattern (CWE-79).

Attack Vector

The attack leverages the network-accessible endpoint to inject malicious JavaScript payloads. An attacker can craft a request to the /objects/?method= endpoint using a default method like ThisComputer.VolumeLevelChanged and include a malicious script in the VALUE parameter. This payload is stored in the database and executed in the browser context of any administrator who views the dashboard. Because the dashboard auto-refreshes frequently, the attack provides persistent access to administrator sessions, enabling cookie exfiltration and session hijacking without requiring any user interaction beyond normal dashboard usage.

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

Detection Methods for CVE-2026-27178

Indicators of Compromise

  • Unexpected entries in the shouts database table containing <script> tags or JavaScript event handlers
  • HTTP requests to /objects/?method= containing encoded script payloads or HTML special characters
  • Administrator session cookies being exfiltrated to external domains
  • Unusual network traffic from the MajorDoMo server to unknown external endpoints

Detection Strategies

  • Monitor web server access logs for requests to /objects/?method= endpoints from untrusted IP addresses
  • Implement database monitoring to detect insertion of HTML/JavaScript content in the shouts table
  • Deploy web application firewall (WAF) rules to detect XSS payloads in method parameters
  • Use Content Security Policy (CSP) violation reporting to identify script injection attempts

Monitoring Recommendations

  • Enable detailed logging for all requests to the /objects/ endpoint
  • Configure alerts for database changes to the shouts table containing suspicious content
  • Monitor for outbound connections from the MajorDoMo server that may indicate data exfiltration
  • Review administrator session activity for signs of hijacking or unauthorized access

How to Mitigate CVE-2026-27178

Immediate Actions Required

  • Apply the security patch from GitHub Pull Request #1177
  • Restrict access to the /objects/?method= endpoint to authenticated users only
  • Review and sanitize existing content in the shouts database table
  • Implement network-level access controls to limit exposure of the MajorDoMo interface

Patch Information

A fix has been submitted via GitHub Pull Request #1177 for the MajorDoMo project. Organizations should apply this patch immediately to address the stored XSS vulnerability. The patch implements proper input sanitization and output encoding in the affected code paths.

Workarounds

  • Disable the shoutbox widget on the dashboard until the patch is applied
  • Implement a web application firewall (WAF) rule to block XSS payloads in requests to /objects/
  • Restrict network access to the MajorDoMo interface to trusted IP addresses only
  • Clear the shouts database table and monitor for new malicious entries
bash
# Example: Restrict access to the objects endpoint using .htaccess
<Location /objects/>
    Require ip 192.168.1.0/24
    Require ip 10.0.0.0/8
</Location>

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechMajordomo

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:L/VI:L/VA:N/SC:L/SI:L/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • Chocapikk Blog Post

  • GitHub Pull Request #1177

  • VulnCheck Advisory for Majordomo
  • Related CVEs
  • CVE-2026-27177: MajorDoMo Stored XSS Vulnerability

  • CVE-2026-27176: MajorDoMo Reflected XSS Vulnerability

  • CVE-2026-27175: MajorDoMo OS Command Injection RCE Flaw

  • CVE-2026-27179: MajorDoMo SQL Injection 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