What is SmarterMail?
SmarterTools SmarterMail is a self-hosted enterprise email and collaboration server platform for Windows and Linux. It provides SMTP, IMAP, POP3, webmail, calendaring, and task management for organizations that run their own mail infrastructure rather than relying on cloud providers. SmarterMail is widely deployed by web hosting companies, ISPs, managed service providers, and organizations requiring on-premises email control. Because it is an internet-facing server running with high privileges — typically SYSTEM on Windows or root on Linux — and holds access to all organizational mailboxes and communications, a compromised SmarterMail instance is a high-value target for both espionage and ransomware operations.
CVE-2026-24423 is the second of two critical zero-authentication vulnerabilities in SmarterMail patched in Build 9511 (January 15, 2026); the companion vulnerability CVE-2026-23760 affects the same product and was exploited in the same campaigns.
Overview
CVE-2026-24423 is a CWE-306 (Missing Authentication for Critical Function) vulnerability in SmarterMail's ConnectToHub API method. The /api/v1/settings/sysadmin/connect-to-hub endpoint requires no authentication and allows any unauthenticated caller to instruct the SmarterMail server to establish a connection to an arbitrary attacker-controlled HTTP server. When the attacker's server responds with a specially crafted JSON payload containing a CommandMount parameter, the SmarterMail process executes the supplied OS command with its full privilege level — SYSTEM on Windows, root on Linux.
This is a server-side request forgery (SSRF) escalated to remote code execution: the victim server makes an outbound connection to the attacker, receives instructions, and executes them — all triggered by a single unauthenticated POST from the attacker to the SmarterMail instance. CISA added this vulnerability to the Known Exploited Vulnerabilities catalog on February 5, 2026, following confirmation of active ransomware exploitation. It is flagged for ransomware use.
Affected Versions
| Component | Vulnerable | Fixed |
|---|---|---|
| SmarterMail (Windows) | All builds prior to 9511 | Build 9511 (Jan 15, 2026); Build 9518+ recommended |
| SmarterMail (Linux) | All builds prior to 9511 | Build 9511 (Jan 15, 2026); Build 9518+ recommended |
Build 9518 (January 22, 2026) includes additional security hardening beyond the minimum patch in Build 9511 and is the vendor-recommended version.
Technical Details
The ConnectToHub API endpoint (/api/v1/settings/sysadmin/connect-to-hub) is classified as a system administrator function for configuring hub server connectivity. The flaw is that the endpoint performs no authentication check — it accepts and processes POST requests from any remote caller without requiring a session token, API key, or credential of any kind.
The exploit chain works as follows:
- Attacker sends a POST to
/api/v1/settings/sysadmin/connect-to-hubon the target SmarterMail instance, supplying the URL of an attacker-controlled server. - SmarterMail makes an outbound connection to the attacker's server at a predefined secondary endpoint, as part of the "hub registration" flow.
- The attacker's server responds with a JSON payload containing a
CommandMountparameter set to the desired OS command. - SmarterMail executes the command locally, running it in the context of the SmarterMail service process (SYSTEM on Windows, root on Linux).
No prior authentication or existing foothold is required. The attack originates entirely from the attacker — the SmarterMail server is instructed to call home and receive its own payload. This design makes the vulnerability exploitable even when SmarterMail's web interface is behind a NAT or firewall, as long as the SmarterMail server can reach the attacker's server over the internet.
In observed campaigns, CVE-2026-24423 is used in conjunction with CVE-2026-23760: attackers first use the admin password reset flaw to obtain authenticated access, then leverage ConnectToHub to escalate to OS-level code execution, or in some cases use ConnectToHub directly as a standalone RCE path.
Discovery
CVE-2026-24423 was independently discovered and reported by four researchers: Sina Kheirkhah and Piotr Bazydlo of watchTowr Labs, Markus Wulftange of CODE WHITE GmbH, and Cale Black of VulnCheck. The CVE was published January 23, 2026, eight days after SmarterTools released the initial patch.
Exploitation Context
Active exploitation was confirmed in ransomware campaigns from at least January 17, 2026, two days after the patch release. The most significant confirmed incident is the breach of SmarterTools' own infrastructure on January 29, 2026, attributed to Warlock ransomware, also tracked as Gold Salem (Sophos) and Storm-2603 (Microsoft). Warlock is described as a threat actor that blends state-sponsored espionage methods with cybercrime tactics, with a focus on enterprise software vendors and hosting providers. SmarterTools publicly confirmed the breach on February 9, 2026.
CISA added CVE-2026-24423 to the KEV catalog on February 5, 2026 — two weeks after the companion CVE-2026-23760 was added on January 26, 2026. Both are flagged as associated with ransomware use. The two CVEs are closely related in exploitation: attackers frequently chain them to achieve authenticated admin access followed by OS command execution on the same target.
Remediation
- Patch: Upgrade SmarterMail to Build 9518 or later immediately. Build 9511 is the minimum fix, but Build 9518 includes additional security hardening and is the vendor-recommended version.
- Firewall / access restriction: Block unauthenticated external access to the SmarterMail administrative API. If SmarterMail does not need to be publicly accessible for end users, restrict port 443/80 to known IP ranges. At a minimum, ensure the SmarterMail admin interface is not reachable from untrusted networks.
- Egress filtering: The ConnectToHub attack requires the SmarterMail server to make outbound HTTP connections to attacker infrastructure. Consider restricting outbound HTTP/HTTPS from the SmarterMail service to known legitimate hubs and update servers to limit SSRF exploitation paths.
- Log review: Audit web server access logs for POST requests to
/api/v1/settings/sysadmin/connect-to-hubfrom any external source. Review application logs for unexpected outbound HTTP connections initiated by the SmarterMail process. Also check for POST requests to/api/v1/auth/force-reset-passwordwithIsSysAdmin=true(CVE-2026-23760), which is commonly paired in the same attack. Any unrecognized system administrator accounts or unexpected configuration changes should be treated as indicators of compromise.
Key Details
| Property | Value |
|---|---|
| CVE ID | CVE-2026-24423 |
| Vendor / Product | SmarterTools — SmarterMail |
| NVD Published | 2026-01-23 |
| NVD Last Modified | 2026-02-06 |
| CVSS 3.1 Score | 9.8 |
| CVSS 3.1 Vector | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H |
| Severity | CRITICAL |
| CWE | CWE-306 find similar ↗ |
| CISA KEV Added | 2026-02-05 |
| CISA KEV Deadline | 2026-02-26 |
| Known Ransomware Use | ⚠️ Yes |
CVSS 3.1 Breakdown
Required Action
Timeline
| Date | Event |
|---|---|
| 2026-01-15 | SmarterTools releases Build 9511 patching CVE-2026-24423 and CVE-2026-23760 |
| 2026-01-17 | Active exploitation of SmarterMail vulnerabilities begins |
| 2026-01-22 | SmarterTools releases Build 9518 with additional security hardening |
| 2026-01-23 | CVE-2026-24423 published |
| 2026-01-29 | Warlock (Storm-2603) ransomware breaches SmarterTools using this vulnerability |
| 2026-02-05 | Added to CISA Known Exploited Vulnerabilities catalog |
| 2026-02-09 | SmarterTools publicly confirms breach; exploitation details widely reported |
| 2026-02-26 | CISA BOD 22-01 remediation deadline |
References
| Resource | Type |
|---|---|
| SmarterMail Release Notes (current) | Vendor Advisory |
| Help Net Security — Ransomware Attackers Exploiting CVE-2026-24423 | News |
| Rescana — Warlock Ransomware Breaches SmarterTools | Threat Intelligence |
| Cybersecurity Dive — SmarterMail Facing Widespread Attacks | News |
| NVD — CVE-2026-24423 | Vulnerability Database |
| CISA KEV Catalog Entry | US Government |