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

CVE-2026-43862: Mutt IMAP Auth Bypass Vulnerability

CVE-2026-43862 is an authentication bypass vulnerability in Mutt email client affecting versions before 2.3.2 due to mishandled imap_auth_gss security levels. This article covers technical details, impact, and fixes.

Published: May 7, 2026

CVE-2026-43862 Overview

CVE-2026-43862 affects Mutt, the text-based email client widely used on Unix-like systems. The vulnerability resides in the imap_auth_gss() function within imap/auth_gss.c, where the security level handling during Generic Security Services Application Program Interface (GSSAPI) authentication to Internet Message Access Protocol (IMAP) servers is mishandled. The flaw is classified as a type confusion issue [CWE-843] caused by an incorrect type used for the buf_size variable. Affected versions include all releases of Mutt prior to 2.3.2.

Critical Impact

A network-positioned attacker can exploit the type confusion in GSSAPI authentication handling to compromise the integrity of IMAP authentication exchanges in Mutt versions before 2.3.2.

Affected Products

  • Mutt email client versions prior to 2.3.2
  • Distributions packaging vulnerable Mutt builds with IMAP/GSSAPI support
  • The muttmua/mutt upstream source tree before commit f547a849

Discovery Timeline

  • 2026-05-04 - CVE-2026-43862 published to the National Vulnerability Database (NVD)
  • 2026-05-05 - Last updated in NVD database

Technical Details for CVE-2026-43862

Vulnerability Analysis

The vulnerability stems from improper handling of the GSSAPI security level negotiation in Mutt's IMAP authentication routine. The imap_auth_gss() function declared buf_size as unsigned long, but the GSSAPI protocol specifies a 32-bit value for the security level and maximum message size buffer. On platforms where unsigned long is 64 bits, the size check operates on incorrectly typed data. This represents a type confusion condition [CWE-843].

The mishandled security level can affect the integrity of the authenticated IMAP session. The attack requires high complexity and network-adjacent positioning, such as control of the IMAP server endpoint or a man-in-the-middle posture during connection setup.

Root Cause

The root cause is the use of an architecture-dependent integer type (unsigned long) instead of the protocol-defined fixed-width type (uint32_t) when parsing the GSSAPI security layer response. The size validation logic therefore fails to enforce the intended bounds across the four GSSAPI security level bits, leading to inconsistent enforcement of the negotiated protection level.

Attack Vector

Exploitation requires an attacker to interact with the Mutt client during IMAP GSSAPI authentication. A malicious or compromised IMAP server can return a crafted security level response. Because the buffer size type is mishandled, the security level enforcement may be bypassed for the resulting session, weakening the integrity of subsequent authenticated traffic.

c
   int cflags;
   OM_uint32 maj_stat, min_stat;
   BUFFER *buf1 = NULL, *buf2 = NULL;
-  unsigned long buf_size;
+  uint32_t buf_size;
   int rc, retval = IMAP_AUTH_FAILURE;
 
   if (!mutt_bit_isset (idata->capabilities, AGSSAPI))

Source: GitHub Mutt Commit f547a849 — the patch corrects the buf_size declaration from unsigned long to uint32_t, aligning the variable with the GSSAPI specification.

Detection Methods for CVE-2026-43862

Indicators of Compromise

  • Outbound IMAP connections from user workstations to untrusted or unexpected IMAP servers using GSSAPI authentication.
  • Mutt binary versions reporting a release earlier than 2.3.2 in installed package metadata.
  • Anomalous Kerberos service ticket requests for imap/ service principals from hosts running Mutt.

Detection Strategies

  • Inventory installed Mutt versions across Linux and Unix endpoints and flag any version below 2.3.2.
  • Monitor IMAP traffic for GSSAPI security layer negotiations terminating against non-corporate mail servers.
  • Correlate process execution of mutt with outbound TCP/143 or TCP/993 traffic to external destinations.

Monitoring Recommendations

  • Capture endpoint telemetry for Mutt process launches and the IMAP servers contacted during each session.
  • Alert on Kerberos authentication failures or downgrades involving the IMAP service principal.
  • Track package management events that install or update Mutt to confirm patched versions are deployed.

How to Mitigate CVE-2026-43862

Immediate Actions Required

  • Upgrade Mutt to version 2.3.2 or later on all systems where it is installed.
  • Apply distribution-provided security updates that include the upstream commit f547a849.
  • Restrict Mutt clients to authenticated IMAP servers under organizational control.

Patch Information

The upstream fix is published in the muttmua/mutt repository as commit f547a849cdacb512800a5f477c27de217e1c8151. The patch redefines buf_size in imap/auth_gss.c from unsigned long to uint32_t, ensuring the GSSAPI security level size check uses the correct fixed-width type. Linux distribution maintainers have backported this change to packaged Mutt builds; consult vendor advisories for distribution-specific package versions.

Workarounds

  • Disable GSSAPI authentication in Mutt and use an alternative IMAP authentication mechanism such as TLS client certificates or SASL PLAIN over TLS.
  • Configure Mutt to connect only to trusted IMAP servers using imap_authenticators restrictions.
  • Route Mutt IMAP traffic through a corporate VPN or mail gateway to limit exposure to untrusted networks.
bash
# Configuration example: disable GSSAPI in ~/.muttrc until patched
set imap_authenticators="login:plain"
set ssl_force_tls=yes
set ssl_starttls=yes

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechMutt

  • SeverityLOW

  • CVSS Score3.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-843
  • Technical References
  • GitHub Mutt Commit Changes
  • Related CVEs
  • CVE-2026-43864: Mutt NULL Pointer Dereference Flaw

  • CVE-2026-43859: Mutt IMAP Privilege Escalation Vulnerability

  • CVE-2026-43863: Mutt Email Client 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