From f9e1a71028ed085ea524e8767b4cd08584fc4d7b Mon Sep 17 00:00:00 2001 From: Ronni Skansing Date: Wed, 5 Nov 2025 21:15:21 +0100 Subject: [PATCH] fix update bug Signed-off-by: Ronni Skansing --- backend/service/allowDeny.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/service/allowDeny.go b/backend/service/allowDeny.go index a4ab6b0..99f3f33 100644 --- a/backend/service/allowDeny.go +++ b/backend/service/allowDeny.go @@ -127,6 +127,9 @@ func (s *AllowDeny) Update( if v, err := incoming.Cidrs.Get(); err == nil { current.Cidrs.Set(v) } + if v, err := incoming.JA4Fingerprints.Get(); err == nil { + current.JA4Fingerprints.Set(v) + } // allow can not be changed as it could mess up a campaign that // uses multiple entries as all entries must be allow or deny.