From e3a74b577eb4574540317cbb1d7d1fec33ee833f Mon Sep 17 00:00:00 2001 From: Liz Rice Date: Tue, 3 Jul 2018 17:00:19 +0100 Subject: [PATCH 1/2] Improve help message --- kube-hunter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kube-hunter.py b/kube-hunter.py index 7b9121a..d9ea26c 100644 --- a/kube-hunter.py +++ b/kube-hunter.py @@ -5,7 +5,7 @@ import logging import sys import time -parser = argparse.ArgumentParser(description='Kube-Hunter, Hunter for weak Kubernetes cluster') +parser = argparse.ArgumentParser(description='Kube-Hunter - hunts for security weaknesses in Kubernetes clusters') parser.add_argument('--pod', action="store_true", help="set hunter as an insider pod") parser.add_argument('--cidr', type=str, help="set manual cidr to scan, example: 192.168.0.0/16") parser.add_argument('--quick', action="store_true", help="scanning only known small sections of the subnet") From 76bd6d456ec34c3d31d14773f67e885d35ff2a90 Mon Sep 17 00:00:00 2001 From: Liz Rice Date: Tue, 3 Jul 2018 17:10:09 +0100 Subject: [PATCH 2/2] Minor English corrections in the README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9d27420..e2e76cf 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # Kube Hunter --- -Kube Hunter is an open source tool maintained by Aqua Security, which hunts weak kubernetes clusters. -The tool was developed to increase awareness and visibility for security issues in Kubernetes environments, +Kube Hunter hunts for security weaknesses in Kubernetes clusters. The tool was developed to increase awareness and visibility for security issues in Kubernetes environments. -_Developers, please read [Guidelines For Developing Your First Kube Hunter Module](src/README.md)_ -## Hunting -by default, without any special flags, Kube Hunter will scan all of your machine's network interfaces for open kubernetes services. +_Developers, please read [Guidelines For Developing Your First Kube Hunter Module](src/README.md)_ *TODO* + +## Hunting +by default, without any special flags, Kube Hunter will scan all of your machine's network interfaces for open kubernetes services. To specify a specific cidr to scan, use the `--cidr` option. Example: `./kube-hunter.py --cidr 192.168.0.0/24`