The 9.8 severity on CVE-2026-71558 warrants scrutiny. This vulnerability in Apache Fory's polymorphic smart-pointer deserialization allows type confusion during deserialization, potentially enabling arbitrary code execution. However, exploitation is gated behind a specific feature: polymorphic smart-pointer deserialization requires explicit type registration, factory mechanisms, and runtime type information — a deliberate architectural choice, not a default configuration. If your application doesn't use this feature, you're not affected.

The EPSS score of 0.00211 reflects what the CVSS calculation ignores: this is a narrow, feature-gated attack surface that demands both reaching the code path AND bypassing type compatibility validation. The bypass mechanism likely resides in the type registry lookup or factory instantiation logic, not in primitive value deserialization — the 1.5.0 fix probably restructured type validation rather than patching a single input validation gap.

The critical question isn't whether 9.8 is overated — it's why this attack surface exists in a type-safe serialization library at all. Polymorphic deserialization creates inherent tension between type safety (knowing what you're deserializing) and runtime type resolution (deliberately NOT knowing). Every C++ serialization library that's added polymorphic support — Boost.Serialization, MARS, Cereal — has produced type confusion CVEs. This is architectural, not coincidental.

What you should do: First, determine whether your codebase uses polymorphic smart-pointer deserialization — check for explicit type registration calls and factory mechanisms. If you don't need it, disable it. If you do need it, prioritize the 1.5.0 upgrade. But understand that the fix may have introduced new factory mechanisms that will become the next attack surface — monitor the Apache Fory project for subsequent security advisories. The CVSS captures worst-case outcome severity; the EPSS captures realistic likelihood. Trust the EPSS more than the numerical rating for prioritization decisions.