classroom/roles/pwndbg/tasks/main_lin.yml
2026-04-07 18:36:49 +02:00

19 lines
320 B
YAML

- name: Install dependencies
apt:
name:
- git
- name: Download pwntools
command:
cmd: git clone https://github.com/pwndbg/pwndbg
creates: pwndbg
- name: Pull latest pwntools
command:
cmd: git pull
chdir: pwndbg
- name: Install pwntools
command:
cmd: ./setup.sh
chdir: pwndbg