Setup
Shuffle is a SOAR tool which allows users to automate their SOC processes.
If you are going the Cloud route, you can use Shuffle's cloud platform.
Since we are using virtual machines, for this lab we will have to install Shuffle on one of those machines.
Installation
We can install Shuffle using the following commands:
cd /opt
git clone https://github.com/Shuffle/Shuffle
cd Shuffle
mkdir shuffle-database
sudo chown -R 1000:1000 shuffle-database
sudo useradd opensearchConfiguration
We now have to configure Shuffle to run on our machine.
Edit docker-compose.yml
docker-compose.yml ports:
-- - 9200:9200
++ - 9205:9205Run Shuffle
docker-compose up -dDashboard
We can now access Shuffle's dashboard at:
http://(shuffle-server-ip):3001Last updated
Was this helpful?