You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some apps crashed while using Introspy, some didn't. So I narrowed it down to the rand() hook and narrowed it down to 64-bit only. As an example, I am using Apple's SimpleURLConnections project and added this simple call NSLog(@"Calling C Rand() - %d", rand()); in -[GetController startReceive] method and it crashes when building the app for 64-bit. If built for 32-bit, it works just fine.
Went into replaced_rand() in hooks/LibCHooks.m and found that it crashes at the call to original_rand(). I logged the value of the original_rand() pointer and it isn't null.
I'm testing on:
iPad Air
iOS 7.1.2
Some apps crashed while using Introspy, some didn't. So I narrowed it down to the rand() hook and narrowed it down to 64-bit only. As an example, I am using Apple's SimpleURLConnections project and added this simple call
NSLog(@"Calling C Rand() - %d", rand());
in-[GetController startReceive]
method and it crashes when building the app for 64-bit. If built for 32-bit, it works just fine.Went into
replaced_rand()
inhooks/LibCHooks.m
and found that it crashes at the call tooriginal_rand()
. I logged the value of theoriginal_rand()
pointer and it isn't null.I am not sure how to proceed here.
Here's the backtrace if it helps any.
The text was updated successfully, but these errors were encountered: