iddoeldor / frida-snippets

Hand-crafted Frida examples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

frida how to hook sub_xxxxx

github410117 opened this issue · comments

image
Like this funcion in IDA, how to hook in frida,iOS
Hope to receive your reply,Thx

Interceptor.attach(Module.findBaseAddress('YourModule').add(0x15994), {
  onEnter: function (args) { 
    console.log('invoked'); 
  }
});