t_fire
t_fire
After a long period of hooking applications on Ubuntu, Python and JavaScript are unable to interact.
Long-term hooking in Ubuntu causes the Python script to be unable to print logs from Frida and receive remote calls from Frida. The scenario involves hooking into an IL2CPP Unity...
``` Error: access violation accessing 0x100000135 at tryField (/script1.js:1764) at tryField (/script1.js:2688) at field (/script1.js:2672) at (/script1.js:4561) at call (native) at (/script1.js:2536) ``` When I'm using frida-il2cpp-bridge to hook a...
frida-node code ``` let device = await frida.getLocalDevice(); let spawnExe = await device.spawn(config.path); console.log(spawnExe); var session = await device.attach(spawnExe); let script = await session.createScript(jsSource); fScript = script; script.message.connect(onMessage); await script.load();...