The EPSS score of 0.00118 for this unauthenticated XSS in Geo Mashup (CVSS 7.1) is the signal you should actually pay attention to—not the severity itself. This gap tells you the exploitability is low not because the bug is hard to reach, but because attackers have seen this exact pattern in WordPress geospatial plugins repeatedly over the past eight years. They've moved on to higher-yield targets.
Geo Mashup reflects user-supplied coordinates into JavaScript contexts without output escaping, and the vulnerable code path likely lives in a legacy rendering branch—possibly behind deprecated template options or backward-compatibility layers that the maintainers kept alive out of fear of breaking existing installations. This is the sediment layer where these vulnerabilities accumulate: the main rendering path gets secured during refactors, but the old path survives untouched.
Your priority checklist for this CVE is straightforward: first, verify whether you're running any legacy map templates or custom rendering overrides that might invoke the vulnerable branch. Second, check your Geo Mashup version against the patch—any version predating the fix carries the flaw in code paths you may not even be using today but that remain present in the installation. Third, review any AJAX handlers or template filters that process coordinate data, because these are the likely sinks. Finally, audit other geospatial plugins on the same WordPress instance; the genealogical record shows this exact vulnerability class has recurred at least four times across different plugins handling the same data flow.
The structural reality is this: WordPress plugin security guidance has documented this failure mode for years, but documentation without enforcement produces the same result repeatedly. The fix isn't better developer intent—it's plugins that render geospatial data through context-aware APIs that make JavaScript escaping the default behavior, not an optional layer that domain experts must remember to apply. Until that structural change arrives, treat every geospatial plugin update as a potential XSS patch and prioritize accordingly.