jadx:开源的Dex 到 Java反编译工具

jadx:开源的Dex 到 Java反编译工具#挑战30天在头条写日记#jadx – Dex 到 Java 反编译器用于从 Android Dex 和 Apk 文件生成 Java 源代码的命

大家好,欢迎来到IT知识分享网。

#挑战30天在头条写日记#

jadx – Dex 到 Java 反编译器

用于从 Android Dex 和 Apk 文件生成 Java 源代码的命令行和 GUI 工具

❗❗❗ 请注意,大多数情况下jadx无法反编译全部100%的代码,因此会出现错误。查看故障排除指南以获取解决方法(参考:https://github.com/skylot/jadx/wiki/Troubleshooting-Q&A#decompilation-issues)

主要特点:

  • 将 Dalvik 字节码从 APK、dex、aar、aab 和 zip 文件反编译为 java 类
  • 解码AndroidManifest.xml和其他资源resources.arsc
  • 包括反混淆器

jadx-gui 功能:

  • 使用突出显示的语法查看反编译代码
  • 跳转到声明
  • 查找用法
  • 全文搜索
  • smali 调试器,检查wiki 页面的设置和使用

Jadx-gui 键绑定可以在这里找到

请在此处查看这些功能的实际应用:jadx-gui 功能概述

jadx:开源的Dex 到 Java反编译工具

下载

  • 从 github 发布:
  • 最新的不稳定版本

下载解压 zip 文件后,转到bin目录并运行:

  • jadx- 命令行版本
  • jadx-gui- 用户界面版本

在 Windows 上.bat双击运行文件
注意:确保您已安装 Java 11 或更高版本的 64 位版本。对于 Windows,您可以从oracle.com下载它(选择 x64 Installer)。

安装

  1. 拱门Linux
  2. sudo pacman -S jadx
  3. 苹果系统
  4. brew install jadx
  5. 平轮
  6. flatpak install flathub com.github.skylot.jadx

使用 jadx 作为库

你可以在你的java项目中使用jadx,查看wiki页面上的详细信息

从源代码构建

必须安装 JDK 11 或更高版本:

git clone https://github.com/skylot/jadx.git cd jadx ./gradlew dist 

(在 Windows 上,使用gradlew.bat代替./gradlew)

运行 jadx 的脚本将被放置build/jadx/bin 并打包到build/jadx-<version>.zip

用法

jadx[-gui] [command] [options] <input files> (.apk, .dex, .jar, .class, .smali, .zip, .aar, .arsc, .aab) commands (use '<command> --help' for command options): plugins - manage jadx plugins options: -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 --single-class - decompile a single class, full name, raw or alias --single-class-output - file or dir for write if decompile a single class --output-format - can be 'java' or 'json', default: java -e, --export-gradle - save as android gradle project -j, --threads-count - processing threads count, default: 4 -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 --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 parsing and processing --add-debug-lines - add comments with debug line numbers if available --no-inline-anonymous - disable anonymous classes inline --no-inline-methods - disable methods inline --no-move-inner-classes - disable move inner classes into parent --no-inline-kotlin-lambda - disable inline for Kotlin lambdas --no-finally - don't extract finally block --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 --mappings-path - deobfuscation mappings file or directory. Allowed formats: Tiny and Tiny v2 (both '.tiny'), Enigma (.mapping) or Enigma directory --mappings-mode - set mode for handling the deobfuscation mapping file: 'read' - just read, user can always save manually (default) 'read-and-autosave-every-change' - read and autosave after every change 'read-and-autosave-before-closing' - read and autosave before exiting the app or closing the project 'ignore' - don't read or save (can be used to skip loading mapping files referenced in the project file) --deobf - activate deobfuscation --deobf-min - min length of name, renamed if shorter, default: 3 --deobf-max - max length of name, renamed if longer, default: 64 --deobf-cfg-file - deobfuscation mappings file used for JADX auto-generated names (in the JOBF file format), default: same dir and name as input file with '.jobf' extension --deobf-cfg-file-mode - set mode for handling the JADX auto-generated names' 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 --deobf-use-sourcename - use source file name as class name alias --deobf-res-name-source - better name source for resources: 'auto' - automatically select best name (default) 'resources' - use resources names 'code' - use R class fields names --use-kotlin-methods-for-var-names - use kotlin intrinsic methods to rename variables, values: disable, apply, apply-and-hide, default: apply --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) --integer-format - how integers are displayed: 'auto' - automatically select (default) 'decimal' - use decimal 'hexadecimal' - use hexadecimal --fs-case-sensitive - treat filesystem as case sensitive, false by default --cfg - save methods control flow graph to dot file --raw-cfg - save methods control flow graph (use raw instructions) -f, --fallback - set '--decompilation-mode' to 'fallback' (deprecated) --use-dx - use dx/d8 to convert java bytecode --comments-level - set code comments level, values: error, warn, info, debug, user-only, none, default: info --log-level - set log level, values: quiet, progress, error, warn, info, debug, default: progress -v, --verbose - verbose output (set --log-level to DEBUG) -q, --quiet - turn off output (set --log-level to QUIET) --version - print jadx version -h, --help - print this help Plugin options (-P<name>=<value>): 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 3) kotlin-metadata: Use kotlin.Metadata annotation for code generation - kotlin-metadata.class-alias - rename class alias, values: [yes, no], default: yes - kotlin-metadata.method-args - rename function arguments, values: [yes, no], default: yes - kotlin-metadata.fields - rename fields, values: [yes, no], default: yes - kotlin-metadata.companion - rename companion object, values: [yes, no], default: yes - kotlin-metadata.data-class - add data class modifier, values: [yes, no], default: yes - kotlin-metadata.to-string - rename fields using toString, values: [yes, no], default: yes - kotlin-metadata.getters - rename simple getters to field names, values: [yes, no], default: yes 4) rename-mappings: various mappings support - rename-mappings.format - mapping format, values: [auto, TINY, TINY_2, ENIGMA, ENIGMA_DIR, MCP, SRG, TSRG, TSRG2, PROGUARD], default: auto - rename-mappings.invert - invert mapping, values: [yes, no], default: no 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 jadx -Pdex-input.verify-checksum=no app.apk 

这些选项也适用于从命令行运行的 jadx-gui 并覆盖首选项对话框中的选项

项目地址

GitHub – skylot/jadx: Dex to Java decompiler

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/47574.html

(0)
上一篇 2024-09-19 21:00
下一篇 2024-09-19 21:45

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

关注微信