diff --git a/src/www/diag_authentication.php b/src/www/diag_authentication.php index 549248d5e..ed37b63cb 100644 --- a/src/www/diag_authentication.php +++ b/src/www/diag_authentication.php @@ -68,8 +68,8 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET') { if (is_array($attr_value)) { $attr_value = implode(",", $attr_value); } - $attr_value = str_replace("\n", "
", $attr_value); - $savemsg .= "{$attr_name} => {$attr_value}
"; + $attr_value = str_replace("\n", "
", htmlspecialchars($attr_value)); + $savemsg .= htmlspecialchars($attr_name) . " => {$attr_value}
"; } } else { $input_errors[] = gettext("Authentication failed.");