modified binkybears install script

This commit is contained in:
byt3bl33d3r 2014-10-19 11:21:53 +02:00
commit 68178140fe
3 changed files with 7 additions and 12 deletions

View file

@ -1,3 +0,0 @@
#!/bin/bash
git submodule init
git submodule update

View file

@ -1,7 +0,0 @@
#!/bin/bash
sudo apt-get install python-pip msgpack-python python-nfqueue python-imaging capstone -y
sudo apt-get install python-requests python-configobj python-pefile -y
pip install capstone
./update.sh
./install-bdfactory.sh
./bdfactory/update.sh

View file

@ -1,7 +1,12 @@
#!/bin/bash
#!/usr/bin/env bash
if [[ $EUID -ne 0 ]]; then
echo "You must root" 2>&1
exit 1
fi
echo 'Updating MITMf'
git pull
echo 'Updating the-backdoor-factory'
cd bdfactory/
git pull origin master
./update.sh