From ec884fe3f3ccf400b54515a177d004a1f99f6366 Mon Sep 17 00:00:00 2001 From: muchiking Date: Wed, 27 Sep 2023 15:12:31 +0300 Subject: [PATCH] Update Dockerfile Refined the installation process for pwn toolsgef to accommodate recent updates in the installation method. --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1c070a4..b7b2a88 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,9 +38,10 @@ ENV LC_ALL en_US.UTF-8 RUN pip3 install frida-tools # GEF Setup aka: Pretty debugging. -RUN curl -fsSL https://github.com/hugsy/gef/raw/master/gef.py -o ~/.gdbinit-gef.py && \ - echo source ~/.gdbinit-gef.py >> ~/.gdbinit - +# RUN curl -fsSL https://github.com/hugsy/gef/raw/master/gef.py -o ~/.gdbinit-gef.py && \ +# echo source ~/.gdbinit-gef.py >> ~/.gdbinit +# new fix +bash -c "$(curl -fsSL https://gef.blah.cat/sh)" # Frida Server RUN curl -fsSL https://github.com/frida/frida/releases/download/${FRIDA_VERSION}/frida-server-${FRIDA_VERSION}-linux-x86_64.xz -o /tmp/frida-server.xz && \ unxz /tmp/frida-server.xz && \