frida_read_typed
Read typed values from a process's memory by specifying the target process, memory address, and data type. Supports integers, floats, strings, and pointers.
Instructions
Read a typed value from process memory.
target: process name or pid (string).
address: hex address (e.g. '0x100004000').
type: one of 'pointer', 's8', 'u8', 's16', 'u16', 's32', 'u32',
's64', 'u64', 'float', 'double', 'utf8', 'utf16', 'cstring', 'ansi'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | ||
| address | Yes | ||
| type | Yes |