Skip to content
Permalink
Browse files Browse the repository at this point in the history
fix: [security] XSS through network history name
- as reported by Cyber Controls from SIX Group
  • Loading branch information
mokaddem committed Jan 18, 2023
1 parent 48997f4 commit 72c5424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/webroot/js/action_table.js
Expand Up @@ -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);
Expand Down

0 comments on commit 72c5424

Please sign in to comment.