MCPcopy Create free account
hub / github.com/axhlzy/FridaDebugger / getIl2CppModule

Function getIl2CppModule

agent/il2cpp-symbols.ts:170–177  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

168}
169
170function getIl2CppModule(): Module | null {
171 if (il2cppModule !== undefined) {
172 return il2cppModule;
173 }
174
175 il2cppModule = MODULE_NAMES.map(name => Process.findModuleByName(name)).find(module => module !== null) ?? null;
176 return il2cppModule;
177}
178
179function contains(module: Module, address: NativePointer): boolean {
180 const start = module.base;

Callers 5

resolveIl2CppAddressFunction · 0.85
findIl2CppFunctionRangeFunction · 0.85
isUnityIl2CppProcessFunction · 0.85
addMethodFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected