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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-40875

CVE-2026-40875: mailcow dockerized XSS Vulnerability

CVE-2026-40875 is a cross-site scripting flaw in mailcow dockerized that allows attackers to inject malicious scripts via X-Real-IP headers. This article covers the technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-40875 Overview

CVE-2026-40875 is a Cross-Site Scripting (XSS) vulnerability affecting mailcow: dockerized, an open source groupware/email suite based on Docker. The vulnerability exists in the user dashboard's "Seen successful connections" (login history) feature, which renders the client IP from login logs without proper HTML escaping. Because the server trusts the X-Real-IP header as the source IP for logging, an attacker can inject malicious HTML or JavaScript code into this field.

This Self-XSS vulnerability becomes exploitable through a Login CSRF attack chain. An attacker can force the victim into the attacker's controlled account, and subsequently read emails displayed in a previous browser tab, leading to potential information disclosure.

Critical Impact

Attackers can chain Self-XSS with Login CSRF to hijack user sessions and access sensitive email content through header injection in the login history display.

Affected Products

  • mailcow: dockerized versions prior to 2026-03b

Discovery Timeline

  • 2026-04-21 - CVE CVE-2026-40875 published to NVD
  • 2026-04-22 - Last updated in NVD database

Technical Details for CVE-2026-40875

Vulnerability Analysis

This vulnerability is classified under CWE-79 (Improper Neutralization of Input During Web Page Generation), commonly known as Cross-Site Scripting. The core issue stems from insufficient input validation and output encoding in the mailcow dashboard's login history feature.

When users view their "Seen successful connections" in the dashboard, the application displays IP addresses from login logs. However, the server relies on the X-Real-IP HTTP header to determine and log the client's source IP address. This header is user-controllable and can be manipulated by attackers to contain arbitrary content, including HTML and JavaScript payloads.

The vulnerability requires an attack chain to be exploited effectively: an attacker first crafts a malicious login request with XSS payload in the X-Real-IP header, then uses Login CSRF to force the victim to authenticate into the attacker's account. Once the victim views the login history, the injected script executes in their browser context, potentially allowing the attacker to exfiltrate data from other browser tabs containing the victim's legitimate mailcow session.

Root Cause

The root cause of CVE-2026-40875 is the lack of proper HTML escaping when rendering the client IP address from login logs in the user dashboard. The application directly outputs the logged IP value into the HTML response without sanitization. Combined with the server's trust of the X-Real-IP header for logging purposes, this creates an injection point that attackers can exploit to insert malicious scripts.

Attack Vector

The attack leverages a network-based vector requiring user interaction. The exploitation chain involves:

  1. An attacker crafts a malicious X-Real-IP header containing JavaScript payload
  2. The attacker logs into their own mailcow account with this modified header
  3. The malicious IP is stored in the attacker's login history logs
  4. Using Login CSRF, the attacker forces the victim to authenticate into the attacker's account
  5. When the victim views the login history in the dashboard, the XSS payload executes
  6. The script can then access data from other browser tabs or perform actions on behalf of the victim

The attack requires the attacker to have privileged access to create an account and depends on the victim having another authenticated mailcow session open in a separate browser tab.

Detection Methods for CVE-2026-40875

Indicators of Compromise

  • Unusual or malformed entries in login history logs containing HTML/JavaScript content
  • Login records with X-Real-IP values that don't match valid IP address formats
  • Unexpected authentication sessions where users report being logged into unfamiliar accounts

Detection Strategies

  • Monitor web server logs for HTTP requests containing script tags or JavaScript in the X-Real-IP header
  • Implement Content Security Policy (CSP) headers to detect and block inline script execution attempts
  • Review login history database entries for non-IP formatted values indicating injection attempts

Monitoring Recommendations

  • Enable logging for all authentication events and correlate with user session activity
  • Set up alerts for Login CSRF patterns such as cross-origin authentication requests without proper CSRF tokens
  • Monitor for anomalous browser behavior indicating script injection in the dashboard interface

How to Mitigate CVE-2026-40875

Immediate Actions Required

  • Upgrade mailcow: dockerized to version 2026-03b or later immediately
  • Review login history logs for any evidence of exploitation or unusual IP entries
  • Implement strict input validation on the X-Real-IP header at the reverse proxy or web server level

Patch Information

The vulnerability is fixed in mailcow: dockerized version 2026-03b. Organizations should upgrade to this version or later to remediate the XSS vulnerability. The patch implements proper HTML escaping when rendering client IP addresses in the login history display. For detailed patch information, see the GitHub Security Advisory.

Workarounds

  • Configure the reverse proxy to validate and sanitize the X-Real-IP header, rejecting values that don't match valid IP address patterns
  • Implement Content Security Policy (CSP) headers to mitigate the impact of XSS by blocking inline script execution
  • Disable or restrict access to the login history feature until the patch can be applied
  • Train users to be cautious of unexpected login prompts that could indicate CSRF attacks
bash
# Example nginx configuration to validate X-Real-IP header
# Add to your nginx server block for mailcow
map $http_x_real_ip $validated_real_ip {
    default "";
    "~^([0-9]{1,3}\.){3}[0-9]{1,3}$" $http_x_real_ip;
    "~^([0-9a-fA-F]{0,4}:){2,7}[0-9a-fA-F]{0,4}$" $http_x_real_ip;
}

# Use $validated_real_ip instead of $http_x_real_ip in your proxy configuration

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechMailcow

  • SeverityHIGH

  • CVSS Score7.0

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:P/PR:L/UI:P/VC:H/VI:N/VA:N/SC:H/SI:H/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40872: mailcow dockerized XSS Vulnerability

  • CVE-2026-40873: mailcow dockerized XSS Vulnerability

  • CVE-2026-40878: mailcow dockerized XSS Vulnerability

  • CVE-2024-31204: Mailcow Dockerized XSS 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