From 02236ca54bca210c024e1ebbd4ccd2ca15e14a98 Mon Sep 17 00:00:00 2001 From: vishwaksen-1 Date: Wed, 11 Feb 2026 19:27:29 +0530 Subject: [PATCH 1/2] fix: escape + in Base64 string regex pattern --- data-manipulation/encoding/base64/reference-base64-string.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-manipulation/encoding/base64/reference-base64-string.yml b/data-manipulation/encoding/base64/reference-base64-string.yml index b1eb67f22..52ba55ece 100644 --- a/data-manipulation/encoding/base64/reference-base64-string.yml +++ b/data-manipulation/encoding/base64/reference-base64-string.yml @@ -17,4 +17,4 @@ rule: - 074072B261FC27B65C72671F13510C05 - 5DB2D2BE20D59AA0BE6709A6850F1775 features: - - string: /ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/ + - string: /ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\+/ From 39663cd22269f7ecb97bfc8667dceb238c0c7e7f Mon Sep 17 00:00:00 2001 From: vishwaksen-1 Date: Thu, 12 Feb 2026 10:10:27 +0530 Subject: [PATCH 2/2] fix: update Base64 string regex to remove escape character --- data-manipulation/encoding/base64/reference-base64-string.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-manipulation/encoding/base64/reference-base64-string.yml b/data-manipulation/encoding/base64/reference-base64-string.yml index 52ba55ece..254aeb8ee 100644 --- a/data-manipulation/encoding/base64/reference-base64-string.yml +++ b/data-manipulation/encoding/base64/reference-base64-string.yml @@ -17,4 +17,4 @@ rule: - 074072B261FC27B65C72671F13510C05 - 5DB2D2BE20D59AA0BE6709A6850F1775 features: - - string: /ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\+/ + - string: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" \ No newline at end of file