diff options
author | Malfurious <m@lfurio.us> | 2024-02-14 22:07:16 -0500 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-02-14 22:07:16 -0500 |
commit | b70b491314e5e0fc36372608ab952fba5e0fdb8d (patch) | |
tree | a795d6377eee848033ce7e3467df478b6bfb8ec7 /tools/pwn-docker/Makefile | |
parent | 4b93dc36dc685e4dcddd9753eb9570feca4cfe40 (diff) | |
download | lib-des-gnux-b70b491314e5e0fc36372608ab952fba5e0fdb8d.tar.gz lib-des-gnux-b70b491314e5e0fc36372608ab952fba5e0fdb8d.zip |
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 <m@lfurio.us>
Diffstat (limited to 'tools/pwn-docker/Makefile')
-rw-r--r-- | tools/pwn-docker/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
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 [<cmd>]` + +.PHONY: all quick + +all: + docker build --tag pwn-docker --no-cache --pull . + +quick: + docker build --tag pwn-docker . |