From 944b55738e7f9685865d5298248b7fbd7380749e Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 21 Sep 2022 14:47:41 +0200 Subject: luci-mod-system: sshkeys.js: prevent XSS through pubkey comments Ensure to not display public key comments verbatim in order to prevent injection of markup. Reported-by: Eric McDonald Signed-off-by: Jo-Philipp Wich --- .../luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/luci-mod-system/htdocs/luci-static/resources/view') diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js index a2f0bef9b4..8b12b2311e 100644 --- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js @@ -112,7 +112,7 @@ function renderKeyItem(pubkey) { click: isReadonlyView ? null : removeKey, 'data-key': pubkey.src }, [ - E('strong', pubkey.comment || _('Unnamed key')), E('br'), + E('strong', [ pubkey.comment || _('Unnamed key') ]), E('br'), E('small', [ '%s, %s'.format(pubkey.type, pubkey.curve || _('%d Bit').format(pubkey.bits)), pubkey.options ? E([], [ -- cgit v1.2.3