December 2017
Intermediate to advanced
364 pages
7h 30m
English
The following Ansible Playbook will set up the host operating system and dependencies required for Cuckoo Sandbox to work. This has different roles to install all the required packages in the Ubuntu operating system.
The following roles are included to set up the host system:
- name: setting up cuckoo hosts: cuckoo remote_user: ubuntu become: yes roles: - dependencies - virtualbox - yara - cuckoo - start-cukcoo
The dependencies role has lot of apt packages that have to be installed to perform other installations. Then we will set up capabilities for the tcpdump package, so Cuckoo can access them for analysis:
- name: installing pre requirements apt: name: "{{ item }}" state: present update_cache: yes with_items: ...Read now
Unlock full access