monkey/monkey/monkey_island
Ilija Lazoroski bbf40e446f Island: Remove default_config and validator function from ConfigService 2022-07-06 16:05:42 +02:00
..
cc Island: Remove default_config and validator function from ConfigService 2022-07-06 16:05:42 +02:00
deb-package No need to qualify python since we sourced `activate` 2020-04-12 19:26:26 +03:00
docs Docs: Add initial Sphinx code documentation for the Island (#1964) 2022-05-26 11:20:15 -04:00
linux Island: Add condition for Ubuntu 22.04 in mongo installation script 2022-05-12 19:12:50 +05:30
pyinstaller_hooks Island: Remove stix2 dependency 2021-10-01 07:55:33 -04:00
setup island: Move setup/island_config_options.py -> cc/setup/ 2021-06-03 12:20:55 -04:00
windows Island: Modify temporary mongodb zip path in linux mongo installation script 2022-05-12 19:12:50 +05:30
Pipfile Island: Add readerwriterlock as a dependency 2022-07-05 10:42:06 -04:00
Pipfile.lock Island: Add readerwriterlock as a dependency 2022-07-05 10:42:06 -04:00
__init__.py Remove "__author__" lines from the source code 2021-07-28 12:43:28 -04:00
main.py Island: refactor/change exit() to the syntax of sys.exit 2021-11-29 11:35:22 +02:00
monkey_island.ico Merge branch 'master' into develop 2019-04-14 16:39:15 +03:00
monkey_island.spec Island, Common: Change AwsInstance properties to private, add getter 2022-05-02 15:55:12 +03:00
readme.md Island: Update README to remove mentions of 32-bit binaries 2022-02-25 02:28:53 -05:00

readme.md

Monkey island dev. env. setup guide

To easily setup development environment for Monkey Island and the Monkey look into deployment scripts folder. If you want to setup dev. env. for Island manually, refer to the instructions below.

How to set up the Monkey Island server

On Windows

  1. Exclude the folder you are planning to install the Monkey in from your AV software, as it might block or delete files from the installation.

  2. Create folder "bin" under monkey\monkey_island

  3. Place portable version of Python 3.7.4

  4. Install pipx

    • pip install --user -U pipx
    • pipx ensurepath
  5. Install pipenv

    • pipx install pipenv
  6. From the monkey\monkey_island directory, install python dependencies:

    • pipenv sync --dev
  7. Setup mongodb (Use one of the following two options):

    OR

    • Use already running instance of mongodb
      1. Run 'set MONKEY_MONGO_URL="mongodb://:27017/monkeyisland"'. Replace '' with address of mongo server
  8. Place portable version of OpenSSL

  9. Download and install Microsoft Visual C++ redistributable for Visual Studio 2017

  10. Generate SSL Certificate

    • run ./windows/create_certificate.bat when your current working directory is monkey_island
  11. Put Infection Monkey binaries inside monkey_island/cc/binaries (binaries can be found in releases on github or build from source) monkey-linux-64 - monkey binary for linux 64bit monkey-windows-64.exe - monkey binary for windows 64bit

  12. Install npm

  13. Build Monkey Island frontend

    • cd to 'monkey_island\cc\ui'
    • run 'npm update'
    • run 'npm run dist'

How to run

  1. When your current working directory is monkey_island, run monkey_island\windows\run_server_py.bat

On Linux

  1. Set your current working directory to monkey/.

  2. Get python 3.7 and pip if your linux distribution doesn't have it built in (following steps are for Ubuntu 16):

    • sudo add-apt-repository ppa:deadsnakes/ppa
    • sudo apt-get update
    • sudo apt install python3.7 python3-pip python3.7-dev python3.7-venv
    • python3.7 -m pip install pip
  3. Install pipx:

    • python3.7 -m pip install --user pipx
    • python3.7 -m pipx ensurepath
    • source ~/.profile
  4. Install pipenv:

    • pipx install pipenv
  5. Install required packages:

    • sudo apt-get install libffi-dev upx libssl-dev libc++1 openssl
  6. Install the Monkey Island python dependencies:

    • cd ./monkey_island
    • pipenv sync --dev
    • cd ..
  7. Create the following directories in monkey island folder (execute from ./monkey):

    • mkdir -p ./monkey_island/bin/mongodb
    • mkdir -p ./monkey_island/cc/binaries
  8. Put monkey binaries in /monkey_island/cc/binaries (binaries can be found in releases on github).

    monkey-linux-64 - monkey binary for linux 64bit

    monkey-windows-64.exe - monkey binary for windows 64bit

    Also, if you're going to run monkeys on local machine execute:

    • chmod 755 ./monkey_island/cc/binaries/monkey-linux-64
  9. Setup MongoDB (Use one of the two following options):

    • Download MongoDB and extract it to monkey/monkey_island/bin/mongodb:
      1. Run ./monkey_island/linux/install_mongo.sh ./monkey_island/bin/mongodb. This will download and extract the relevant mongoDB for your OS.

    OR

    • Use already running instance of mongodb
      1. Run set MONKEY_MONGO_URL="mongodb://<SERVER ADDR>:27017/monkeyisland". Replace '' with address of mongo server
  10. Generate SSL Certificate:

    • cd ./monkey_island
    • chmod 755 ./linux/create_certificate.sh
    • ./linux/create_certificate.sh
  11. Install npm and node by running:

    • sudo apt-get install curl
    • curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
    • sudo apt-get install -y nodejs
  12. Build Monkey Island frontend

    • cd to 'monkey_island/cc/ui'
    • npm install sass-loader node-sass webpack --save-dev
    • npm update
    • npm run dist

How to run

  1. From the monkey directory, run python3.7 ./monkey_island.py

Troubleshooting

When committing your changes for the first time, you may encounter some errors thrown by the pre-commit hooks. This is most likely because some python dependencies are missing from your system. To resolve this, use pipenv to create a requirements.txt for both the infection_monkey/ and monkey_island/ requirements and install it with pip.

  • cd [code location]/infection_monkey
  • python3.7 -m pipenv lock -r --dev > requirements.txt
  • python3.7 -m pip install -r requirements.txt

and

  • cd [code location]/monkey_island
  • python3.7 -m pipenv lock -r --dev > requirements.txt
  • python3.7 -m pip install -r requirements.txt