The patches for CVE-2010-5100 (commits 9bb2fe6, cf97494, e892f0a) consistently add htmlspecialchars() to variables like TYPO3_db_username, TYPO3_db_host, and TYPO3_db when outputting them in the Install Tool's HTML. These variables were previously embedded without sanitization in functions like stepOutput() and checkDatabase(), which handle the rendering of user-facing configuration data. Since authenticated attackers could manipulate these values (e.g., via database configuration inputs), the lack of escaping in these functions directly enabled XSS. The high confidence stems from the explicit addition of sanitization in the patches targeting these specific code paths.