From b70b491314e5e0fc36372608ab952fba5e0fdb8d Mon Sep 17 00:00:00 2001 From: Malfurious Date: Wed, 14 Feb 2024 22:07:16 -0500 Subject: Add pwn Docker image Intended to provide a base environment for working with binary exploitation challenges and enable process isolation of said binaries. Signed-off-by: Malfurious --- tools/pwn-docker/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tools/pwn-docker/Makefile (limited to 'tools/pwn-docker/Makefile') diff --git a/tools/pwn-docker/Makefile b/tools/pwn-docker/Makefile new file mode 100644 index 0000000..78c320e --- /dev/null +++ b/tools/pwn-docker/Makefile @@ -0,0 +1,9 @@ +# Run via `scuba --image pwn-docker []` + +.PHONY: all quick + +all: + docker build --tag pwn-docker --no-cache --pull . + +quick: + docker build --tag pwn-docker . -- cgit v1.2.3