mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-04-04 23:06:11 +00:00
fix input/raw input on python2/3 on wirleess
This commit is contained in:
parent
86e3f288f2
commit
59d328085c
2 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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.")
|
||||
|
|
Loading…
Add table
Reference in a new issue