Sign inSign up

abh1sek/jadx

By abh1sek

Updated over 6 years ago

Docker image for JADX Decompiler

Image
0

427

abh1sek/jadx repository overview

Docker Container for JADX

JADX is a DEX to Java decompiler by skylot. This repository contains Dockerfile and instructions to run JADX as a docker container.

Getting Started

Pull the image
docker pull abh1sek/jadx
Run Cli

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
Run GUI

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

Tag summary

Content type

Image

Digest

Size

264.7 MB

Last updated

over 6 years ago

docker pull abh1sek/jadx