From bc00bbd058ccb1ce491de2ce01e08463d155f29b Mon Sep 17 00:00:00 2001 From: Yehuda Chikvashvili Date: Wed, 2 Oct 2019 17:32:09 +0300 Subject: [PATCH] Change CVE hunters description (#183) Make CVE hunters description more accurate --- src/modules/hunting/cves.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/hunting/cves.py b/src/modules/hunting/cves.py index 46a220d..ce3dc36 100644 --- a/src/modules/hunting/cves.py +++ b/src/modules/hunting/cves.py @@ -139,7 +139,7 @@ class CveUtils: @handler.subscribe_once(K8sVersionDisclosure) class K8sClusterCveHunter(Hunter): """K8s CVE Hunter - Checks if Node is running a Kubernetes version vulnerable to known CVEs + Checks if Node is running a Kubernetes version vulnerable to specific important CVEs """ def __init__(self, event): @@ -162,7 +162,7 @@ class K8sClusterCveHunter(Hunter): @handler.subscribe(KubectlClientEvent) class KubectlCVEHunter(Hunter): """Kubectl CVE Hunter - Checks if the kubectl client is vulnerable to known CVEs + Checks if the kubectl client is vulnerable to specific important CVEs """ def __init__(self, event): self.event = event