赞
踩
下载:--------------------------
安装:--------------------------
第一二两点可以去淘宝咸鱼上购置一台Root的洋垃圾,比如我的就是在淘宝购买的一台pielx2,就不多说了,我也不会刷机…
下载:charles:https://www.charlesproxy.com/ 注册码:https://www.charles.ren
Wireshark:https://www.wireshark.org/download.html
安装:我喜欢使用charles进行抓包,所以主要讲如何将Charles的CA证书安装到系统目录下,关于fiddler和其他的也可以参照着来,原理都是一样的,将CA证书hash重命名mv到/system/etc/security/cacerts之后chmod 755(777)就可以了.
使用:charles网上随便找找吧,Wireshark:https://www.cnblogs.com/TankXiao/archive/2012/10/10/2711777.html
#charles 证书安装 (安卓7及以上) #PEM或者DER格式均可。 #如果是PEM格式的: openssl x509 -inform PEM -subject_hash_old -in xxx.pem -noout # 如果是DER格式的: openssl x509 -inform PEM -subject_hash_old -in xxx.cer -noout #重命名证书为执行如上命令生成的hash值 ---> hash.0 #传入手机 push xxxx.0 /sdcard #获取手机的root权限 adb shell su #挂载系统目录为可写 mount -o rw,remount / chmod /system 777 mv /sdcard/xxx.0 /system/etc/security/cacerts #修改证书权限 chmod 777 /system/etc/security/cacerts/xxx.0
Wireshark基本使用:
1、选择需要捕获的本地链接
2、使用过滤器快速筛选
下载:Android Studio:https://developer.android.google.cn/studio
Smali:https://bitbucket.org/JesusFreke/smali/downloads/
安装指南:Android Studio:https://developer.android.google.cn/studio/intro
smalidea我下载的是0.06,需要下载高版本的,低版本可能遇到:Fail to load plugin descriptor from file smali-2.4.0.jar。下载之后在AS 的setting - Plugins - install plugins from disk 选择下载的就可以了,下载smalidea是为了能够打桩进行动态调试。
使用:AS官方都出指南了,我就不再赘叙了,smalidea的话多了解一下smali语法看得懂就好了。语法参考:https://www.cnblogs.com/chenxibobo/p/14109077.html
下载:https://github.com/skylot/jadx/releases
安装:搭建了Java环境就下载no-jre-win.exe,有就下with-jre,下载之后双击就可以运行了。
使用:下图是主要用的上的功能。
下载:https://github.com/deathmarine/Luyten/releases
安装:下载exe就可以使用了
使用:将app的apk安装包重命名为.zip,之后确定需要重新编译的类/方法所在的classes.dex,提取出目标dex使用第八点中提到的工具ApkToolBox将dex转为Jar,再使用luyten打开这个Jar就好了,非常的快。
Jadx-gui未能反编译:
throw new UnsupportedOperationException("Method not decompiled: xxx.xxx.xxx.xxx.xxx(int, int):void");
下载:https://github.com/frida/frida/releases
安装:使用adb命令:adb shell getprop ro.product.cpu.abi
查看手机架构下载对于的frida版本
使用:https://zhuanlan.zhihu.com/p/339504595 基本使用,知乎的这篇文章介绍的很详细。
下载:https://github.com/qtfreet00/ApkToolBox
安装:解压就可以用
使用:…
… …
网上随便找个吧
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。