0 votos

Problemas con la instalación del kit de herramientas de ingeniería social (S.E.T)

Estoy intentando instalar Social Engineering Toolkit (S.E.T) en OS X Lion.

Encontré estos comandos en internet: git clone https://github.com/trustedsec/social-engineer-toolkit

cd social-engineer-toolkit

python setup.py install

setoolkit

Pero después de hacer python setup.py install me da esta salida:

Saffet-iMac:social-engineer-toolkit SaffetYurtoglu$ python3 setup.py install
Searching for pexpect
Best match: pexpect 4.2.0
Adding pexpect 4.2.0 to easy-install.pth file
Using /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages
Processing dependencies for pexpect
Finished processing dependencies for pexpect
Searching for pycrypto
Best match: pycrypto 2.6.1
Adding pycrypto 2.6.1 to easy-install.pth file
Using /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages
Processing dependencies for pycrypto
Finished processing dependencies for pycrypto
Searching for pyopenssl
Best match: pyOpenSSL 16.0.0
Adding pyOpenSSL 16.0.0 to easy-install.pth file
Using /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages
Processing dependencies for pyopenssl
Finished processing dependencies for pyopenssl
Searching for pefile
Best match: pefile 2016.3.28
Adding pefile 2016.3.28 to easy-install.pth file
Using /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages
Processing dependencies for pefile
Finished processing dependencies for pefile

Parece que todo está bien pero no pasa nada. ¿Qué debo hacer?

0voto

klanomath Puntos 19587

En un Lion vainilla la instalación de Social Engineering Toolkit funciona si se utiliza

git clone https://github.com/trustedsec/social-engineer-toolkit
cd social-engineer-toolkit
sudo python setup.py install

(que instalará algunas herramientas/bibliotecas necesarias en /Library/Python/2.7/site-packages).

Después de "instalar" el kit de herramientas utilice sudo ./setoolkit para iniciar el kit de herramientas SE.

Aquí hay algunas variables env:

$ python --version
Python 2.7.1
$ which python
/usr/bin/python
$ python -c "import sys;print(sys.path)"
['', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages', '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-old', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload', '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/PyObjC', '/Library/Python/2.7/site-packages']
$ echo $PATH
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin

Probablemente has instalado Python 3.5 - que no está incluido en OS X Lion - y has modificado algunas variables env. Sin más información, su instalación de SE Toolkit no puede ser salvada.

0voto

Ian Puntos 56

La respuesta aquí fue que había un error en el $PATH en el .bash_profile de John. Por alguna razón, a pesar de eliminar todas las partes de python3.5/3.6 en .bash_profile, el comando export path las volvía a introducir. Esto se solucionó referenciando explícitamente todas las rutas y no añadiendo en el actual $PATH almacenado. La instalación está ahora usando la versión correcta de Python.

AppleAyuda.com

AppleAyuda es una comunidad de usuarios de los productos de Apple en la que puedes resolver tus problemas y dudas.
Puedes consultar las preguntas de otros usuarios, hacer tus propias preguntas o resolver las de los demás.

Powered by:

X