create_stack_frame_variable
Generate stack frame variables in IDA Pro by specifying function address, offset, variable name, and type to enhance reverse engineering analysis.
Instructions
For a given function, create a stack variable at an offset and with a specific type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
function_address | Yes | Address of the disassembled function to set the stack frame variables | |
offset | Yes | Offset of the stack frame variable | |
type_name | Yes | Type of the stack variable | |
variable_name | Yes | Name of the stack variable |
Input Schema (JSON Schema)
{
"properties": {
"function_address": {
"description": "Address of the disassembled function to set the stack frame variables",
"title": "Function Address",
"type": "string"
},
"offset": {
"description": "Offset of the stack frame variable",
"title": "Offset",
"type": "string"
},
"type_name": {
"description": "Type of the stack variable",
"title": "Type Name",
"type": "string"
},
"variable_name": {
"description": "Name of the stack variable",
"title": "Variable Name",
"type": "string"
}
},
"required": [
"function_address",
"offset",
"variable_name",
"type_name"
],
"title": "create_stack_frame_variableArguments",
"type": "object"
}