fix input/raw input on python2/3 on wirleess

This commit is contained in:
TrustedSec 2016-09-04 20:41:25 -04:00
parent 86e3f288f2
commit 59d328085c
2 changed files with 6 additions and 0 deletions

View file

@ -8,6 +8,9 @@ import src.core.setcore as core
# Simple python script to kill things created by the SET wifi attack vector
#
try: input = raw_input
except: pass
interface = input(core.setprompt(["8"], "Enter your wireless interface (ex: wlan0): "))
# fix a bug if present

View file

@ -22,6 +22,9 @@ from set_config import AP_CHANNEL as ap_channel
from set_config import DNSSPOOF_PATH as dnsspoof_path
sys.path.append(core.definepath)
try: input = raw_input
except: pass
if not os.path.isfile("/etc/init.d/isc-dhcp-server"):
core.print_warning("isc-dhcp-server does not appear to be installed.")
core.print_warning("apt-get install isc-dhcp-server to install it. Things may fail now.")