mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-03-12 04:35:49 -07:00
13 lines
210 B
Bash
Executable File
13 lines
210 B
Bash
Executable File
#!/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 libs/bdfactory/
|
|
git pull origin master
|
|
./update.sh
|