get_stack_frame_variables
Retrieve stack frame variables for a specified function in IDA Pro, enabling detailed reverse engineering analysis by identifying local variables and their addresses.
Instructions
Retrieve the stack frame variables for a given function
Input Schema
Name | Required | Description | Default |
---|---|---|---|
function_address | Yes | Address of the disassembled function to retrieve the stack frame variables |
Input Schema (JSON Schema)
{
"properties": {
"function_address": {
"description": "Address of the disassembled function to retrieve the stack frame variables",
"title": "Function Address",
"type": "string"
}
},
"required": [
"function_address"
],
"title": "get_stack_frame_variablesArguments",
"type": "object"
}