From 6a31c4a9c9168fa6b11fff984351345968ef3d88 Mon Sep 17 00:00:00 2001 From: k4m4 Date: Sat, 31 Dec 2016 02:46:50 +0200 Subject: [PATCH] Update kickthemout.py --- kickthemout.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kickthemout.py b/kickthemout.py index b2ad360..cba3344 100644 --- a/kickthemout.py +++ b/kickthemout.py @@ -51,7 +51,7 @@ def kickoneoff(): print "Online IPs: " for i in range(len(onlineIPs)): - print(" ["+str(i)+"] {0}"+str(onlineIPs[i])+"{1}\n").format(RED, END) + print(" [{0}"+str(i)+"{1}] {2}"+str(onlineIPs[i])+"{3}\n").format(YELLOW, WHITE, RED, END) choice = int(raw_input("IP of the target: ")) # TODO: try, except one_target_ip = onlineIPs[choice] @@ -76,7 +76,7 @@ def kickoneoff(): spoof.sendPacket(defaultGatewayMac, defaultGatewayIP, one_target_ip, one_target_mac) rearp = rearp + 1 time.sleep(0.5) - print("\n{0}Done.{1}").format(GREEN, END) + print("\n{0}Re-arped{1} target.{2}").format(RED, GREEN, END) def kicksomeoff(): print('kicksomeoff')