mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-03-12 04:35:49 -07:00
9 lines
181 B
Bash
Executable File
9 lines
181 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if [[ $EUID -ne 0 ]]; then
|
|
echo "You must be root" 2>&1
|
|
exit 1
|
|
fi
|
|
|
|
git submodule init && git submodule update --recursive
|
|
cd libs/bdfactory/ && ./install.sh
|