forked from p15670423/monkey
build: scripts for building MonkeyIsland as an appimage
Adds the basic scripts for generating an AppImage. Code changes are required to allow Monkey Island to operate on a read-only filesystem.
This commit is contained in:
parent
176ad01c14
commit
12c40c3968
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd ./usr/src
|
||||
|
||||
bash monkey_island/linux/run.sh $HOME/.monkey_island/db
|
|
@ -0,0 +1,238 @@
|
|||
#!/bin/bash
|
||||
|
||||
python_cmd="python3.7"
|
||||
APPDIR="$HOME/monkey-appdir"
|
||||
INSTALL_DIR="$APPDIR/usr/src"
|
||||
|
||||
GIT=$HOME/git
|
||||
|
||||
REPO_MONKEY_HOME=$GIT/monkey
|
||||
REPO_MONKEY_SRC=$REPO_MONKEY_HOME/monkey
|
||||
|
||||
ISLAND_PATH="$INSTALL_DIR/monkey_island"
|
||||
MONGO_PATH="$ISLAND_PATH/bin/mongodb"
|
||||
ISLAND_BINARIES_PATH="$ISLAND_PATH/cc/binaries"
|
||||
INFECTION_MONKEY_DIR="$MONKEY_HOME/monkey/infection_monkey"
|
||||
MONKEY_BIN_DIR="$INFECTION_MONKEY_DIR/bin"
|
||||
|
||||
is_root() {
|
||||
return $(id -u)
|
||||
}
|
||||
|
||||
has_sudo() {
|
||||
# 0 true, 1 false
|
||||
return $(sudo -nv > /dev/null 2>&1)
|
||||
}
|
||||
|
||||
handle_error() {
|
||||
echo "Fix the errors above and rerun the script"
|
||||
exit 1
|
||||
}
|
||||
|
||||
log_message() {
|
||||
echo -e "\n\n"
|
||||
echo -e "DEPLOYMENT SCRIPT: $1"
|
||||
}
|
||||
|
||||
setup_appdir() {
|
||||
rm -rf $APPDIR | true
|
||||
mkdir -p $INSTALL_DIR
|
||||
}
|
||||
|
||||
install_pip_37() {
|
||||
pip_url=https://bootstrap.pypa.io/get-pip.py
|
||||
curl $pip_url -o get-pip.py
|
||||
${python_cmd} get-pip.py
|
||||
rm get-pip.py
|
||||
}
|
||||
|
||||
install_nodejs() {
|
||||
log_message "Installing nodejs"
|
||||
node_src=https://deb.nodesource.com/setup_12.x
|
||||
curl -sL $node_src | sudo -E bash -
|
||||
sudo apt-get install -y nodejs
|
||||
}
|
||||
|
||||
install_build_prereqs() {
|
||||
# appimage-builder prereqs
|
||||
sudo apt install -y python3 python3-pip python3-setuptools patchelf desktop-file-utils libgdk-pixbuf2.0-dev fakeroot strace
|
||||
|
||||
#monkey island prereqs
|
||||
sudo apt install -y curl libcurl4 python3.7 python3.7-dev openssl git build-essential
|
||||
install_pip_37
|
||||
install_nodejs
|
||||
}
|
||||
|
||||
install_appimage_builder() {
|
||||
sudo pip3 install appimage-builder
|
||||
|
||||
install_appimage_tool
|
||||
}
|
||||
|
||||
install_appimage_tool() {
|
||||
APP_TOOL_BIN=$HOME/bin/appimagetool
|
||||
mkdir $HOME/bin
|
||||
curl -L -o $APP_TOOL_BIN https://github.com/AppImage/AppImageKit/releases/download/12/appimagetool-x86_64.AppImage
|
||||
chmod u+x $APP_TOOL_BIN
|
||||
|
||||
PATH=$PATH:$HOME/bin
|
||||
}
|
||||
|
||||
load_monkey_binary_config() {
|
||||
tmpfile=$(mktemp)
|
||||
|
||||
log_message "downloading configuration"
|
||||
curl -L -s -o $tmpfile "$config_url"
|
||||
|
||||
log_message "loading configuration"
|
||||
source $tmpfile
|
||||
}
|
||||
|
||||
clone_monkey_repo() {
|
||||
if [[ ! -d ${GIT} ]]; then
|
||||
mkdir -p "${GIT}"
|
||||
fi
|
||||
|
||||
log_message "Cloning files from git"
|
||||
branch=${2:-"develop"}
|
||||
git clone --single-branch --recurse-submodules -b "$branch" "${MONKEY_GIT_URL}" "${REPO_MONKEY_HOME}" 2>&1 || handle_error
|
||||
|
||||
chmod 774 -R "${MONKEY_HOME}"
|
||||
}
|
||||
|
||||
copy_monkey_island_to_appdir() {
|
||||
cp $REPO_MONKEY_SRC/__init__.py $INSTALL_DIR
|
||||
cp $REPO_MONKEY_SRC/monkey_island.py $INSTALL_DIR
|
||||
cp -r $REPO_MONKEY_SRC/common $INSTALL_DIR
|
||||
cp -r $REPO_MONKEY_SRC/monkey_island $INSTALL_DIR
|
||||
cp ./run.sh $INSTALL_DIR/monkey_island/linux/
|
||||
}
|
||||
|
||||
install_monkey_island_python_dependencies() {
|
||||
log_message "Installing island requirements"
|
||||
requirements_island="$ISLAND_PATH/requirements.txt"
|
||||
${python_cmd} -m pip install -r "${requirements_island}" --ignore-installed --prefix /usr --root=$APPDIR || handle_error
|
||||
${python_cmd} -m pip install pyjwt==1.7 --ignore-installed -U --prefix /usr --root=$APPDIR || handle_error
|
||||
#${python_cmd} -m pip install PyNacl --user --upgrade || handle_error
|
||||
}
|
||||
|
||||
download_monkey_agent_binaries() {
|
||||
log_message "Downloading monkey agent binaries to ${ISLAND_BINARIES_PATH}"
|
||||
mkdir -p "${ISLAND_BINARIES_PATH}" || handle_error
|
||||
curl -L -o ${ISLAND_BINARIES_PATH}/${LINUX_32_BINARY_NAME} ${LINUX_32_BINARY_URL}
|
||||
curl -L -o ${ISLAND_BINARIES_PATH}/${LINUX_64_BINARY_NAME} ${LINUX_64_BINARY_URL}
|
||||
curl -L -o ${ISLAND_BINARIES_PATH}/${WINDOWS_32_BINARY_NAME} ${WINDOWS_32_BINARY_URL}
|
||||
curl -L -o ${ISLAND_BINARIES_PATH}/${WINDOWS_64_BINARY_NAME} ${WINDOWS_64_BINARY_URL}
|
||||
|
||||
# Allow them to be executed
|
||||
chmod a+x "$ISLAND_BINARIES_PATH/$LINUX_32_BINARY_NAME"
|
||||
chmod a+x "$ISLAND_BINARIES_PATH/$LINUX_64_BINARY_NAME"
|
||||
}
|
||||
|
||||
install_mongodb() {
|
||||
#log_message "Installing libcurl4"
|
||||
#sudo apt-get install -y libcurl4
|
||||
|
||||
log_message "Installing MongoDB"
|
||||
|
||||
mkdir -p $MONGO_PATH
|
||||
"${ISLAND_PATH}"/linux/install_mongo.sh ${MONGO_PATH} || handle_error
|
||||
}
|
||||
|
||||
generate_ssl_cert() {
|
||||
# Generate SSL certificate
|
||||
log_message "Generating certificate"
|
||||
|
||||
chmod u+x "${ISLAND_PATH}"/linux/create_certificate.sh
|
||||
"${ISLAND_PATH}"/linux/create_certificate.sh ${ISLAND_PATH}/cc
|
||||
}
|
||||
|
||||
build_frontend() {
|
||||
pushd "$ISLAND_PATH/cc/ui" || handle_error
|
||||
npm install sass-loader node-sass webpack --save-dev
|
||||
npm update
|
||||
|
||||
log_message "Generating front end"
|
||||
npm run dist
|
||||
popd || handle_error
|
||||
}
|
||||
|
||||
download_monkey_helper_binaries() {
|
||||
# Making dir for binaries
|
||||
mkdir "${MONKEY_BIN_DIR}"
|
||||
|
||||
download_sambacry_binaries
|
||||
download_tracerout_binaries
|
||||
}
|
||||
|
||||
download_sambacry_binaries() {
|
||||
# Download sambacry binaries
|
||||
log_message "Downloading sambacry binaries"
|
||||
curl -L -o ${MONKEY_BIN_DIR}/sc_monkey_runner64.so ${SAMBACRY_64_BINARY_URL}
|
||||
curl -L -o ${MONKEY_BIN_DIR}/sc_monkey_runner32.so ${SAMBACRY_32_BINARY_URL}
|
||||
}
|
||||
|
||||
download_tracerout_binaries() {
|
||||
# Download traceroute binaries
|
||||
log_message "Downloading traceroute binaries"
|
||||
curl -L -o ${MONKEY_BIN_DIR}/traceroute64 ${TRACEROUTE_64_BINARY_URL}
|
||||
curl -L -o ${MONKEY_BIN_DIR}/traceroute32 ${TRACEROUTE_32_BINARY_URL}
|
||||
}
|
||||
|
||||
if is_root; then
|
||||
log_message "Please don't run this script as root"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! has_sudo; then
|
||||
log_message "You need root permissions for some of this script operations. \
|
||||
Run \`sudo -v\`, enter your password, and then re-run this script."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
config_url="https://raw.githubusercontent.com/mssalvatore/monkey/linux-deploy-binaries/deployment_scripts/config"
|
||||
|
||||
setup_appdir
|
||||
|
||||
install_build_prereqs
|
||||
install_appimage_builder
|
||||
|
||||
|
||||
load_monkey_binary_config
|
||||
clone_monkey_repo
|
||||
download_monkey_helper_binaries
|
||||
|
||||
copy_monkey_island_to_appdir
|
||||
# Create folders
|
||||
log_message "Creating island dirs under $ISLAND_PATH"
|
||||
mkdir -p "${MONGO_PATH}" || handle_error
|
||||
|
||||
#log_message "Installing python3-distutils"
|
||||
#sudo apt-get install -y python3-distutils
|
||||
install_monkey_island_python_dependencies
|
||||
|
||||
#log_message "Installing monkey requirements"
|
||||
#sudo apt-get install -y libffi-dev upx libssl-dev libc++1
|
||||
#requirements_monkey="$INFECTION_MONKEY_DIR/requirements.txt"
|
||||
#${python_cmd} -m pip install -r "${requirements_monkey}" --user --upgrade || handle_error
|
||||
|
||||
download_monkey_agent_binaries
|
||||
|
||||
install_mongodb
|
||||
|
||||
generate_ssl_cert
|
||||
|
||||
build_frontend
|
||||
|
||||
#cp ./AppRun $APPDIR
|
||||
|
||||
mkdir -p $APPDIR/usr/share/icons
|
||||
cp $REPO_MONKEY_SRC/monkey_island/cc/ui/src/images/monkey-icon.svg $APPDIR/usr/share/icons/monkey-icon.svg
|
||||
#cp ./monkey_island.desktop $APPDIR
|
||||
|
||||
log_message "Building AppImage"
|
||||
appimage-builder --recipe monkey_island_builder.yml --skip-appimage
|
||||
|
||||
|
||||
log_message "Deployment script finished."
|
||||
exit 0
|
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Version=1.10
|
||||
Type=Application
|
||||
Name=Monkey Island
|
||||
Comment=FILL ME IN
|
||||
TryExec=fooview
|
||||
Exec=AppRun
|
||||
Icon=monkey_island.svg
|
||||
Terminal=true;
|
||||
Category=Security;
|
|
@ -0,0 +1,44 @@
|
|||
version: 1
|
||||
|
||||
AppDir:
|
||||
path: '../monkey-appdir'
|
||||
|
||||
app_info:
|
||||
id: org.guardicore.monkey-island
|
||||
name: Monkey Island
|
||||
icon: monkey-icon
|
||||
version: 1.10.0
|
||||
exec: bin/bash
|
||||
exec_args: "$APPDIR/usr/src/monkey_island/linux/run.sh $HOME/.monkey_island/db"
|
||||
|
||||
|
||||
apt:
|
||||
arch: amd64
|
||||
sources:
|
||||
- sourceline: deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ bionic main restricted
|
||||
key_url: http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3B4FE6ACC0B21F32
|
||||
- sourceline: deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ bionic universe
|
||||
- sourceline: deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ bionic-security main restricted
|
||||
- sourceline: deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ bionic-security universe
|
||||
- sourceline: deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ bionic-updates main restricted
|
||||
- sourceline: deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ bionic-updates universe
|
||||
|
||||
include:
|
||||
- libc6
|
||||
- bash
|
||||
- curl
|
||||
- libcurl4
|
||||
- coreutils
|
||||
- python3.7
|
||||
- nodejs
|
||||
|
||||
runtime:
|
||||
env:
|
||||
PATH: '${APPDIR}/usr/bin:${PATH}'
|
||||
PYTHONHOME: '${APPDIR}/usr'
|
||||
PYTHONPATH: '${APPDIR}/usr/lib/python3.7/site-packages'
|
||||
|
||||
AppImage:
|
||||
update-information: None
|
||||
sign-key: None
|
||||
arch: x86_64
|
|
@ -0,0 +1,21 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Detecting command that calls python 3.7
|
||||
python_cmd=""
|
||||
if [[ $(python --version 2>&1) == *"Python 3.7"* ]]; then
|
||||
python_cmd="python"
|
||||
fi
|
||||
if [[ $(python37 --version 2>&1) == *"Python 3.7"* ]]; then
|
||||
python_cmd="python37"
|
||||
fi
|
||||
if [[ $(python3.7 --version 2>&1) == *"Python 3.7"* ]]; then
|
||||
python_cmd="python3.7"
|
||||
fi
|
||||
|
||||
DB_DIR=${1:-"./monkey_island/bin/mongodb/db"}
|
||||
|
||||
mkdir -p $DB_DIR
|
||||
|
||||
cd $APPDIR/usr/src
|
||||
./monkey_island/bin/mongodb/bin/mongod --dbpath $DB_DIR &
|
||||
${python_cmd} ./monkey_island.py
|
Loading…
Reference in New Issue