Properly escape HTML entities in sampleDelim to avoid XSS issue

This commit is contained in:
GCHQDeveloper581 2026-04-04 11:31:40 +01:00
parent 7d9fd4b26f
commit 57fbc51361
No known key found for this signature in database
GPG Key ID: 6222E059A3DF595C

View File

@ -99,7 +99,7 @@ class OffsetChecker extends Operation {
} }
} }
return outputs.join(sampleDelim); return outputs.join(Utils.escapeHtml(sampleDelim));
} }
} }