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

我是说,有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
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值