使用3个命令从Android APK中提取代码

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 17:39   1732   0

我是说,有3种工具

Disclaimer

这篇文章仅供参考和教育用途

Requirements

Terminal Time

# extract classes.dex
unzip -j <apkfile.apk> classes.dex
# transform dex file to jar file
d2j-dex2jar.sh classes.dex
# read the sources
jd-gui classes-dex2jar.jar

Bonus

您是否使用NativeScript / Ionic / Cordova / Phonegap /“插入一些基于Webview的移动框架”? 这是有人可以轻松读取您的JavaScript代码的方式

# find the bundled JS
unzip -l <apK file> | grep '.js'
# extract the bundle
unzip -j <apk file> assets/app.js
# find endpoint, or api keys
cat app.js | grep 'api*\|http*'
# DoS the endpoints
echo "just kidding"

Edit

如果您想避免使用命令,只需将应用程序与UI一起使用

希望您发现它有用且具有教育意义。

Cover Image from https://www.eff.org/issues/coders/reverse-engineering-faq

from: https://dev.to//protium/extract-code-from-android-apk-with-3-commands-1o4a

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP