Symfony\Component\Yaml\Parser resolves YAML aliases (*anchor) during parsing. Aliases that reference collections (arrays, stdClass, TaggedValue-wrapped collections) can themselves point to other collections containing aliases, creating exponential expansion at resolution time. A small input can blow up into a multi-gigabyte structure and exhaust memory: the classic "Billion Laughs" denial-of-service against any parser exposed to untrusted YAML.
The Parser now counts collection alias resolutions in a shared ParserState object, with a default limit of 128, following the SnakeYAML model. Scalar aliases remain unrestricted since they cannot drive exponential growth. The limit is configurable via a new $maxAliasesForCollections argument on Parser::__construct(), Yaml::parse() and Yaml::parseFile(). A new Yaml::PARSE_EXCEPTION_ON_ALIAS flag also rejects all aliases outright when parsing fully untrusted input.
The patch for this issue is available here for branch 5.4.
Symfony would like to thank Pietro Tirenna (Shielder) for reporting the issue and Nicolas Grekas for fixing it.
No EPSS score in this advisory JSON.
| Base score | Version | Severity | Vector |
|---|---|---|---|
| 2.7 | 4.0 | — |
|
| Type | Value |
|---|---|
| GHSA | GHSA-4qpc-3hr4-r2p4 ↗ |
| CVE | CVE-2026-45304 ↗ |
| CWE id | Name |
|---|---|
| CWE-776 | Improper Restriction of Recursive Entity References in DTDs ('XML Entity Expansion') |
Vulnerable version ranges and first patched releases as published by GitHub.
| Ecosystem | Package | Vulnerable range | First patched | Vulnerable functions |
|---|---|---|---|---|
| composer | symfony/yaml | < 5.4.52 | 5.4.52 | — |
| composer | symfony/symfony | < 5.4.52 | 5.4.52 | — |
| composer | symfony/symfony | >= 6.0.0, < 6.4.40 | 6.4.40 | — |
| composer | symfony/symfony | >= 7.0.0, < 7.4.12 | 7.4.12 | — |
| composer | symfony/symfony | >= 8.0.0, < 8.0.12 | 8.0.12 | — |
| composer | symfony/yaml | >= 6.0.0, < 6.4.40 | 6.4.40 | — |
| composer | symfony/yaml | >= 7.0.0, < 7.4.12 | 7.4.12 | — |
| composer | symfony/yaml | >= 8.0.0, < 8.0.12 | 8.0.12 | — |