Deprecation: #76164 - Deprecate RemoveXSS
See forge#76164
Description
Due to the wrong approach of RemoveXSS it is not 100% secure and does not keep its promise. The following methods have been marked as deprecated:
- \TYPO3\- CMS\ - Core\ - Utility\ - General - Utility:: - remove - XSS - () 
- \Remove- XSS:: - process - () 
- \TYPO3\- CMS\ - Form\ - Domain\ - Filter\ - Remove - Xss - Filter 
Impact
Using the mentioned methods will trigger a deprecation log entry.
Affected Installations
Instances that use any of these methods.
Migration
Implement a proper encoding by yourself. Use 
        htmlspecialchars in the
context of HTML or 
        General in the context of JavaScript.