2
0
mirror of https://github.com/gchq/CyberChef synced 2026-02-05 03:03:14 +00:00

Merge pull request #1549 from brun0ne/fix-xss

Fixed xss in addOperation
This commit is contained in:
a3957273
2024-02-04 01:41:56 +00:00
committed by GitHub

View File

@@ -396,7 +396,11 @@ class RecipeWaiter {
const item = document.createElement("li");
item.classList.add("operation");
item.innerHTML = name;
if (this.app.operations[name] != null) {
item.innerHTML = name;
}
this.buildRecipeOperation(item);
document.getElementById("rec-list").appendChild(item);