diff --git a/src/modules/hunting/etcd.py b/src/modules/hunting/etcd.py index 1461a72..a9d8e1a 100644 --- a/src/modules/hunting/etcd.py +++ b/src/modules/hunting/etcd.py @@ -87,7 +87,7 @@ class EtcdRemoteAccess(Hunter): "{protocol}://{host}:{port}/v2/keys".format(protocol=self.protocol, host=self.event.host, port=2379), verify=False) self.keys_evidence = r.content if r.status_code == 200 and r.content != '' else False - return self.version_evidence + return self.keys_evidence except requests.exceptions.ConnectionError: return False