From a31c10e0ad632de7c52f8062f8380c77b324af96 Mon Sep 17 00:00:00 2001 From: Antoine Ruffino <138585151+a-ruff@users.noreply.github.com> Date: Mon, 30 Oct 2023 16:29:53 +0100 Subject: [PATCH] =?UTF-8?q?Configure=20deduplication=20algorithm=20for=20K?= =?UTF-8?q?ubehunter=20Scan=20and=20kube-bench=20=E2=80=A6=20(#8881)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Configure deduplication algorithm for Kubehunter Scan and kube-bench Scan * Removing step_to_reproduce from HASHCODE_FIELDS_PER_SCANNER --- dojo/settings/settings.dist.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dojo/settings/settings.dist.py b/dojo/settings/settings.dist.py index 82d4303a941..059b366085c 100644 --- a/dojo/settings/settings.dist.py +++ b/dojo/settings/settings.dist.py @@ -1257,6 +1257,8 @@ def saml2_attrib_map_format(dict): 'Popeye Scan': ['title', 'description'], 'Wazuh Scan': ['title'], 'Nuclei Scan': ['title', 'cwe', 'severity'], + 'KubeHunter Scan': ['title', 'description'], + 'kube-bench Scan': ['title', 'vuln_id_from_tool', 'description'], } # Override the hardcoded settings here via the env var @@ -1450,6 +1452,8 @@ def saml2_attrib_map_format(dict): 'Wpscan': DEDUPE_ALGO_HASH_CODE, 'Popeye Scan': DEDUPE_ALGO_HASH_CODE, 'Nuclei Scan': DEDUPE_ALGO_HASH_CODE, + 'KubeHunter Scan': DEDUPE_ALGO_HASH_CODE, + 'kube-bench Scan': DEDUPE_ALGO_HASH_CODE, } # Override the hardcoded settings here via the env var