import {HookImpl} from "./HookImpl"; export let hooklinker = { start:function (){ // linker64 arm64 if (Process.pointerSize===8){ let module = Process.findModuleByName("linker64"); Interceptor.attach(module.base.add(0xb5b48),{ onEnter:function (args){ var path= args[3].readCString(); console.log("path "+path); if (path.includes("libil2cpp.so")){ HookImpl.start(); } } }) }else { //linker } } }