Remove space character from potential attack vectors

This commit is contained in:
Stephen Abello
2026-02-25 11:58:44 +01:00
parent e0dfab0575
commit 43fc6f8d4e

View File

@@ -20,7 +20,7 @@ use utils;
*/
class ExportHelper
{
public const EXCEL_FORMULA_CHARACTERS = ['=', '', '+', '', '-', '', '@', '', '|', ' ', "\t", "\n", "\r"];
public const EXCEL_FORMULA_CHARACTERS = ['=', '', '+', '', '-', '', '@', '', '|', "\t", "\n", "\r"];
public static function GetAlertForExcelMaliciousInjection()
{