淘宝系抓包hook模块
frida脚本:
setTimeout(function () {
console.log('start——*-*-*-*-*-');
Java.perform(function () {
var SwitchConfig = Java.use('mtopsdk.mtop.global.SwitchConfig');
SwitchConfig.isGlobalSpdySwitchOpen.overload().implementation = function () {
var ret = this.isGlobalSpdySwitchOpen.apply(this, arguments);
console.log("开启抓包" + ret);
return false;
}
});
});
xposed模块xposed模块
目前测试淘宝抓包可以用,喜欢的可以start一下
欢迎关注小白微信公众号【小白技术社】,一起学习一起交流
本文系作者 @吾爱小白 原创发布在 我的编程学习之路。未经许可,禁止转载。