Cyber Resilience

CVE-2023-26490

HighPublic PoC

Published: 04 March 2023

Published
04 March 2023
Modified
21 November 2024
KEV Added
Patch
CVSS Score v3.1 7.3 CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
EPSS Score 0.1296 94.2th percentile
Risk Priority 22 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2023-26490 is a high-severity OS Command Injection (CWE-78) vulnerability in Mailcow Mailcow\. Its CVSS base score is 7.3 (High).

Operationally, ranked in the top 5.8% of CVEs by exploit likelihood; it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

Deeper analysis

mailcow is a dockerized email package that links multiple containers in a single bridged network. The Sync Job feature, which can be enabled for standard users via an ACL, contains a command injection vulnerability (CWE-78) in the imapsync Perl script. When constructing a shell command that invokes openssl for XOAUTH2 authentication, portions of the user-supplied password are incorporated without validation, allowing arbitrary command execution inside the dovecot container.

An attacker who obtains the Sync Job permission can exploit the flaw to gain shell access within the affected container. The permission is not granted by default to newly created mailcow accounts, limiting exposure to users who have been explicitly assigned the ACL or to accounts created before the default policy was enforced.

The vulnerability was addressed in the 2023-03 mailcow release published on 3 March 2023. As an interim mitigation, administrators can remove the Syncjob ACL from all mailbox users to prevent creation or modification of sync jobs. The corresponding GitHub Security Advisory and release notes document the fix and the workaround.

EU & UK References

Vulnerability details

mailcow is a dockerized email package, with multiple containers linked in one bridged network. The Sync Job feature - which can be made available to standard users by assigning them the necessary permission - suffers from a shell command injection.…

more

A malicious user can abuse this vulnerability to obtain shell access to the Docker container running dovecot. The imapsync Perl script implements all the necessary functionality for this feature, including the XOAUTH2 authentication mechanism. This code path creates a shell command to call openssl. However, since different parts of the specified user password are included without any validation, one can simply execute additional shell commands. Notably, the default ACL for a newly-created mailcow account does not include the necessary permission. The Issue has been fixed within the 2023-03 Update (March 3rd 2023). As a temporary workaround the Syncjob ACL can be removed from all mailbox users, preventing from creating or changing existing Syncjobs.

CWE(s)

Related Threats

No named actor attribution yet. ATT&CK technique mapping in progress for this CVE.

Affected Assets

mailcow
mailcow\
_dockerized

Mitigating Controls

Likely Mitigating Controls AI

Per-CVE control mapping for this CVE has not run yet; the list below is derived from the weakness types (CWEs) cited in the NVD entry.

addresses: CWE-78

Platform-independent apps typically execute inside a managed runtime or sandbox that restricts direct OS command execution, reducing the ability to exploit OS command injection.

addresses: CWE-78

Validates inputs to block special elements that would alter OS command execution.

References