We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c39117e + 053cfb2 commit 1a0c6f4Copy full SHA for 1a0c6f4
scripts/js/settings-api.js
@@ -115,7 +115,7 @@ $(() => {
115
// Show x-forwarded-for instead of the remote address in italics
116
// and show the remote address in the title attribute
117
if (data.x_forwarded_for !== null) {
118
- $("td:eq(8)", row).html("<em>" + data.x_forwarded_for + "</em>");
+ $("td:eq(8)", row).html("<em>" + utils.escapeHtml(data.x_forwarded_for) + "</em>");
119
$("td:eq(8)", row).attr("title", "Original remote address: " + data.remote_addr);
120
}
121
},
0 commit comments