monkey/appimage
Mike Salvatore 1c73a154bc appimage: Remove `run_appimage.sh` as it is no longer needed
The functionality of setting up the data directory and starting mongodb
is now handled in python code.
2021-06-03 10:57:23 -04:00
..
.gitignore build: move ./deployment_scripts/appimage -> ./appimage 2021-04-15 11:32:10 -04:00
AppRun appimage: Remove `run_appimage.sh` as it is no longer needed 2021-06-03 10:57:23 -04:00
README.md appimage: Add cli parameter for specifying the package version 2021-04-30 10:17:53 -04:00
build_appimage.sh appimage: Remove `run_appimage.sh` as it is no longer needed 2021-06-03 10:57:23 -04:00
clean.sh appimage: Add cli parameter for specifying the package version 2021-04-30 10:17:53 -04:00
infection-monkey.desktop build: move ./deployment_scripts/appimage -> ./appimage 2021-04-15 11:32:10 -04:00
server_config.json.standard Added mongodb parameters to appimage server config and develop server config 2021-05-20 13:55:51 +03:00

README.md

Monkey Island AppImage

About

This directory contains the necessary artifacts for building an Infection Monkey AppImage

Building an AppImage

  1. Create a clean VM or LXC (not docker!) based on Ubuntu 18.04.
  2. Copy the deployment_scripts/appimage directory to $HOME/ in the VM.
  3. Run sudo -v.
  4. On the VM, cd $HOME/appimage
  5. Execute ./build_appimage.sh. This will pull all necessary dependencies and build the AppImage.

NOTE: This script is intended to be run from a clean VM. You can also manually remove build artifacts by removing the following files and directories.

  • $HOME/.monkey_island (optional)
  • $HOME/appimage/squashfs-root
  • $HOME/git/monkey
  • $HOME/appimage/Infection_Monkey*x86_64.AppImage

After removing the above files and directories, you can again execute bash build_appimage.sh.

Running the AppImage

The build script will produce an AppImage executible named Infection_Monkey-x86_64.AppImage. Simply execute this file and you're off to the races.

A new directory, $HOME/.monkey_island will be created to store runtime artifacts.