12 lines
208 B
YAML
12 lines
208 B
YAML
# tasks file for ctf
|
|
- name: Install CTF tools (official repos)
|
|
become: true
|
|
pacman:
|
|
name:
|
|
- wireshark-qt
|
|
- nmap
|
|
- openbsd-netcat
|
|
- binwalk
|
|
- gobuster
|
|
state: present
|