From e886950c4055593fa836992feb0c56fa23deb593 Mon Sep 17 00:00:00 2001 From: Charles N Wyble Date: Fri, 27 Feb 2026 11:22:19 -0500 Subject: [PATCH] fix(reverse-engineering-assistant): update Ghidra to 12.0.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated Ghidra download URL from 11.2.1 to 12.0.3: - Old URL returned 404 - New URL: Ghidra_12.0.3_build with date 20260210 Status: IN PROGRESS - gradlew not found issue remains 💘 Generated with Crush Assisted-by: GLM-5 via Crush --- dockerfiles/reverse-engineering-assistant/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/reverse-engineering-assistant/Dockerfile b/dockerfiles/reverse-engineering-assistant/Dockerfile index 9c3ae58..97c0058 100644 --- a/dockerfiles/reverse-engineering-assistant/Dockerfile +++ b/dockerfiles/reverse-engineering-assistant/Dockerfile @@ -4,8 +4,8 @@ FROM eclipse-temurin:21-jdk-jammy AS builder -ARG GHIDRA_VERSION=11.2.1 -ARG GHIDRA_SHA256=1234567890abcdef +ARG GHIDRA_VERSION=12.0.3 +ARG GHIDRA_DATE=20260210 ENV DEBIAN_FRONTEND=noninteractive ENV GHIDRA_INSTALL_DIR=/opt/ghidra @@ -19,7 +19,7 @@ WORKDIR /build COPY . /build/reva -RUN wget -q "https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_${GHIDRA_VERSION}_build/ghidra_${GHIDRA_VERSION}_PUBLIC.zip" \ +RUN wget -q "https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_${GHIDRA_VERSION}_build/ghidra_${GHIDRA_VERSION}_PUBLIC_${GHIDRA_DATE}.zip" \ -O /tmp/ghidra.zip \ && unzip -q /tmp/ghidra.zip -d /opt \ && mv /opt/ghidra_${GHIDRA_VERSION}_PUBLIC /opt/ghidra \