From 0b05ff6aa65b7c594d1f17fa14ec2bbf01007587 Mon Sep 17 00:00:00 2001 From: Liz Rice Date: Wed, 4 Jul 2018 11:23:04 +0100 Subject: [PATCH] Little typos --- kube-hunter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kube-hunter.py b/kube-hunter.py index 587421f..9809ced 100644 --- a/kube-hunter.py +++ b/kube-hunter.py @@ -34,7 +34,7 @@ def interactive_set_config(): options = { "Remote scanning": "scans one or more specific IPs or DNS names", "Internal scanning": "scans all network interfaces", - "CIDR scanning": "scans a spesific cidr" + "CIDR scanning": "scans a specific CIDR" } # maps between option and its explanation print "Choose one of the options below:" @@ -42,7 +42,7 @@ def interactive_set_config(): print "{}. {} ({})".format(i+1, option.ljust(20), explanation) choice = raw_input("Your choice: ") if choice == '1': - config.remote = raw_input("Remotes (seperated by a ','): ").replace(' ', '').split(',') + config.remote = raw_input("Remotes (separated by a ','): ").replace(' ', '').split(',') elif choice == '2': config.internal = True elif choice == '3':