Ansible playbooks to setup initial configurations, install various utilities, and security tools to localhost.
I needed something to install tools quickly after a new fresh OS install.
This branch is tailored for the disco releases of Ubuntu.
The malware-analysis.yml is tailored for windows 10.
This has been tested on disco 19.04. And also tested on the Windows 10 machine.
Packages to be installed prior to running the playbooks.
$ apt update
$ apt -y install python-apt ansibleOptionally, many of these tools can be installed by the forensics-all package described in Debian Forensics Environment - essential components.
Perform a dry run:
$ sudo ansible-playbook play_apt.yml --checkList tasks or tags:
$ sudo ansible-playbook play_apt.yml --list-tasksInstall or skip specific tasks:
$ sudo ansible-playbook play_apt.yml --tags "deb-utils,pip3-sec"
$ sudo ansible-playbook play_apt.yml --skip-tags "deb-sec,pip-sec"Run playbook and all install tools to localhost:
$ sudo ansible-playbook play_apt.ymlRun the playbook with specific host and install malware-analysis tools (Before launch the play-book please update the host.yml file and also add ssh prive key file into the ssh-creds folder )
$ sudo ANSIBLE_HOST_KEY_CHECKING=False ansible-playbook -i host.yml malware-analysis.yml