首页
社区
课程
招聘
[求助]有无大屌研究过fb的fizz fizz....fizz
2022-8-6 00:16 3643

[求助]有无大屌研究过fb的fizz fizz....fizz

2022-8-6 00:16
3643

加上burp代理就被服务器主动拒了...都没有到客户端验证证书这一步....
有研究Facebook Instagram lite各种版本的一起讨论讨论

 

附带lite版本过 sslping脚本, 修改一下返回值即可, 但是burp抓不了包

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
function pass_fizz_sslpinning() {
    Interceptor.attach(get_rva('lib_fizz_merged.so', 0x251F54), {
        onEnter: function (args) {
            console.log('X509_verify_cert');
        }
    })
    Interceptor.attach(get_rva('lib_fizz_merged.so', 0x14448C), {
        onEnter: function (args) {
            console.log('DefaultCertificateVerifier::verify');
        }
    })
    Interceptor.attach(get_rva('lib_fizz_merged.so', 0x01269D4), {
        onEnter: function (args) {
            console.log(" Event::CertificateVerify::handle");
        }
    }) 
}
 
function hook_android_dlopen_ext(modeul_name, callback) {
    var android_dlopen_ext = Module.findExportByName(null, "android_dlopen_ext")
    console.log(" android_dlopen_ext:" + android_dlopen_ext);
    Interceptor.attach(android_dlopen_ext, {
        onEnter: function (args) {
            this.file_name = args[0].readCString();
        },
        onLeave: function (retval) {
            if (this.file_name.indexOf(modeul_name) >= 0) {
                console.log("loaded : " + this.file_name)
                callback()
            }
        },
    })
}
 
hook_android_dlopen_ext('lib_fizz_merged.so', pass_fizz_sslpinning)

Instagram ios 版本的sslping有通杀脚本.
@NpProblem1 免费送(反正过不了行为风控)


阿里云助力开发者!2核2G 3M带宽不限流量!6.18限时价,开 发者可享99元/年,续费同价!

收藏
点赞0
打赏
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回