Breach Attack Simulation - Starting With OpenBAS
Caldera has been in market for years, I have never tried it. I saw OpenBAS on my recommended lists in Github so I thought I might give it a try
Installation
mkdir -p ~/openBAS && cd ~/openBAS
git clone https://github.com/OpenBAS-Platform/docker.git .Changing Environment Variables
mv .env.sample .env
export $(cat .env | grep -v "#" | xargs)Starting the docker
docker-compose up -d rabbitmq:
image: rabbitmq:4.0-management
environment:
- RABBITMQ_DEFAULT_USER=${RABBITMQ_DEFAULT_USER}
- RABBITMQ_DEFAULT_PASS=${RABBITMQ_DEFAULT_PASS}
- RABBITMQ_NODENAME=rabbit01@localhost
volumes:
- type: bind
source: ./rabbitmq.conf #Fix This Line
target: /etc/rabbitmq/rabbitmq.conf
- amqpdata:/var/lib/rabbitmq
restart: alwaysLogin
Platform
Installing the agent

Creating a Scenario









Final Thoughts
References
PreviousSelf-Hosting Havoc C2 / or any other C2 in DockerNextUpdate - OpenBAS to OPENAEV. Performing Adversary Emulation
Last updated