mirror of
https://github.com/k4m4/kickthemout.git
synced 2024-11-24 22:14:24 +01:00
Update kickthemout.py
This commit is contained in:
parent
8390e92e1a
commit
de20d0ac99
@ -22,7 +22,7 @@ except:
|
|||||||
# User is probably on windows
|
# User is probably on windows
|
||||||
pass
|
pass
|
||||||
if notRoot:
|
if notRoot:
|
||||||
sys.exit(1)
|
raise SystemExit
|
||||||
|
|
||||||
logging.getLogger("scapy.runtime").setLevel(logging.ERROR) # Shut up scapy!
|
logging.getLogger("scapy.runtime").setLevel(logging.ERROR) # Shut up scapy!
|
||||||
try:
|
try:
|
||||||
@ -31,7 +31,7 @@ try:
|
|||||||
except:
|
except:
|
||||||
print("\n{0}ERROR: Requirements have not been properly satisfied. Please try running:\n\t{1}$ sudo pip install -r requirements.txt{2}").format(RED, GREEN, END)
|
print("\n{0}ERROR: Requirements have not been properly satisfied. Please try running:\n\t{1}$ sudo pip install -r requirements.txt{2}").format(RED, GREEN, END)
|
||||||
print("\n{0}If you still get the same error, please submit an issue here:\n\t{1}https://github.com/k4m4/kickthemout/issues\n{2}").format(RED, BLUE, END)
|
print("\n{0}If you still get the same error, please submit an issue here:\n\t{1}https://github.com/k4m4/kickthemout/issues\n{2}").format(RED, BLUE, END)
|
||||||
sys.exit(1)
|
raise SystemExit
|
||||||
|
|
||||||
def heading():
|
def heading():
|
||||||
sys.stdout.write(GREEN + """
|
sys.stdout.write(GREEN + """
|
||||||
@ -293,7 +293,7 @@ def main():
|
|||||||
if hostsList[0][0] == defaultGatewayIP:
|
if hostsList[0][0] == defaultGatewayIP:
|
||||||
print("\n{0}{1}WARNING: There are {2}0{3} hosts up on you network except your gateway.\n\tYou can't kick anyone off {4}:/{5}\n").format(
|
print("\n{0}{1}WARNING: There are {2}0{3} hosts up on you network except your gateway.\n\tYou can't kick anyone off {4}:/{5}\n").format(
|
||||||
GREEN, RED, GREEN, RED, GREEN, END)
|
GREEN, RED, GREEN, RED, GREEN, END)
|
||||||
sys.exit(1)
|
raise SystemExit
|
||||||
else:
|
else:
|
||||||
print(
|
print(
|
||||||
"\n{0}{1}WARNING: There are {2}0{3} hosts up on you network.\n\tIt looks like something went wrong {4}:/{5}").format(
|
"\n{0}{1}WARNING: There are {2}0{3} hosts up on you network.\n\tIt looks like something went wrong {4}:/{5}").format(
|
||||||
@ -301,7 +301,7 @@ def main():
|
|||||||
print(
|
print(
|
||||||
"\n{0}If you are experiencing this error multiple times, please submit an issue here:\n\t{1}https://github.com/k4m4/kickthemout/issues\n{2}").format(
|
"\n{0}If you are experiencing this error multiple times, please submit an issue here:\n\t{1}https://github.com/k4m4/kickthemout/issues\n{2}").format(
|
||||||
RED, BLUE, END)
|
RED, BLUE, END)
|
||||||
sys.exit(1)
|
raise SystemExit
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
||||||
@ -315,7 +315,7 @@ def main():
|
|||||||
if choice.upper() == 'E' or choice.upper() == 'EXIT':
|
if choice.upper() == 'E' or choice.upper() == 'EXIT':
|
||||||
print('\n{0}Thanks for dropping by.'
|
print('\n{0}Thanks for dropping by.'
|
||||||
'\nCatch ya later!{1}').format(GREEN, END)
|
'\nCatch ya later!{1}').format(GREEN, END)
|
||||||
sys.exit(1)
|
raise SystemExit
|
||||||
elif choice == '1':
|
elif choice == '1':
|
||||||
kickoneoff()
|
kickoneoff()
|
||||||
elif choice == '2':
|
elif choice == '2':
|
||||||
|
Loading…
Reference in New Issue
Block a user