eyJhb

Results 55 comments of eyJhb

@mykola-mokhnach is there a way to do this for other clients?

Based on the default value of that, it doesn't work. I've had tests hang for hours, and the default value specifies 120s. Most of the time, the case is that...

For others unable to find `/System/Library/Caches/com.apple.dyld`, it has moved into the 2nd biggest dmg - https://github.com/Zuikyo/iOS-System-Symbols/issues/32 . EDIT: also confirmed the same for 16.7.2 :)

Typically happens, when trying to read from a address that is not possible, ie. `0x0`.

Check if addr is `0x0`, ie. https://github.com/jitcor/frida-ios-cipher/blob/2e11a06e082ac7ed956d9528d0fc19cc92629205/agent/index.ts#L199 ```ts function print_arg(addr,len=240) { try { if(addr==null)return "\n"; if(addr==0x0)return "\n"; return "\n"+(hexdump(addr,{length:len})) + "\n"; } catch (e) { if(e instanceof Error){ console.error("print_arg error:",e.stack);...