mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-02-16 13:28:36 +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)
|
* fix an issue on harvester file not defined (python 3 compat)
|
||||||
* add a simple install for setoolkit (setup.py)
|
* add a simple install for setoolkit (setup.py)
|
||||||
* teensy remove old path generation location /usr/share/set to /usr/share/setoolkit
|
* 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
|
version 8.0.1
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
# coding=utf-8
|
# coding=utf-8
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|
|
@ -14,6 +14,11 @@ import socket
|
||||||
from src.core.setcore import *
|
from src.core.setcore import *
|
||||||
from src.core.menu import text
|
from src.core.menu import text
|
||||||
|
|
||||||
|
try:
|
||||||
|
raw_input
|
||||||
|
except:
|
||||||
|
raw_input = input
|
||||||
|
|
||||||
ipaddr = ""
|
ipaddr = ""
|
||||||
me = mod_name()
|
me = mod_name()
|
||||||
#
|
#
|
||||||
|
|
Loading…
Add table
Reference in a new issue