The CVSS 9.4 score for CVE-2026-73296 is technically accurate—unauthenticated access to Android device control primitives is genuinely severe—but it conflates technical severity with operational risk. The vulnerability requires TCP reachability to ports 8020/8021 on systems running the UFO framework's mobile MCP servers with ADB over TCP enabled. This is not a default installation; it describes developer workstations, test infrastructure, or remote device farms with explicit configuration. In typical deployments, these services bind to localhost or internal networks, which explains the EPSS of 0.02609—the probability of active exploitation is low because the prerequisites are non-trivial to satisfy at scale.

The real question is what version 3.0.8 actually changed. If it added certificate-based or token authentication to these endpoints, the CVE represents a genuine production vulnerability now remediated. If it merely changed default bindings from 0.0.0.0 to localhost or added documentation warnings, you're looking at a vulnerability "fixed" without fixing—the vulnerable code path remains intact for anyone who configured networked access before updating. This distinction matters because developer tooling advertising cross-device automation gets embedded in CI/CD pipelines, device farms, and automated testing infrastructure where production pressure pushes toward network exposure.

The MCP abstraction layer compounds the problem. Developers using MCP expect the protocol to handle security semantics; device control primitives become abstract actions (screenshot, tap, type_text) rather than network-exposed Android debug interfaces. This creates cognitive distance from the actual syscall surface—invisible exposure that the CVE description doesn't surface.

Treat this as a high-severity vulnerability in your asset inventory but prioritize verification: confirm whether 3.0.8 adds authentication or only changes defaults, audit any pre-3.0.8 configurations that explicitly bound MCP servers to non-localhost addresses, and treat the disclosure itself as reconnaissance—attackers now have a precise recipe (ports 8020/8021, ADB over TCP, device control primitives) that may enumerate exposures previously off-radar.