mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-22 12:33:06 +00:00
fix python3 raw input
This commit is contained in:
parent
fe69551c41
commit
55ba216a71
3 changed files with 8 additions and 1 deletions
|
@ -5,6 +5,8 @@ version 8.0.2
|
|||
* fix an issue on harvester file not defined (python 3 compat)
|
||||
* add a simple install for setoolkit (setup.py)
|
||||
* teensy remove old path generation location /usr/share/set to /usr/share/setoolkit
|
||||
* fixed raw_input issue for python3
|
||||
* changed env variable to python3
|
||||
|
||||
~~~~~~~~~~~~~~~~
|
||||
version 8.0.1
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
# coding=utf-8
|
||||
import os
|
||||
import re
|
||||
|
|
|
@ -14,6 +14,11 @@ import socket
|
|||
from src.core.setcore import *
|
||||
from src.core.menu import text
|
||||
|
||||
try:
|
||||
raw_input
|
||||
except:
|
||||
raw_input = input
|
||||
|
||||
ipaddr = ""
|
||||
me = mod_name()
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue