JADX is a DEX to Java decompiler by skylot. This repository contains Dockerfile and instructions to run JADX as a docker container.
docker pull abh1sek/jadx
Here we will decompile an APK into Java code using JADX as a container
docker run --user $(id -u):$(id -g) \
--rm -it -v `pwd`:/workspace abh1sek/jadx \
jadx \
--deobf \
-d ./output \
./input.apk
Here we will start JADX-GUI with current directory mapped inside the container as /workspace
# Allow connections from container
xhost +local:root
docker run --rm -it \
-v `pwd`:/workspace \
-v /etc/localtime:/etc/localtime:ro \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-e "DISPLAY=unix${DISPLAY}" \
abh1sek/jadx \
jadx-gui
# Remove connections from container
xhost -local:root
Content type
Image
Digest
Size
264.7 MB
Last updated
over 6 years ago
docker pull abh1sek/jadx