The primary vulnerability stems from the buildTabTransclude function in TabberNeueHooks.php. In the original code (introduced in d8c3db4), $pageName (user-controlled input) was directly interpolated into an HTML error message via sprintf() without escaping. This was patched in f229cab by adding Sanitizer::escapeHtmlAllowEntities(). The PoC demonstrates this vector by injecting a <script> tag via the page name parameter. The other two reported issues were deemed invalid/unreachable: (1) recursiveTagParse usage in Tabber.php is mitigated by MediaWiki's parser sanitization, and (2) TabberParsoid.php's code was unused. The confidence is high due to the reproducible PoC and explicit patch addressing this specific code path.