1 apktool + dex2jar + jd-gui
apktool
#apktool:
brew install apktool
# check apktool install
sw@MacBook-Pro ~ % apktool -version
2.4.1
# 反编译目标APK文件,执行完毕后目录下会生成反编译apk的对应文件夹
apktool d abc.apk
# 编译生成的classes.dex文件
dex2jar
从这里下载 dex2jar
解压dex2jar
sh d2j-dex2jar.sh classes.dex --force
生成 classes-dex2jar.jar
jd-gui
从这里下载 jd-gui
解压打开,将上面的 jar 拖入即可
2 Decompile APK(反编译APK)
#
sw@MacBook-Pro ~ % cd Downloads/decompile-apk-2.2
sw@MacBook-Pro decompile-apk-2.2 % pwd
/Users/sw/Downloads/decompile-apk-2.2
# 运行反编译 APK
sw@MacBook-Pro decompile-apk-2.2 % ./decompile-apk.sh /Users/sw/Documents/leon_workspace/apk_get/wenshuapp.apk
You can choose the following three ways to decompile an apk file
# 选择想要用的 JADX
1: using apktool/dex2jar/jd-gui to decompile apk
2: using ClassyShark to decompile apk
3: using jadx to decompile apk
4: using bytecode-viewer to decompile apk
q: exit
Please input your choice(1, 2, 3, 4):3
View the decompile file
INFO - output directory: wenshuapp
INFO - loading ...
这种比上面的编译结果更准确,同时支持的搜索等功能也更多
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/35542.html