Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
pyjadx — Python bindings for JADX. | Kitploit
Tools/GitHubGitHub/amruth-sn/pyjadx
Android SecurityStatic AnalysisCode AnalysisReverse EngineeringMobile SecurityBinary Analysis
GitHubamruth-sn/pyjadx

pyjadx

Python bindings for JADX.

View Repository
65 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

pyjadx

Python bindings for JADX via JPype. Decompile Android APK and DEX files to Java source from Python.

root@kitploit:~
from pyjadx import Jadx

with Jadx("app.apk") as jadx:
    for cls in jadx.classes:
        print(cls.full_name)
        print(cls.code)

Why pyjadx?

JADX is the leading open-source Android decompiler — it produces clean Java/Kotlin source from Dalvik bytecode, preserving class hierarchies, generics, exception handling, and annotations. pyjadx brings this into Python without subprocess overhead: JADX runs in-process via JPype.

Install

root@kitploit:~
pip install pyjadx

Requirements: JDK 11+ (JADX JARs are downloaded automatically on first use).

Quick start

root@kitploit:~
from pyjadx import Jadx

with Jadx("app.apk") as jadx:
    # All top-level classes (inner classes via cls.inner_classes)
    for cls in jadx.classes:
        print(cls.full_name, len(cls.methods), "methods")

    # Search by fully qualified name
    main = jadx.search_class("com.example.MainActivity")
    if main:
        print(main.code)

    # Method-level decompilation
    for method in main.methods:
        print(f"{method.name}: {method.code}")

    # Cross-references
    for method in main.methods:
        print(f"{method.name} called by: {[c.name for c in method.callers]}")

    # Package navigation
    for pkg in jadx.packages:
        print(pkg.name, len(pkg.classes), "classes")

Supported inputs

FormatExample
APKJadx("app.apk")
DEXJadx("classes.dex")
Multi-DEX APKHandled transparently — all classes merged

API reference

Jadx(path, *, threads=None, mode="auto", code_cache=False)

Main entry point. Use as a context manager or call load()/close() manually.

Properties:

Methods:

JavaClass

JavaMethod

JavaField

JavaPackage

Escape hatch

Every wrapper exposes its underlying JADX Java object via .java. This lets you call any JADX API we haven't wrapped yet:

root@kitploit:~
with Jadx("app.apk") as jadx:
    cls = jadx.search_class("com.example.Foo")
    # Call JADX Java API directly
    code_info = cls.java.getCodeInfo()

JVM coexistence

pyjadx coexists with other JPype consumers (e.g., PyGhidra) in the same process. If a JVM is already running, pyjadx.start() adds JADX JARs to the existing classpath. If not, it starts one.

root@kitploit:~
import pyghidra
pyghidra.start()  # starts JVM for Ghidra

import pyjadx
pyjadx.start()    # adds JADX JARs to existing JVM — no conflict

Configuration

Custom JADX installation:

root@kitploit:~
# Via environment variable
# export JADX_HOME=/opt/jadx

# Or at runtime
import pyjadx
pyjadx.start(jadx_home="/opt/jadx")

JAR caching: JADX JARs are auto-downloaded from Maven Central on first use and cached at ~/.pyjadx/jars/<version>/.

License

MIT

Download Tool
ParameterDescription
pathPath to APK or DEX file
threadsJADX thread pool size (None = CPU count)
mode"auto", "restructure", "simple", or "fallback"
code_cacheFalse = in-memory cache (default), True = disk-backed
PropertyTypeDescription
classeslist[JavaClass]Top-level classes across all DEX files
packageslist[JavaPackage]Package-level navigation
class_countintNumber of top-level classes
javaJObjectEscape hatch to underlying jadx.api.JadxDecompiler
MethodDescription
load()Load and resolve classes (called by __enter__)
close()Release resources (called by __exit__)
decompile_all()Eagerly decompile all classes
search_class(name)Find class by fully qualified name
PropertyTypeDescription
namestrShort name ("MainActivity")
full_namestrFully qualified ("com.example.MainActivity")
packagestrPackage name
codestrDecompiled Java source (lazy, cached)
smalistrSmali disassembly (lazy, cached)
methodslist[JavaMethod]Methods in this class
fieldslist[JavaField]Fields in this class
inner_classeslist[JavaClass]Inner/anonymous classes
declaring_classJavaClass | NoneParent class (if inner)
top_classJavaClassOutermost enclosing class
dependencieslist[JavaClass]Classes this class depends on
is_innerboolWhether this is an inner class
javaJObjectEscape hatch to jadx.api.JavaClass
PropertyTypeDescription
namestrMethod name
full_namestrFully qualified with class
codestrDecompiled source (lazy, cached)
callerslist[JavaMethod]Methods that call this one (lazy, cached)
calleeslist[JavaMethod]Methods this one calls (lazy, cached)
override_relatedlist[JavaMethod]Bidirectional override chain
declaring_classJavaClassClass this method belongs to
javaJObjectEscape hatch to jadx.api.JavaMethod
PropertyTypeDescription
namestrField name
full_namestrFully qualified with class
typestrField type as string
callerslist[JavaMethod]Methods referencing this field (lazy, cached)
declaring_classJavaClassClass this field belongs to
javaJObjectEscape hatch to jadx.api.JavaField
PropertyTypeDescription
namestrFull package name
classeslist[JavaClass]Classes in this package
sub_packageslist[JavaPackage]Sub-packages
javaJObjectEscape hatch to jadx.api.JavaPackage