CVE-2026-72632 is being labeled an information disclosure (CWE-203), but that classification obscures what actually happened: Kibana's Fleet agent listing endpoint accepted caller-supplied filter expressions and evaluated them against Elasticsearch using Kibana's own internal administrative credentials, not the caller's privileges. This turned a mundane listing endpoint into an oracle — an attacker could submit filter conditions against the stored API key field and infer characters one at a time from the match/no-match response (reported as a count). The attacker needs no special permissions beyond reaching the endpoint; they leverage Kibana's elevated session as a proxy for their own access.

The vulnerability isn't that a sensitive field was returned in a response — it's that filter evaluation happened in the wrong privilege context. Any endpoint that accepts filter or search expressions and executes them with backend administrative privileges carries this same risk, regardless of whether the response body is sanitized. If the mechanism persists, the oracle simply relocates to the next high-value field.

What you should do: audit your Kibana (and similar aggregation platforms) for endpoints that accept caller-supplied filter, search, or query expressions and execute them against the backend with elevated session privileges. The test isn't whether the response contains sensitive fields — it's whether filter evaluation respects the caller's privilege context rather than the application's. Prioritize Fleet and agent management endpoints, as these commonly require Kibana to proxy backend operations and are most likely to have inherited elevated session patterns.

The EPSS score of 0.00234 measures exploitability in the wild, not impact severity. A recovered API key here may grant fleet-wide administrative access, enabling lateral movement across your deployment — the blast radius is the real concern, not the extraction difficulty. Neither EPSS nor CVSS adequately models attacker economics when credentials enable further compromise.