I'm trying to hook up Frida to a Node server using the CLI. I'm able to connect to the Node process but unable to hook to functions I've defined in the server
The command I'm using is frida-trace -i 'helloworld' <node-pid> and it returns "Started tracing 0 functions" even though the Node server has the helloworld function.
I'm new to Frida so might be doing something wrong. What is the best way to trace functions running on a Node server with Frida?
I'm trying to hook up Frida to a Node server using the CLI. I'm able to connect to the Node process but unable to hook to functions I've defined in the server The command I'm using is
frida-trace -i 'helloworld' <node-pid>
and it returns "Started tracing 0 functions" even though the Node server has the helloworld function.I'm new to Frida so might be doing something wrong. What is the best way to trace functions running on a Node server with Frida?