CVE-2026-27180
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedMajorDoMo (aka Major Domestic Module) is vulnerable to unauthenticated remote code execution through supply chain compromise via update URL poisoning. The saverestore module exposes its admin() method through the /objects/?module=saverestore endpoint without authentication because it uses gr('mode') (which reads directly from $_REQUEST) instead of the framework's $this->mode. An attacker can poison the system update URL via the auto_update_settings mode handler, then trigger the force_update handler to initiate the update chain. The autoUpdateSystem() method fetches an Atom feed from the attacker-controlled URL with trivial 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 allows an attacker to deploy arbitrary PHP files, including webshells, to the webroot with two GET requests.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceMajorDoMo suffers from unauthenticated RCE via the saverestore module which exposes its admin() method through /objects/?module=saverestore without authentication, using gr('mode') instead of the framework's $this->mode. Attackers poison the update URL via auto_update_settings, then trigger force_update to fetch and extract a malicious tarball from an attacker-controlled URL with TLS verification disabled, deploying arbitrary PHP webshells to the webroot.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE dataall versionsCVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- None
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Check if saverestore module is exposed without authenticationAttempt to access /objects/?module=saverestore via HTTP request (e.g., curl -s http://TARGET/objects/?module=saverestore). If the page loads without requiring login credentials, the module is exposed.Affected if The endpoint responds with content (not a redirect to login or 403) and allows unauthenticated access to the saverestore functionality.
-
Inspect auto_update_settings configurationLocate and read the MajorDoMo configuration file where auto_update_settings are stored (typically in the database or a config file). Look for the 'update_url' or similar field that defines where updates are fetched from.Affected if The update URL is set to an untrusted or attacker-controlled domain, or is set to an unexpected/unknown value.
-
Verify TLS certificate verification status for updatesSearch the codebase or configuration for the update mechanism (likely in saverestore module or update-related code). Look for occurrences of disabling TLS verification such as 'CURLOPT_SSL_VERIFYPEER' set to 0, 'ssl_verify_peer' => false, or similar.Affected if TLS/SSL certificate verification is explicitly disabled for the update fetch operation.
-
Search webroot for unexpected PHP filesList all PHP files in the web document root (e.g., find /var/www -name '*.php' or similar). Compare against expected legitimate PHP files from a clean MajorDoMo installation.Affected if There are PHP files in the webroot that were not part of the original installation, especially files with names like shell.php, cmd.php, or other suspicious filenames.
-
Check server logs for force_update or saverestore activityReview web server access logs (apache2 access log, nginx access log) for requests to /objects/?module=saverestore with mode=force_update or similar update-triggering parameters.Affected if Logs show requests to the saverestore module with force_update mode from IP addresses that are not trusted admin sources.
You are affected if the saverestore module is accessible without authentication AND (the update URL points to an untrusted source OR TLS verification is disabled), or if unexpected PHP webshell files exist in your webroot.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedImmediately restrict access to the saverestore module with proper authentication, replace gr('mode') with $this->mode, enable TLS certificate verification, and validate update sources before fetching.
- 1. Review the vendor patch at https://github.com/sergejey/majordomo/pull/1177 to understand the code changes
- 2. Apply the patch to your MajorDoMo installation, which should address the authentication bypass in saverestore module
- 3. Ensure the fix properly validates the mode parameter using $this->mode instead of directly reading from $_REQUEST via gr('mode')
- 4. Verify the patch also addresses the insecure TLS verification (CURLOPT_SSL_VERIFYPEER=FALSE) in autoUpdateSystem()
- 5. After patching, test that the /objects/?module=saverestore endpoint requires authentication
- 6. Validate that the auto_update_settings mode handler now properly authenticates before allowing update URL modifications
- 7. Confirm the force_update handler requires proper authorization
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation4.0 h
- Implementation8.0 h
- Testing6.0 h
- Review / QA3.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $5,888.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-27180 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-27180 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data