This role endeavors to simplify building a host for a cyber range. This role is for assessment purposes only.
Note: This has the potential to render a host vulnerable. Use with care.
Ansible 2.4
---
# defaults file for cyber-range-target
# Which CVE's should be tested on a host
cves_to_test: []
selinux_state: enforcing
There are no known dependencies.
The following example playbook would ensure that Bash prone to shell shock is available on the host.
---
- hosts: webservers
remote_user: admin
become: true
roles:
- redteam-project.cyber-range-target
vars:
cves_to_test:
- CVE-2014-6271
GPLv3