mirror of https://github.com/avast/PurpleDome
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
174 lines
3.8 KiB
YAML
174 lines
3.8 KiB
YAML
|
|
###
|
|
# Caldera configuration
|
|
caldera:
|
|
###
|
|
# API key for caldera. See caldera configuration. Default is ADMIN123
|
|
apikey: ADMIN123
|
|
|
|
###
|
|
# Attacks configuration
|
|
attackers:
|
|
###
|
|
# Configuration for the first attacker. One should normally be enough
|
|
attacker:
|
|
|
|
###
|
|
# Defining VM controller settings for this machine
|
|
vm_controller:
|
|
###
|
|
# Type of the VM controller, Options are "vagrant"
|
|
type: vagrant
|
|
###
|
|
# # path where the vagrantfile is in
|
|
vagrantfilepath: systems
|
|
|
|
# Empty for a reason. It is being tested
|
|
nicknames:
|
|
|
|
###
|
|
# Name of machine in Vagrantfile
|
|
vm_name: attacker
|
|
|
|
###
|
|
# machinepath is a path where the machine specific files and logs are stored. Relative to the Vagrantfile path
|
|
# and will be mounted internally as /vagrant/<name>
|
|
# If machinepoath is not set AttackX will try "vm_name"
|
|
machinepath: attacker1
|
|
|
|
###
|
|
# OS of the VM guest. Options are so far "windows", "linux"
|
|
os: linux
|
|
|
|
###
|
|
# Do not destroy/create the machine: Set this to "yes".
|
|
use_existing_machine: yes
|
|
|
|
###
|
|
# List of targets
|
|
targets:
|
|
###
|
|
# Specific target
|
|
target1:
|
|
vm_controller:
|
|
type: vagrant
|
|
vagrantfilepath: systems
|
|
|
|
vm_name: target1
|
|
|
|
# Used for tests
|
|
nicknames:
|
|
- 1
|
|
- 2
|
|
- 3
|
|
|
|
os: linux
|
|
###
|
|
# Targets need a unique PAW name for caldera
|
|
paw: target1
|
|
###
|
|
# Targets need to be in a group for caldera
|
|
group: red
|
|
|
|
machinepath: target1
|
|
# Do not destroy/create the machine: Set this to "yes".
|
|
use_existing_machine: yes
|
|
|
|
target2:
|
|
#root: systems/target1
|
|
vm_controller:
|
|
type: vagrant
|
|
vagrantfilepath: systems
|
|
|
|
vm_name: target2
|
|
os: windows
|
|
paw: target2w
|
|
group: red
|
|
|
|
machinepath: target2w
|
|
|
|
# Do not destroy/create the machine: Set this to "yes".
|
|
use_existing_machine: yes
|
|
###
|
|
# Optional setting to activate force when halting the machine. Windows guests sometime get stuck
|
|
halt_needs_force: yes
|
|
|
|
###
|
|
# If SSH without vagrant support is used (Windows !) we need a user name (uppercase)
|
|
ssh_user: ATTACKX
|
|
|
|
###
|
|
# For non-vagrant ssh connections a ssh keyfile stored in the machinepath is required.
|
|
ssh_keyfile: id_rsa.3
|
|
|
|
###
|
|
# General attack config
|
|
attacks:
|
|
###
|
|
# configure the seconds the system idles between the attacks. Makes it slower. But attack and defense logs will be simpler to match
|
|
nap_time: 5
|
|
|
|
###
|
|
# A list of caldera attacks to run against the targets.
|
|
caldera_attacks:
|
|
###
|
|
# Linux specific attacks. A list of caldera ability IDs
|
|
linux:
|
|
- "bd527b63-9f9e-46e0-9816-b8434d2b8989"
|
|
###
|
|
# Windows specific attacks. A list of caldera ability IDs
|
|
windows:
|
|
- "bd527b63-9f9e-46e0-9816-b8434d2b8989"
|
|
|
|
###
|
|
# Plugin based attacks. Will result in plugins being called
|
|
plugin_based_attacks:
|
|
###
|
|
# Linux specific attacks, a list
|
|
linux:
|
|
- hydra
|
|
###
|
|
# Windows specific attacks, a list
|
|
windows:
|
|
- hydra
|
|
|
|
###
|
|
# Configuration for the plugin based attack tools
|
|
attack_conf:
|
|
###
|
|
# Hydra configuration
|
|
hydra:
|
|
###
|
|
# A list of protocols to brute force against. Supported: "ssh"
|
|
protocols:
|
|
- ssh
|
|
#- ftp
|
|
#- ftps
|
|
###
|
|
# A file containing potential user names
|
|
userfile: users.txt
|
|
###
|
|
# A file containing potential passwords
|
|
pwdfile: passwords.txt
|
|
|
|
###
|
|
# Settings for the results being harvested
|
|
results:
|
|
###
|
|
# The directory the loot will be in
|
|
loot_dir: loot
|
|
|
|
###
|
|
# General sensor config config
|
|
sensors:
|
|
###
|
|
# Windows sensor plugin configuration
|
|
windows_sensor:
|
|
###
|
|
# Name of the dll to use. Must match AV version
|
|
# dll_name: aswidptestdll.dll
|
|
dll_name: windows_sensor.dll
|
|
|
|
###
|
|
# Folder where the sensor tool is located
|
|
sensor_tool_folder: windows_sensor |