CVE-2026-48747: Symfony: Mailomat Mailer Webhook Parser Reads the HMAC Algorithm from the Request: Signature Algorithm Downgrade
Description
Symfony\Component\Mailer\Bridge\Mailomat\Webhook\MailomatRequestParser::validateSignature() parses the X-MOM-Webhook-Signature request header as algo=signature and passes the wire-supplied $algo directly to hashhmac() when verifying the request against the configured webhook secret. The request therefore selects the HMAC primitive used to authenticate it.
PHP's hashhmac() enforces only that the chosen algorithm is HMAC-compatible. That set still includes primitives with known cryptanalysis (md4, md5, ripemd128, tiger128,3, … — e.g. existential forgery of HMAC-MD4, Contini & Yin, ASIACRYPT 2006). This is the canonical algorithm-confusion shape, analogous to JWT alg=none / alg=HS256 downgrades: any future cryptographic weakness in any HMAC primitive PHP exposes becomes immediately exploitable against a Mailomat webhook receiver, the moment an attacker is in a position to compute a signature for that primitive, without a code change on the Symfony side.
Mailomat's documented webhook security pins SHA-256; the parser did not.
Resolution
MailomatRequestParser::validateSignature() now requires the signature header to be of the form sha256=<hex> and verifies the signature with HMAC-SHA256 keyed by the configured secret using a constant-time comparison. Any other algorithm declared on the wire (including the HMAC primitives PHP would otherwise accept) is rejected.
The patch for this issue is available here for branch 7.4 (and forward-ported to 8.0 and 8.1).
Credits
Symfony would like to thank Omar Alshammari, Essam Alanazi and Alwaleed Alshammari for reporting the issue and Nicolas Grekas for providing the fix.
Other sources
Symfony is a PHP framework for web and console applications and a set of reusable PHP components. Prior to 7.4.13 and 8.0.13, MailomatRequestParser::validateSignature() parsed X-MOM-Webhook-Signature as algo=signature and passed the request-selected algorithm to hashhmac(), allowing a signature algorithm downgrade instead of enforcing Mailomat's documented SHA-256 webhook signature. This issue is fixed in versions 7.4.13 and 8.0.13.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
composer/symfony/symfonyto a version that resolves this vulnerability.Fixed in 8.0.13 - Upgrade
Upgrade
composer/symfony/symfonyto a version that resolves this vulnerability.Fixed in 7.4.13 - Upgrade
Upgrade
composer/symfony/mailomat-mailerto a version that resolves this vulnerability.Fixed in 8.0.13 - Upgrade
Upgrade
composer/symfony/mailomat-mailerto a version that resolves this vulnerability.Fixed in 7.4.13 - Upgrade
Upgrade
symfony/symfonyto a version that resolves this vulnerability.Fixed in 7.4.13 - Upgrade
Upgrade
symfony/symfonyto a version that resolves this vulnerability.Fixed in 8.0.13 - Configuration
Update Symfony so MailomatRequestParser::validateSignature() requires the X-MOM-Webhook-Signature header to be in the form `sha256=<hex>` and verifies using HMAC-SHA256 keyed by the configured webhook secret with constant-time comparison.
Symfony Mailer Bridge: MailomatRequestParser::validateSignature() X-MOM-Webhook-Signature format = sha256=<hex> (not algo=signature)
Event History
Frequently Asked Questions
What is the severity of CVE-2026-48747?
CVE-2026-48747 has a risk score of 44, indicating a moderate severity level.
How do I fix CVE-2026-48747?
To fix CVE-2026-48747, update to the patched version of Symfony that addresses the issue regarding the validation of the webhook signature.
What systems are affected by CVE-2026-48747?
CVE-2026-48747 affects systems using the Symfony Mailer component, specifically those implementing mailomat instead of using predefined algorithms.
What vulnerability does CVE-2026-48747 introduce?
CVE-2026-48747 introduces a potential security vulnerability where an attacker can manipulate the `X-MOM-Webhook-Signature` to bypass signature validation.
When was CVE-2026-48747 published?
CVE-2026-48747 was published on June 15, 2026.