Files
wechat_chatter/frida/tracelog.js
T
2025-11-28 12:49:08 +08:00

22 lines
530 B
JavaScript

defineHandler({
onEnter(log, args, state) {
log('ccaes_cbc_encrypt_mode() [libcorecrypto.dylib]');
try {
const bt = Thread.backtrace(
this.context,
Backtracer.ACCURATE
)
.map(DebugSymbol.fromAddress)
.join('\n');
log('--- Call Stack ---\n' + bt + '\n-------------------');
} catch (e) {
log('Error printing backtrace: ' + e);
}
},
onLeave(log, retval, state) {
}
});