23 lines
431 B
YAML
23 lines
431 B
YAML
# tasks file for ctf
|
|
- name: Install CTF tools (official repos)
|
|
become: true
|
|
pacman:
|
|
name:
|
|
- wireshark-qt
|
|
- nmap
|
|
- openbsd-netcat
|
|
- binwalk
|
|
- gobuster
|
|
- gitleaks
|
|
- picocom
|
|
- python-pyserial
|
|
state: present
|
|
|
|
- name: Install CTF AUR packages
|
|
kewlfft.aur.aur:
|
|
name: "{{ item }}"
|
|
use: "{{ aur_helper | default('paru') }}"
|
|
state: present
|
|
loop:
|
|
- nuclei-bin
|