From 45a0377d76b0813c6207ae926fb886b5897dd9c9 Mon Sep 17 00:00:00 2001 From: Matteo Pace Date: Thu, 23 Nov 2023 10:39:33 +0100 Subject: [PATCH] chore: adds comment --- internal/corazawaf/transaction.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/corazawaf/transaction.go b/internal/corazawaf/transaction.go index d8556acb8..86b39b832 100644 --- a/internal/corazawaf/transaction.go +++ b/internal/corazawaf/transaction.go @@ -326,6 +326,7 @@ func (tx *Transaction) AddRequestHeader(key string, value string) { } case "cookie": // Cookies use the same syntax as GET params but with semicolon (;) separator + // noURLUnescape is used to avoid implicitly performing an URL decode on the cookies values := urlutil.ParseQuery(value, ';', noURLUnescape) for k, vr := range values { for _, v := range vr {