My solutions for CTFs
0

Configure Feed

Select the types of activity you want to include in your feed.

Remove pwndbg

Takumi Akimoto (Dec 12, 2025, 1:43 PM +0900) 2116699e 5883ef5b

+2 -10
+2 -10
docker/Dockerfile
··· 21 21 RUN echo ubuntu ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/ubuntu && \ 22 22 chmod 0440 /etc/sudoers.d/ubuntu 23 23 24 - USER ubuntu 25 - 26 - RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ 27 - --mount=type=cache,target=/var/lib/apt,sharing=locked \ 28 - git clone --depth=1 https://github.com/pwndbg/pwndbg.git ~/pwndbg && \ 29 - cd ~/pwndbg && \ 30 - ./setup.sh && \ 31 - cd ~ && \ 32 - rm -rf ~/pwndbg 24 + COPY --chown=ubuntu:ubuntu gdb-rosetta.sh /usr/local/bin/gdb-rosetta 33 25 34 - COPY --chown=ubuntu:ubuntu gdb-rosetta.sh /usr/local/bin/gdb-rosetta 26 + USER ubuntu