README.md 9.5 KB
Newer Older
S
Skylot 已提交
1 2
<img src="https://raw.githubusercontent.com/skylot/jadx/master/jadx-gui/src/main/resources/logos/jadx-logo.png" width="64" align="left" />

S
Skylot 已提交
3
## JADX
4

5
[![Build status](https://github.com/skylot/jadx/workflows/Build/badge.svg)](https://github.com/skylot/jadx/actions?query=workflow%3ABuild)
S
Skylot 已提交
6 7 8 9
![GitHub contributors](https://img.shields.io/github/contributors/skylot/jadx)
![GitHub all releases](https://img.shields.io/github/downloads/skylot/jadx/total)
![GitHub release (latest by SemVer)](https://img.shields.io/github/downloads/skylot/jadx/latest/total)
![Latest release](https://img.shields.io/github/release/skylot/jadx.svg)
S
Skylot 已提交
10
[![Maven Central](https://img.shields.io/maven-central/v/io.github.skylot/jadx-core)](https://search.maven.org/search?q=g:io.github.skylot%20AND%20jadx)
11
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
12

S
Skylot 已提交
13 14
**jadx** - Dex to Java decompiler

15
Command line and GUI tools for producing Java source code from Android Dex and Apk files
S
Skylot 已提交
16

S
Skylot 已提交
17
:exclamation::exclamation::exclamation: Please note that in most cases **jadx** can't decompile all 100% of the code, so errors will occur. Check [Troubleshooting guide](https://github.com/skylot/jadx/wiki/Troubleshooting-Q&A#decompilation-issues) for workarounds
18

19
**Main features:**
20
- decompile Dalvik bytecode to java classes from APK, dex, aar, aab and zip files
21 22 23 24 25 26 27 28
- decode `AndroidManifest.xml` and other resources from `resources.arsc`
- deobfuscator included

**jadx-gui features:**
- view decompiled code with highlighted syntax
- jump to declaration
- find usage
- full text search
S
Skylot 已提交
29
- smali debugger, check [wiki page](https://github.com/skylot/jadx/wiki/Smali-debugger) for setup and usage
S
skylot 已提交
30

31 32
Jadx-gui key bindings can be found [here](https://github.com/skylot/jadx/wiki/JADX-GUI-Key-bindings)

33 34
See these features in action here: [jadx-gui features overview](https://github.com/skylot/jadx/wiki/jadx-gui-features-overview)

S
skylot 已提交
35
<img src="https://user-images.githubusercontent.com/118523/142730720-839f017e-38db-423e-b53f-39f5f0a0316f.png" width="700"/>
36

37
### Download
S
Skylot 已提交
38 39
- release
  from [github: ![Latest release](https://img.shields.io/github/release/skylot/jadx.svg)](https://github.com/skylot/jadx/releases/latest)
S
Skylot 已提交
40
- latest [unstable build ![GitHub commits since tagged version (branch)](https://img.shields.io/github/commits-since/skylot/jadx/latest/master)](https://nightly.link/skylot/jadx/workflows/build-artifacts/master)
S
skylot 已提交
41

S
Skylot 已提交
42 43
After download unpack zip file go to `bin` directory and run:
- `jadx` - command line version
44
- `jadx-gui` - UI version
S
Skylot 已提交
45 46

On Windows run `.bat` files with double-click\
S
skylot 已提交
47
**Note:** ensure you have installed Java 11 or later 64-bit version.
S
Skylot 已提交
48
For Windows, you can download it from [oracle.com](https://www.oracle.com/java/technologies/downloads/#jdk17-windows) (select x64 Installer).
49 50

### Install
S
Skylot 已提交
51
1. Arch linux ![Arch Linux package](https://img.shields.io/archlinux/v/community/any/jadx?label=)
52
    ```bash
S
Skylot 已提交
53
    sudo pacman -S jadx
54
    ```
S
Skylot 已提交
55
2. macOS ![homebrew version](https://img.shields.io/homebrew/v/jadx?label=)
56
    ```bash
S
Skylot 已提交
57
    brew install jadx
58
    ```
S
Skylot 已提交
59 60 61 62
3. [Flathub ![Flathub](https://img.shields.io/flathub/v/com.github.skylot.jadx?label=)](https://flathub.org/apps/details/com.github.skylot.jadx)
   ```bash
   flatpak install flathub com.github.skylot.jadx
   ```
63

S
skylot 已提交
64 65 66
### Use jadx as a library
You can use jadx in your java projects, check details on [wiki page](https://github.com/skylot/jadx/wiki/Use-jadx-as-a-library)

67
### Build from source
S
Skylot 已提交
68
JDK 8 or higher must be installed:
69 70 71 72 73
```
git clone https://github.com/skylot/jadx.git
cd jadx
./gradlew dist
```
S
Skylot 已提交
74

S
skylot 已提交
75
(on Windows, use `gradlew.bat` instead of `./gradlew`)
S
Skylot 已提交
76

S
Skylot 已提交
77 78 79
Scripts for run jadx will be placed in `build/jadx/bin`
and also packed to `build/jadx-<version>.zip`

S
Skylot 已提交
80 81
### Usage
```
82
jadx[-gui] [options] <input files> (.apk, .dex, .jar, .class, .smali, .zip, .aar, .arsc, .aab)
S
Skylot 已提交
83
options:
84 85 86 87 88
  -d, --output-dir                    - output directory
  -ds, --output-dir-src               - output directory for sources
  -dr, --output-dir-res               - output directory for resources
  -r, --no-res                        - do not decode resources
  -s, --no-src                        - do not decompile source code
S
Skylot 已提交
89 90
  --single-class                      - decompile a single class, full name, raw or alias
  --single-class-output               - file or dir for write if decompile a single class
91
  --output-format                     - can be 'java' or 'json', default: java
92
  -e, --export-gradle                 - save as android gradle project
93
  -j, --threads-count                 - processing threads count, default: 4
S
Skylot 已提交
94 95 96 97 98
  -m, --decompilation-mode            - code output mode:
                                         'auto' - trying best options (default)
                                         'restructure' - restore code structure (normal java code)
                                         'simple' - simplified instructions (linear, with goto's)
                                         'fallback' - raw instructions without modifications
99 100 101
  --show-bad-code                     - show inconsistent code (incorrectly decompiled)
  --no-imports                        - disable use of imports, always write entire package name
  --no-debug-info                     - disable debug info
102
  --add-debug-lines                   - add comments with debug line numbers if available
103
  --no-inline-anonymous               - disable anonymous classes inline
104
  --no-inline-methods                 - disable methods inline
105 106 107 108
  --no-replace-consts                 - don't replace constant value with matching constant field
  --escape-unicode                    - escape non latin characters in strings (with \u)
  --respect-bytecode-access-modifiers - don't change original access modifiers
  --deobf                             - activate deobfuscation
109 110
  --deobf-min                         - min length of name, renamed if shorter, default: 3
  --deobf-max                         - max length of name, renamed if longer, default: 64
111
  --deobf-cfg-file                    - deobfuscation map file, default: same dir and name as input file with '.jobf' extension
112 113 114 115 116
  --deobf-cfg-file-mode               - set mode for handle deobfuscation map file:
                                         'read' - read if found, don't save (default)
                                         'read-or-save' - read if found, save otherwise (don't overwrite)
                                         'overwrite' - don't read, always save
                                         'ignore' - don't read and don't save
117
  --deobf-use-sourcename              - use source file name as class name alias
118
  --deobf-parse-kotlin-metadata       - parse kotlin metadata to class and package names
119
  --use-kotlin-methods-for-var-names  - use kotlin intrinsic methods to rename variables, values: disable, apply, apply-and-hide, default: apply
120 121 122 123 124 125
  --rename-flags                      - fix options (comma-separated list of):
                                         'case' - fix case sensitivity issues (according to --fs-case-sensitive option),
                                         'valid' - rename java identifiers to make them valid,
                                         'printable' - remove non-printable chars from identifiers,
                                        or single 'none' - to disable all renames
                                        or single 'all' - to enable all (default)
126
  --fs-case-sensitive                 - treat filesystem as case sensitive, false by default
127 128
  --cfg                               - save methods control flow graph to dot file
  --raw-cfg                           - save methods control flow graph (use raw instructions)
S
Skylot 已提交
129
  -f, --fallback                      - set '--decompilation-mode' to 'fallback' (deprecated)
130
  --use-dx                            - use dx/d8 to convert java bytecode
131
  --comments-level                    - set code comments level, values: error, warn, info, debug, user-only, none, default: info
132
  --log-level                         - set log level, values: quiet, progress, error, warn, info, debug, default: progress
133 134
  -v, --verbose                       - verbose output (set --log-level to DEBUG)
  -q, --quiet                         - turn off output (set --log-level to QUIET)
135 136
  --version                           - print jadx version
  -h, --help                          - print this help
137 138

Plugin options (-P<name>=<value>):
139 140 141 142 143
 1) dex-input: Load .dex and .apk files
    - dex-input.verify-checksum       - verify dex file checksum before load, values: [yes, no], default: yes
 2) java-convert: Convert .class, .jar and .aar files to dex
    - java-convert.mode               - convert mode, values: [dx, d8, both], default: both
    - java-convert.d8-desugar         - use desugar in d8, values: [yes, no], default: no
144

145 146 147 148 149
Examples:
  jadx -d out classes.dex
  jadx --rename-flags "none" classes.dex
  jadx --rename-flags "valid, printable" classes.dex
  jadx --log-level ERROR app.apk
150
  jadx -Pdex-input.verify-checksum=no app.apk
S
Skylot 已提交
151
```
S
Skylot 已提交
152
These options also worked on jadx-gui running from command line and override options from preferences dialog
S
Skylot 已提交
153

S
Skylot 已提交
154
### Troubleshooting
155 156 157 158 159 160 161 162
Please check wiki page [Troubleshooting Q&A](https://github.com/skylot/jadx/wiki/Troubleshooting-Q&A)

### Contributing
To support this project you can:
  - Post thoughts about new features/optimizations that important to you
  - Submit decompilation issues, please read before proceed: [Open issue](CONTRIBUTING.md#Open-Issue)
  - Open pull request, please follow these rules: [Pull Request Process](CONTRIBUTING.md#Pull-Request-Process)

S
Skylot 已提交
163
---------------------------------------
S
Skylot 已提交
164
*Licensed under the Apache 2.0 License*