The CVSS 9.0 score paired with a 0.01452 EPSS for CVE-2026-71471 isn't a contradiction—it's a signal that this vulnerability lives in a threat model the EPSS model wasn't built to capture. EPSS models opportunistic external exploitation; this CVE describes a privileged-insider or compromised-credential scenario where the attacker already controls the hub. That changes the analytical frame entirely.
The actual vulnerability isn't the ImageOverride field—it's the hub-spoke trust architecture that treats hub compromise as an acceptable precondition. ImageOverride exists precisely to let administrators push custom images across managed clusters. A hub administrator can already deploy arbitrary container images everywhere the hub manages; that's the feature working as designed. The question isn't whether ImageOverride should be gated (it should be)—it's whether hub administrative access is the appropriate authorization boundary for fleet-wide code execution.
The patch will likely add RBAC constraints around ImageOverride. Before you accept the CVE as resolved, verify what actually changed. The critical diagnostic: can any single hub-side operation still trigger fleet-wide RCE? If a hub admin with the right permissions can still push arbitrary images to all managed clusters, the blast radius is unchanged—only the privilege boundary moved. You've gained complexity without reducing risk.
The deeper problem is structural. Hub-as-superuser is a recurring engineering decision across multi-cluster tools, and each individual constraint passes review because it does narrow access. What never gets examined is the cumulative effect: seventeen features, each gated on hub-level permissions, each capable of fleet-wide code execution. That's not seventeen vulnerabilities—that's one trust architecture.
Your operational next steps: review what other hub-side operations map to fleet-wide RCE, assess whether your hub credentials are exposed to supply chain risks or lateral movement, and treat 'hub admin access' as a blast radius question rather than a discrete permission set. The authorization model for multi-cluster tools should enforce explicit least-privilege delegation, not hub-as-superuser.