Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Ghidra 9.1.1 #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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 @@ -5,11 +5,12 @@ RUN apt-get update && apt-get install -y wget unzip ed && rm -rf /var/lib/apt/li

# Download Ghidra, verify checksum, extract to /ghidra, delete zip
WORKDIR /tmp
RUN wget -q https://www.ghidra-sre.org/ghidra_9.0_PUBLIC_20190228.zip -O ghidra.zip && \
echo '3b65d29024b9decdbb1148b12fe87bcb7f3a6a56ff38475f5dc9dd1cfc7fd6b2 ghidra.zip' | sha256sum -c
RUN unzip -q ghidra.zip && mv ghidra_9.0 /ghidra && rm ghidra.zip
RUN wget -q https://ghidra-sre.org/ghidra_9.1.1_PUBLIC_20191218.zip -O ghidra.zip && \
echo 'b0d40a4497c66011084e4a639d61ac76da4b4c5cabd62ab63adadb7293b0e506 ghidra.zip' | sha256sum -c
RUN unzip -q ghidra.zip && mv ghidra_9.1.1_PUBLIC /ghidra && rm ghidra.zip

# Setup directory structure
RUN mkdir /repos
WORKDIR /repos
WORKDIR /ghidra

Expand Down