Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down