UNPKG

frida-il2cpp-bridge-my

Version:

(my:Support IOS)Frida module to dump, manipulate and hijack any IL2CPP application at runtime with a high level of abstraction.

10 lines (9 loc) 260 B
/// <reference types="frida-gum" /> import { AllowedType } from "./types"; export interface Valuable { value: AllowedType; valueHandle: NativePointer; } export interface Invokable { invoke<T extends AllowedType>(...parameters: AllowedType[]): T; }