12345678910111213141516171819202122232425262728293031 |
- import {logHHex} from "./logger";
- export let HookImpl = {
- start: function () {
- let module = Process.findModuleByName("libil2cpp.so");
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- setTimeout(function (){
- let nativePointer = module.base.add(0x9AD338).readPointer();
- logHHex(nativePointer);
- },5000);
- }
- }
|