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-40193

CVE-2026-40193: Maddy Mail Server Auth Bypass Vulnerability

CVE-2026-40193 is an LDAP injection authentication bypass flaw in maddy mail server that allows attackers to spoof identities and extract directory data. This article covers the technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-40193 Overview

CVE-2026-40193 is an LDAP Injection vulnerability affecting the Maddy mail server, a composable, all-in-one mail server written in Go. Versions prior to 0.9.3 contain a critical flaw in the auth.ldap module where user-supplied usernames are interpolated into LDAP search filters and DN strings via strings.ReplaceAll() without proper LDAP filter escaping. This is particularly notable because the ldap.EscapeFilter() function from the go-ldap/ldap/v3 library was available in the same import but was not utilized.

Critical Impact

Attackers with network access to SMTP submission or IMAP interfaces can inject arbitrary LDAP filter expressions through the username field in AUTH PLAIN or LOGIN commands, enabling identity spoofing, LDAP directory enumeration, and blind extraction of LDAP attribute values.

Affected Products

  • Maddy Mail Server versions prior to 0.9.3
  • Systems using the auth.ldap authentication module
  • Environments exposing SMTP submission or IMAP interfaces to untrusted networks

Discovery Timeline

  • April 16, 2026 - CVE-2026-40193 published to NVD
  • April 16, 2026 - Last updated in NVD database

Technical Details for CVE-2026-40193

Vulnerability Analysis

This LDAP Injection vulnerability (CWE-90) exists in three distinct code paths within the Maddy mail server's LDAP authentication module. The vulnerability enables attackers to manipulate LDAP queries through unsanitized user input in authentication requests.

The affected code paths include the Lookup() filter function, the AuthPlain() DN template, and the AuthPlain() filter. In each case, user-controlled username values are directly interpolated into LDAP query strings without proper escaping. The irony of this vulnerability is that the proper mitigation—using ldap.EscapeFilter() from the go-ldap/ldap/v3 library—was already imported and available in the codebase but simply not utilized.

An attacker can exploit this vulnerability to achieve multiple malicious outcomes: identity spoofing by manipulating filter results to authenticate as another user, LDAP directory enumeration using wildcard filters, and blind extraction of LDAP attribute values using authentication responses as a boolean oracle or via timing side-channels between the two distinct failure paths.

Root Cause

The root cause is improper input validation and missing LDAP-specific escaping when incorporating user-supplied usernames into LDAP search filters and Distinguished Name (DN) strings. The developers used the generic strings.ReplaceAll() function for string interpolation instead of the security-appropriate ldap.EscapeFilter() function. This oversight allows LDAP metacharacters such as *, (, ), \, and NUL bytes to be interpreted as query control characters rather than literal values.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can target the SMTP submission service (typically port 587) or IMAP service (typically port 143/993) and inject malicious LDAP filter expressions through the username parameter of AUTH PLAIN or LOGIN commands.

For example, an attacker could craft a username containing LDAP filter metacharacters to bypass authentication checks, enumerate valid usernames in the directory, or extract sensitive attribute values through boolean-based blind injection techniques. The presence of two distinct authentication failure paths also introduces timing side-channel opportunities for more sophisticated data extraction.

Technical details and the specific fix can be found in the GitHub Security Advisory and the patch commit.

Detection Methods for CVE-2026-40193

Indicators of Compromise

  • Authentication log entries containing LDAP metacharacters (*, (, ), \, |, &) in usernames
  • Unusual patterns in SMTP AUTH or IMAP LOGIN commands with malformed usernames
  • LDAP query logs showing injected filter expressions or wildcard searches
  • Multiple authentication attempts with incrementally modified usernames (indicative of blind injection enumeration)

Detection Strategies

  • Monitor authentication logs for usernames containing special characters typical of LDAP injection attempts
  • Implement anomaly detection for authentication timing patterns that may indicate exploitation of the dual failure path side-channel
  • Deploy network intrusion detection rules to identify LDAP injection payloads in SMTP/IMAP traffic
  • Audit LDAP server query logs for unexpected filter patterns or enumeration activity

Monitoring Recommendations

  • Enable verbose logging on both the Maddy mail server and the backend LDAP directory
  • Correlate failed authentication attempts across SMTP and IMAP services to identify coordinated injection campaigns
  • Monitor for sudden increases in LDAP query volume that may indicate directory enumeration
  • Implement alerting for authentication attempts using known LDAP injection test strings

How to Mitigate CVE-2026-40193

Immediate Actions Required

  • Upgrade Maddy mail server to version 0.9.3 or later immediately
  • Review authentication logs for signs of prior exploitation attempts
  • Temporarily restrict network access to SMTP submission and IMAP services to trusted networks if immediate patching is not possible
  • Audit user accounts for any unauthorized access that may have resulted from identity spoofing

Patch Information

The vulnerability has been fixed in Maddy version 0.9.3. The fix implements proper LDAP filter escaping using the ldap.EscapeFilter() function for all user-supplied inputs before interpolation into LDAP queries. The patch is available via the GitHub Release v0.9.3. The specific code changes can be reviewed in the commit update.

Workarounds

  • Deploy a Web Application Firewall (WAF) or network filter to sanitize LDAP metacharacters in authentication requests
  • Implement network-level access controls to limit SMTP submission and IMAP access to trusted IP ranges
  • Consider temporarily disabling LDAP authentication and using an alternative authentication backend until patching is complete
  • Monitor and rate-limit authentication attempts to slow potential blind injection enumeration
bash
# Update Maddy mail server to patched version
# Using Go modules
go get github.com/foxcpp/maddy@v0.9.3
go mod tidy
go build

# Or download the release directly
wget https://github.com/foxcpp/maddy/releases/download/v0.9.3/maddy-0.9.3-linux-amd64.tar.zst

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechMaddy

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-90
  • Technical References
  • GitHub Commit Update

  • GitHub Release v0.9.3

  • GitHub Security Advisory GHSA-5835-4gvc-32pc
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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