From b0b8ba9a5ebd4c45eca3e9fad1a67e8fe36a9a46 Mon Sep 17 00:00:00 2001 From: Liz Rice Date: Fri, 13 Jul 2018 13:22:55 -0400 Subject: [PATCH] Description tweaks --- src/modules/discovery/kubelet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/discovery/kubelet.py b/src/modules/discovery/kubelet.py index 3eed9ba..b5d3f2a 100644 --- a/src/modules/discovery/kubelet.py +++ b/src/modules/discovery/kubelet.py @@ -12,12 +12,12 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) """ Services """ class ReadOnlyKubeletEvent(Service, Event): - """Can expose specific handlers which reveals information about the node/cluster""" + """Could expose endpoints which reveal information about the node/cluster""" def __init__(self): Service.__init__(self, name="Kubelet API (readonly)") class SecureKubeletEvent(Service, Event): - """The kubelet ensures that all containers on the node are running and healthy""" + """Could expose endpoints which allow the attacker to access the node""" def __init__(self, cert=False, token=False): self.cert = cert self.token = token