From 5eea09a81f96cc4b3e13c165f165ffa25f65e055 Mon Sep 17 00:00:00 2001 From: Marta Bondyra Date: Tue, 15 Oct 2024 09:56:19 +0200 Subject: [PATCH] [Graph] Escape backslash characters in the graph encode functions --- x-pack/plugins/graph/public/helpers/kql_encoder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/graph/public/helpers/kql_encoder.ts b/x-pack/plugins/graph/public/helpers/kql_encoder.ts index 25ac6b9c4280d..e1eeb0f2dc35b 100644 --- a/x-pack/plugins/graph/public/helpers/kql_encoder.ts +++ b/x-pack/plugins/graph/public/helpers/kql_encoder.ts @@ -10,7 +10,7 @@ import rison from '@kbn/rison'; import { Workspace } from '../types'; function escapeQuotes(str: string) { - return str.replace(/"/g, '\\"'); + return str.replace(/\\/g, '\\\\').replace(/"/g, '\\"'); } export function asKQL(workspace: Workspace, joinBy: 'and' | 'or') {