Root check

This commit is contained in:
David Schütz 2017-01-20 14:50:20 +01:00 committed by GitHub
parent dd3b0b2968
commit 09c25bd891
1 changed files with 11 additions and 0 deletions

View File

@ -12,6 +12,17 @@ import time, os, sys, logging, math
from time import sleep
import urllib2 as urllib
notRoot = False
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)
notRoot = True
except:
# User is probably on windows
pass
if notRoot:
raise SystemExit
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!
try: