From a45220b753caa05d89a7443878e7849ff3f14e3f Mon Sep 17 00:00:00 2001 From: Eran Bibi Date: Fri, 17 Aug 2018 19:58:37 +0300 Subject: [PATCH 1/2] change the menu options title --- kube-hunter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kube-hunter.py b/kube-hunter.py index 1f5e973..72382c9 100755 --- a/kube-hunter.py +++ b/kube-hunter.py @@ -43,8 +43,8 @@ def interactive_set_config(): """Sets config manually, returns True for success""" options = { "Remote scanning": "scans one or more specific IPs or DNS names", - "Internal scanning": "scans all network interfaces", - "Network scanning": "scans a given IP range" + "Subnet scanning": "scans subnets on all local network interfaces", + "IP range scanning ": "scans a given IP range" } # maps between option and its explanation print("Choose one of the options below:") From e2038276a5f260ca841821fee87989a0f45eb84d Mon Sep 17 00:00:00 2001 From: Eran Bibi Date: Fri, 17 Aug 2018 20:04:17 +0300 Subject: [PATCH 2/2] change the menu options title --- kube-hunter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kube-hunter.py b/kube-hunter.py index 72382c9..ca757f7 100755 --- a/kube-hunter.py +++ b/kube-hunter.py @@ -44,7 +44,7 @@ def interactive_set_config(): options = { "Remote scanning": "scans one or more specific IPs or DNS names", "Subnet scanning": "scans subnets on all local network interfaces", - "IP range scanning ": "scans a given IP range" + "IP range scanning": "scans a given IP range" } # maps between option and its explanation print("Choose one of the options below:")