Problemi con l'installazione di Social Engineering Toolkit (S.E.T)

0

Sto cercando di installare Social Engineering Toolkit (S.E.T) su OS X Lion.

Ho trovato questi comandi in internet: git clone https://github.com/trustedsec/social-engineer-toolkit

cd social-engineer-toolkit

python setup.py install

setoolkit

Ma dopo che faccio python setup.py install mi dà questo risultato:

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

Sembra che tutto sia a posto, ma non succede nulla. Cosa dovrei fare?

    
posta John 01.08.2016 - 20:54
fonte

2 risposte

0

La risposta è stata che c'era un errore nel $ PATH in .bash_profile di John. Per qualche ragione, nonostante la rimozione di tutti i bit relativi a python3.5 / 3.6 in .bash_profile, il comando del percorso di esportazione li stava reinserendo. Ciò è stato risolto facendo riferimento esplicitamente a tutti i percorsi e non aggiungendo l'attuale $ PATH memorizzato. L'installazione ora utilizza la versione python corretta.

    
risposta data 03.08.2016 - 11:47
fonte
0

In un leone vanilla l'installazione di Social Engineering Toolkit funziona se si utilizza

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

(che installerà alcuni strumenti / librerie necessarie su /Library/Python/2.7/site-packages).

Dopo aver "installato" il toolkit, usa sudo ./setoolkit per avviare SE Toolkit.

Ecco alcune variabili di 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

Probabilmente hai installato Python 3.5 - che non è incluso in OS X Lion - e modificato alcune variabili env. Senza ulteriori informazioni, l'installazione di SE Toolkit non può essere recuperata.

    
risposta data 02.08.2016 - 03:40
fonte

Leggi altre domande sui tag