Pythem - Penetration Testing Framework
Pythem est un framework polyvalent écrit en Python. Il a été développé pour être utilisé par des chercheurs en sécurité et des professionnels de la sécurité. L'outil destiné à être utilisé uniquement pour les actes prévus par la loi. Je ne suis pas responsable de tout acte indu et illégal pratiqué par cet outil, pour plus d'informations, lisez la licence. Fonctionne uniquement sous GNU / Linux OS.
Voyez plutôt :
Installation
#!/bin/bash sudo apt-get update sudo apt-get install build-essential python-dev tcpdump python-capstone sudo apt-get install libnetfilter-queue-dev libffi-dev libssl-dev git clone https://github.com/m4n3dw0lf/pythem cd pythem sudo pip install -r requirements.txt
Run with:
./pythem.py
Create a global executable on PATH
Inside pythem directory execute the following commands:
#!/bin/bash cd pythem sudo touch /usr/bin/pythem echo "cd $PWD && sudo ./pythem.py" | sudo tee /usr/bin/pythem sudo chmod +x /usr/bin/pythem
pop a terminal and run with:
pythem
Create a Desktop Shortcut
nside pythem directory execute the following commands:
#!/bin/bash cat <<EOT > ~/.local/share/applications/pythem.desktop [Desktop Entry] Name=pythem Exec=pythem StartupNotify=true Terminal=true Type=Application Icon=$PWD/config/pythemico.png EOT
Le lien pour Pythem :
https://github.com/m4n3dw0lf/pythem/wiki/Installation#installation
http://www.kitploit.com/2017/07/pythem-penetration-testing-framework.html