From 159fcfb2faa03051b24f8ea50891ab5f9f23e507 Mon Sep 17 00:00:00 2001 From: Michael Zalimeni Date: Mon, 8 Apr 2024 17:30:04 -0400 Subject: [PATCH] security: ignore test and internal tool modules (#20963) --- scan.hcl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scan.hcl b/scan.hcl index d9842018c9..415a794a4f 100644 --- a/scan.hcl +++ b/scan.hcl @@ -31,6 +31,13 @@ repository { vulnerabilites = [ "GO-2024-2631", # go-jose/v3@v3.0.3 (false positive) ] + paths = [ + "internal/tools/proto-gen-rpc-glue/e2e/consul/*", + "test/integration/connect/envoy/test-sds-server/*", + "test/integration/consul-container/*", + "testing/deployer/*", + "test-integ/*", + ] } } }