From 58b750bc776e8a1af5f5807796a32045d038cb8b Mon Sep 17 00:00:00 2001 From: Yan Date: Thu, 4 Sep 2025 22:45:21 -0700 Subject: [PATCH 1/4] use ubuntu 24.04 for the simple image --- simple/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/simple/Dockerfile b/simple/Dockerfile index 09c6ad3..7084552 100644 --- a/simple/Dockerfile +++ b/simple/Dockerfile @@ -1,5 +1,6 @@ # syntax=docker/dockerfile:1 -FROM python:3.13-slim +FROM ubuntu:24.04 +RUN apt-get update && apt-get install -y python3 python3-requests python3-flask && apt-get clean ADD --chown=0:0 --chmod=6755 http://github.com/pwncollege/exec-suid/releases/latest/download/exec-suid /usr/bin/exec-suid From 7f23e2acaae12dc6cb0ccffbc5f1cd14c375f7da Mon Sep 17 00:00:00 2001 From: Yan Date: Fri, 5 Sep 2025 01:03:21 -0700 Subject: [PATCH 2/4] sigh --- simple/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple/Dockerfile b/simple/Dockerfile index 7084552..5cc8825 100644 --- a/simple/Dockerfile +++ b/simple/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 FROM ubuntu:24.04 -RUN apt-get update && apt-get install -y python3 python3-requests python3-flask && apt-get clean +RUN apt-get update && apt-get install -y python3 && apt-get clean ADD --chown=0:0 --chmod=6755 http://github.com/pwncollege/exec-suid/releases/latest/download/exec-suid /usr/bin/exec-suid From 153f0a1b4c4591a55b32db6252a15f359eb884b1 Mon Sep 17 00:00:00 2001 From: Yan Date: Fri, 5 Sep 2025 12:05:09 -0700 Subject: [PATCH 3/4] backwards compatibility --- simple/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple/Dockerfile b/simple/Dockerfile index 5cc8825..c8eee6a 100644 --- a/simple/Dockerfile +++ b/simple/Dockerfile @@ -2,5 +2,5 @@ FROM ubuntu:24.04 RUN apt-get update && apt-get install -y python3 && apt-get clean - +RUN ln -s /usr/bin/python3 /usr/local/bin/python3 ADD --chown=0:0 --chmod=6755 http://github.com/pwncollege/exec-suid/releases/latest/download/exec-suid /usr/bin/exec-suid From 684d7c93df83fd68dcdde576fac93a813b5c42ba Mon Sep 17 00:00:00 2001 From: Yan Date: Sat, 6 Sep 2025 00:48:50 -0700 Subject: [PATCH 4/4] Revert "backwards compatibility" This reverts commit 153f0a1b4c4591a55b32db6252a15f359eb884b1. --- simple/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple/Dockerfile b/simple/Dockerfile index c8eee6a..5cc8825 100644 --- a/simple/Dockerfile +++ b/simple/Dockerfile @@ -2,5 +2,5 @@ FROM ubuntu:24.04 RUN apt-get update && apt-get install -y python3 && apt-get clean -RUN ln -s /usr/bin/python3 /usr/local/bin/python3 + ADD --chown=0:0 --chmod=6755 http://github.com/pwncollege/exec-suid/releases/latest/download/exec-suid /usr/bin/exec-suid