December 2017
Intermediate to advanced
364 pages
7h 30m
English
The following playbook will perform the analysis of the given malware sample files in a local system path and return the reports to using Ansible playbook:
- name: Cuckoo malware sample analysis hosts: cuckoo vars: local_binaries_path: /tmp/binaries tasks: - name: copying malware sample to cuckoo for analysis copy: src: "{{ local_binaries_path }}" dest: "/tmp/binaries/{{ Ansible_hostname }}" - name: submitting the files to cuckoo for analysis command: "cuckoo submit /tmp/binaries/{{ Ansible_hostname }}" ignore_errors: yes
The following screenshot copies the malware samples to a Cuckoo analysis system and submits these files for automated analysis using Ansible playbook:
The preceding ...