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

version 10.0.4 update #7

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,7 @@ venv.bak/
dmypy.json

# Pyre type checker
.pyre/
.pyre/

Temp*
output*
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# This Dockerfile is a modified version of https://github.com/bskaggs/ghidra-docker/blob/master/Dockerfile

FROM openjdk:11-slim
MAINTAINER anmarcel "[email protected]"

ARG GHIDRA_VERSION=9.1.2_PUBLIC_20200212
ARG GHIDRA_SHA256=ebe3fa4e1afd7d97650990b27777bb78bd0427e8e70c1d0ee042aeb52decac61
ARG GHIDRA_VERSION=10.0.4_PUBLIC_20210928
ARG GHIDRA_SHA256=1ce9bdf2d7f6bdfe5dccd06da828af31bc74acfd800f71ade021d5211e820d5e

RUN useradd -m ghidra && \
mkdir -p /srv/repositories && \
Expand All @@ -22,7 +21,7 @@ RUN apt-get install -y libgtk2.0 libidn11 libglu1-mesa

WORKDIR /opt
RUN apt-get update && apt-get install -y wget gettext-base patch && \
wget -q -O ghidra.zip https://ghidra-sre.org/ghidra_${GHIDRA_VERSION}.zip
wget -q -O ghidra.zip https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_10.0.4_build/ghidra_${GHIDRA_VERSION}.zip
RUN echo "${GHIDRA_SHA256} *ghidra.zip" | sha256sum -c && \
unzip ghidra.zip && \
rm ghidra.zip && \
Expand Down
5 changes: 3 additions & 2 deletions config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"SAMPLES_DIR": "samples",
"IDA_SAMPLES_DIR": "ida_samples",
"GHIDRA_OUTPUT": "output",
"GHIDRA_PATH": "/Applications/ghidra_9.1.2_PUBLIC",
"GHIDRA_PATH": "/mnt/d/soft/Ghidra/ghidra_10.0.3_PUBLIC",
"GHIDRA_SCRIPT": "ghidra_plugins",
"GHIDRA_PROJECT": "ghidra_projects"
"GHIDRA_PROJECT": "ghidra_projects",
"REDIS_CONNECTION": "redis://localhost:6667"
}
3 changes: 2 additions & 1 deletion config/docker_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"GHIDRA_OUTPUT": "output",
"GHIDRA_PATH": "/opt/ghidra/",
"GHIDRA_SCRIPT": "/opt/ghidra_plugins",
"GHIDRA_PROJECT": "/opt/ghidra_projects"
"GHIDRA_PROJECT": "/opt/ghidra_projects",
"REDIS_CONNECTION": "redis://localhost:6667"
}
Loading