edb_call_function
Call any function within the debugged process to test behavior or trigger library calls. Returns the function's return value.
Instructions
Call a function in the context of the debugged process.
Equivalent to GDB's call command. Useful for testing functions
with specific arguments or calling library functions.
Args: params (CallFunctionInput): Function call - function_expr (str): Expression (e.g., 'printf("hello")', 'malloc(100)')
Returns: str: Function result (return value in EAX/RAX)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |