AntiFrida icon indicating copy to clipboard operation
AntiFrida copied to clipboard

现在貌似不能检测到frida的server了

Open Ch3nYe opened this issue 4 years ago • 2 comments

如题,如果那个老哥复现出来了,希望能私我下😥

Ch3nYe avatar Aug 15 '20 13:08 Ch3nYe

我也没检测到

whyrookie avatar Aug 30 '20 16:08 whyrookie

如题,如果那个老哥复现出来了,希望能私我下 同样检测不到,并且代码貌似有问题? 像下面这段中的do循环中的if判断

wrap_memcmp(const unsigned char *s1, const unsigned char *s2, size_t n) {
    if (n != 0) {
        const unsigned char *p1 = s1;
        const unsigned char *p2 = s2;

        do {
            if (*p1++ != *p2++)
                return (*--p1 - *--p2);
        } while (--n != 0);
    }
    return (0);
}

以及这段这个match的字符串也不匹配啊

//"frida:rpc"
    unsigned char frida_rpc[] =
            {

                    0xfe, 0xba, 0xfb, 0x4a, 0x9a, 0xca, 0x7f, 0xfb,
                    0xdb, 0xea, 0xfe, 0xdc
            };

etipty avatar Jan 30 '21 14:01 etipty