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.
11 lines (10 loc) • 363 B
TypeScript
import { NativeStruct } from "../native-struct";
import { _Il2CppObject } from "./object";
export declare class _Il2CppString extends NativeStruct {
get content(): string | null;
set content(value: string | null);
get length(): number;
get object(): _Il2CppObject;
static from(content: string): _Il2CppString;
toString(): string | null;
}