Answer in brief
CVE-2026-72923 records a Unknown severity vulnerability in Microsoft.OpenApi.YamlReader/Readers vulnerable to denial of service via YAML alias expansion. The current sources do not mark it as known exploited. The current feed maps Microsoft/OpenApi.Readers (generic), Microsoft/OpenApi.Readers (generic), Microsoft/OpenApi.YamlReader (generic), Microsoft/OpenApi.YamlReader (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Microsoft/OpenApi.Readers (generic), Microsoft/OpenApi.Readers (generic), Microsoft/OpenApi.YamlReader (generic), Microsoft/OpenApi.YamlReader (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Microsoft/OpenApi.Readersgeneric | >=0 <1.6.31 | 1.6.31 |
| Microsoft/OpenApi.Readersgeneric | >=0 <1.6.30 | 1.6.30 |
| Microsoft/OpenApi.YamlReadergeneric | >=2.0.0-preview.11 <2.12.2 || >=3.0.0 <3.10.2 | 2.12.2, 3.10.2 |
| Microsoft/OpenApi.YamlReadergeneric | >=2.0.0-preview.11 <2.12.0 || >=3.0.0 <3.10.0 | 2.12.0, 3.10.0 |
Published upstream
Sep 8, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Sep 8, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Sep 8, 2026
In Microsoft.OpenApi.YamlReader from 2.0.0-preview.11 until 2.12.0 and from 3.0.0 until 3.10.0, and in Microsoft.OpenApi.Readers prior to 1.6.30, a small YAML OpenAPI document containing nested anchors and aliases can cause uncontrolled resource consumption when parsed through the public YAML reader APIs. YAML is parsed through SharpYaml, which represents aliases as shared nodes in a directed acyclic graph, so the parsed YAML graph stays small, but converting that graph to System.Text.Json.Nodes.JsonNode requires every alias to be materialized as an independent node because a JsonNode cannot be attached to multiple parents. Without a bound on that conversion work, a document with N nested anchors each referenced k times can require k^N materialized JSON nodes, leading to excessive memory allocation and process termination through out-of-memory conditions, a billion laughs style denial of service. The patched versions bound the YAML-to-JSON conversion by node count and nesting depth and report an OpenApiDiagnostic error instead of expanding without limit. This vulnerability is fixed in Microsoft.OpenApi.YamlReader 2.12.0 and 3.10.0, and Microsoft.OpenApi.Readers 1.6.30.
Quoted source text, attributed separately from HOL analysis.