From 6615cc91622025414469e431519199a8ac637df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Sch=C3=BCtz?= Date: Mon, 2 Jan 2017 22:30:26 +0100 Subject: [PATCH] minor fixes --- kickthemout.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kickthemout.py b/kickthemout.py index 2359525..0c9e645 100644 --- a/kickthemout.py +++ b/kickthemout.py @@ -79,13 +79,13 @@ def kickoneoff(): # TODO: do not allow only one device!! while not canBreak: try: choice = int(raw_input("\nChoose a target: ")) + one_target_ip = onlineIPs[choice] canBreak = True except KeyboardInterrupt: return except: - print("{0}[!] Please enter a number!{1}").format(RED, END) + print("{0}[!] Please enter a number from the list!{1}").format(RED, END) - one_target_ip = onlineIPs[choice] one_target_mac = "" for host in hostsList: if host[0] == one_target_ip: