Cyber Resilience

CVE-2026-23845

MediumPublic PoC

Published: 19 January 2026

Published
19 January 2026
Modified
05 February 2026
KEV Added
Patch
CVSS Score v3.1 5.8 CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N
EPSS Score 0.0002 7.0th percentile
Risk Priority 12 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2026-23845 is a medium-severity SSRF (CWE-918) vulnerability in Axllent Mailpit. Its CVSS base score is 5.8 (Medium).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 7.0th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified are NIST 800-53 SI-10 (Information Input Validation) and AC-4 (Information Flow Enforcement).

Deeper analysis

CVE-2026-23845 is a Server-Side Request Forgery (SSRF) vulnerability, classified under CWE-918, affecting Mailpit, an email testing tool and API for developers. Versions prior to 1.28.3 are vulnerable through the HTML Check feature at the `/api/v1/message/{ID}/html-check` endpoint, which analyzes HTML emails for compatibility. Specifically, the `inlineRemoteCSS()` function automatically downloads CSS files referenced in external `<link rel="stylesheet" href="...">` tags to inline them, without validation of the URLs. The vulnerability has a CVSS v3.1 base score of 5.8 (AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N), indicating network accessibility, low attack complexity, no privileges or user interaction required, with changed scope and low confidentiality impact.

An attacker can exploit this vulnerability remotely without authentication by sending a malicious HTML email containing a crafted external CSS link to a Mailpit instance, then triggering the HTML Check endpoint on that message ID. This causes the server to make unauthorized requests to arbitrary URLs specified in the CSS href, potentially allowing access to internal network resources or metadata from external services. The impact is limited to low confidentiality, enabling attackers to retrieve limited sensitive information, such as internal service responses, depending on network configuration.

Mitigation is available in Mailpit version 1.28.3, which addresses the issue in the `inlineRemoteCSS()` function. Security practitioners should upgrade to this version or later. Relevant advisories and fixes are detailed in the GitHub security advisory (GHSA-6jxm-fv7w-rw5j), the release notes for v1.28.3, and the fixing commit (1679a0aba592ebc8487a996d37fea8318c984dfe).

EU & UK References

Vulnerability details

Mailpit is an email testing tool and API for developers. Versions prior to 1.28.3 are vulnerable to Server-Side Request Forgery (SSRF) via HTML Check CSS Download. The HTML Check feature (`/api/v1/message/{ID}/html-check`) is designed to analyze HTML emails for compatibility. During…

more

this process, the `inlineRemoteCSS()` function automatically downloads CSS files from external `<link rel="stylesheet" href="...">` tags to inline them for testing. Version 1.28.3 fixes the issue.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
Why these techniques?

SSRF in public-facing Mailpit API endpoint directly enables remote exploitation of the application without auth.

Confidence: HIGH · MITRE ATT&CK Enterprise v18.1

CVEs Like This One

CVE-2026-27808Same product: Axllent Mailpit
CVE-2026-6514Shared CWE-918
CVE-2026-44116Shared CWE-918
CVE-2026-21887Shared CWE-918
CVE-2026-31910Shared CWE-918
CVE-2026-48153Shared CWE-918
CVE-2026-45298Shared CWE-918
CVE-2026-39362Shared CWE-918
CVE-2026-31989Shared CWE-918
CVE-2025-27652Shared CWE-918

Affected Assets

axllent
mailpit
≤ 1.28.3

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Requires validation of URLs extracted from email HTML before the inlineRemoteCSS() function performs outbound fetches, directly blocking the unvalidated href values that enable SSRF.

prevent

Enforces boundary controls on outbound connections from the Mailpit server, limiting the ability of the /api/v1/message/{ID}/html-check endpoint to reach arbitrary internal or external targets.

prevent

Enforces information flow policies that restrict the server-initiated requests triggered by external <link> tags in processed email content.

References