zhaoboy666 发表于 2019-11-27 17:18:01

某宝系抓包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;
        }
    });
});
某宝系抓包hook模块,https://github.com/zhaoboy9692/me-tools/tree/master/%E6%B7%98%E5%AE%9D%E6%8A%93%E5%8C%85hook

目前匹配了com.ta*ba*和Tia*猫的包名

fuckspider 发表于 2019-12-9 10:32:49

zhaoboy666

山那边的瘦子 发表于 2019-12-9 10:50:02

感谢分享

13302924987 发表于 2020-1-16 09:54:35

666

花儿谢了 发表于 2020-3-22 22:38:08


原来是mtopsdk,the socket open is yes or no

bella 发表于 2020-4-27 11:46:57

nb

huruwo 发表于 2020-6-21 23:35:55

我看闲鱼的SwitchConfig里面没有isGlobal这个函数的
页: [1]
查看完整版本: 某宝系抓包hook模块