Add files via upload

This commit is contained in:
David Schütz 2017-01-14 12:15:35 +01:00 committed by GitHub
parent a904948af1
commit 52d4839655
1 changed files with 7 additions and 3 deletions

View File

@ -15,9 +15,13 @@ import urllib2 as urllib
BLUE, RED, WHITE, YELLOW, MAGENTA, GREEN, END = '\33[94m', '\033[91m', '\33[97m', '\33[93m', '\033[1;35m', '\033[1;32m', '\033[0m'
logging.getLogger("scapy.runtime").setLevel(logging.ERROR) # Shut up scapy!
if os.geteuid() != 0:
print("\n{0}ERROR: KickThemOut must run as root. Try again with sudo/root:\n\t{1}$ sudo python kickthemout.py{2}\n").format(RED, GREEN, END)
raise SystemExit
try:
if os.geteuid() != 0:
print("\n{0}ERROR: KickThemOut must run as root. Try again with sudo/root:\n\t{1}$ sudo python kickthemout.py{2}\n").format(RED, GREEN, END)
raise SystemExit
except:
# User is probably on windows
pass
try:
from scapy.all import *