-
Notifications
You must be signed in to change notification settings - Fork 322
Installation
m4n3dw0lf edited this page Jul 1, 2017
·
29 revisions
- build-essential
- python-dev
- python-capstone
- libnetfilter-queue-dev
- libffi-dev
- libssl-dev
- tcpdump
#!/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
#!/bin/bash
cd pythem
executable_path=$(echo $PATH | cut -d ":" -f 2)
echo "cd $PWD && sudo ./pythem.py" | sudo tee --append $executable_path/pythem
sudo chmod +x $executable_path/pythem
pop a terminal and run with:
pythem
#!/bin/bash
cd pythem
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