frida_write_typed
Write a typed value to a process memory location by specifying target, address, data type, and value.
Instructions
Write a typed value to 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'.
value: string representation of the value to write.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | ||
| address | Yes | ||
| type | Yes | ||
| value | Yes |