frida_native_function_call
Invoke a native function at a specified address in a target process, with configurable return type and arguments.
Instructions
Call a native function by address inside a target process.
Constructs a NativeFunction with the given signature and invokes it.
target: process name or pid (string).
address: hex address (e.g. '0x100004000').
return_type: return type ('void', 'int', 'pointer', 'uint64', etc.).
arg_types: list of argument types (e.g. ['pointer', 'int']).
args: list of argument values as strings.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | ||
| address | Yes | ||
| return_type | Yes | ||
| arg_types | Yes | ||
| args | Yes |