mirror of
https://github.com/gchq/CyberChef.git
synced 2026-04-06 14:21:06 -07:00
Properly escape HTML entities in sampleDelim to avoid XSS issue (#2307)
Some checks failed
Master Build, Test & Deploy / main (push) Has been cancelled
Some checks failed
Master Build, Test & Deploy / main (push) Has been cancelled
This commit is contained in:
parent
33314ac658
commit
167cc398ce
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ class OffsetChecker extends Operation {
|
|||
}
|
||||
}
|
||||
|
||||
return outputs.join(sampleDelim);
|
||||
return outputs.join(Utils.escapeHtml(sampleDelim));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue