Skip to content

Commit

Permalink
xss for client name
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeTWC1984 committed Mar 23, 2024
1 parent a1e2dd9 commit 21791b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ app.extend({

// allow visible app name to be changed in config
this.name = config.name;
$('#d_header_title').html( '<b>' + this.name + '</b>' );
$('#d_header_title').html( '<b>' + filterXSS(this.name) + '</b>' );

// hit the manager server directly from now on
this.setmanagerHostname( resp.manager_hostname );
Expand Down

0 comments on commit 21791b6

Please sign in to comment.