Skip to content
Permalink
Browse files Browse the repository at this point in the history
fix XSS issue in log tailing
  • Loading branch information
ne-svandahm committed Dec 6, 2021
1 parent 4c7201c commit 5abbcd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent/listener/templates/tail.html
Expand Up @@ -67,7 +67,7 @@
$('.btn-apply').click(function() {
var name = $('input[name="name"]').val();
query_string = "name=" + name;
$('.name').html(name);
$('.name').text(name);

// Restart the websocket
ws.close();
Expand Down

0 comments on commit 5abbcd7

Please sign in to comment.