mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-07-05 20:42:20 -07:00
11 lines
198 B
Bash
Executable file
11 lines
198 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
|