Skip to content
This repository has been archived by the owner on May 8, 2023. It is now read-only.

Ubuntu 18.04 Installation

kseidenschnur edited this page Nov 19, 2020 · 7 revisions

This will build a range automatically in Ubuntu 18.04.

  1. with your favorite editor open deploy_attack_range.sh
  2. Copy the following code into it and save it:
#!/bin/bash
sudo apt-get update 
sudo apt-get install -y python3-dev linux-headers-generic python-dev unzip python-pip vagrant virtualbox virtualbox-dkms python-virtualenv git
sudo gem install winrm-elevated
sudo gem install winrm
git clone https://github.com/splunk/attack_range_local && cd attack_range_local
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
ansible-galaxy collection install community.windows
  1. chmod +x deploy_attack_range.sh
  2. execute the script ./deploy_attack_range.sh

Notes

  • linux endpoints like Splunk can be logged into by using the default vagrant credentials: username vagrant password vagrant. Alternatively the vagrant ssh command can be used.
Clone this wiki locally