rename_stack_frame_variable
Modify a stack variable name within a disassembled function in IDA Pro. Specify the function address, current variable name, and desired new name for accurate renaming.
Instructions
Change the name of a stack variable for an IDA function
Input Schema
Name | Required | Description | Default |
---|---|---|---|
function_address | Yes | Address of the disassembled function to set the stack frame variables | |
new_name | Yes | New name for the variable (empty for a default name) | |
old_name | Yes | Current name of the 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"
},
"new_name": {
"description": "New name for the variable (empty for a default name)",
"title": "New Name",
"type": "string"
},
"old_name": {
"description": "Current name of the variable",
"title": "Old Name",
"type": "string"
}
},
"required": [
"function_address",
"old_name",
"new_name"
],
"title": "rename_stack_frame_variableArguments",
"type": "object"
}