CVE-2026-55619
MediumCVSS 5.3Exploitation Probability (EPSS)
Low risk22th percentile - higher than 22% of all known CVEs
Summary
eml_parser before version 3.0.2 contains a stack overflow vulnerability in the header_fetch_parse function when parsing nested CFWS constructs in email headers. An attacker can send a specially crafted EML file that causes an unhandled RecursionError and aborts parsing of the entire message. This can disrupt SOC pipelines processing untrusted EML files.
Risk Assessment
The risk is the potential disruption of security operations (SOC) by sending a malicious EML file, which may lead to delays in analysis or missed threats.
Recommendation
It is recommended to immediately update eml_parser to version 3.0.2 or later, which includes a fix for this vulnerability.
Other vulnerabilities in eml_parser
See all- CVE-2026-55620High
eml_parser before version 3.0.2 has a quadratic-time regex-based loop in the noparenthesis function when processing Received: headers with nested parentheses. A single header with 5000 nested parentheses causes about 1.3 seconds of CPU saturation per message, and doubling the nesting depth quadruples the running time. Attackers can submit small EML files that consume multiple seconds of processing time, causing latency and potential outages.
- CVE-2026-55618Medium
eml_parser before version 3.0.2 contains a vulnerability in the clean_found_uri function that incorrectly validates URLs before unescaping HTML entities for colon, slash, or period characters. As a result, valid encoded URLs and their hostnames are rejected and omitted from extracted URL and domain lists. Email security gateways and SOC pipelines using these lists as indicators of compromise may fail to submit hidden URLs to threat intelligence feeds, reputation services, or sandboxes, allowing malicious links to bypass inspection.
- CVE-2026-44844Medium
In eml_parser before version 3.0.1, the EmlParser.get_raw_body_text() function recursively processes nested message/rfc822 attachments without any depth limit. An attacker can supply a crafted EML file with approximately 120 nested parts, causing an unhandled RecursionError and aborting parsing.
Original NVD description (English source)
eml_parser serves as a python module for parsing eml files and returning various information found in the e-mail as well as computed information. Prior to 3.0.2, eml_parser.parser.HeaderParser.header_fetch_parse in eml_parser/parser.py uses email.utils.getaddresses() to parse address-bearing e-mail headers. A deeply nested CFWS comment construct exhausts the standard-library recursive descent parser's call stack and raises RecursionError, which is not caught and therefore aborts parsing of the entire message. An attacker can disrupt SOC pipelines that process untrusted EML files, although callers already need to handle exceptions from malformed or pathological messages. This issue is fixed in version 3.0.2.

