fix: [security] XSS through network history name

- as reported by Cyber Controls from SIX Group
pull/8906/head
Sami Mokaddem 2023-01-18 15:00:50 +01:00
parent 48997f4bf8
commit 72c5424034
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ class ActionTable {
tr.id = "tr_" + this.__uuidv4();
for (var col of row) {
var td = document.createElement('td');
td.innerHTML = col;
td.textContent = col;
tr.appendChild(td);
}
this.__add_action_button(tr);