delete_stack_frame_variable
Remove a specified stack variable from a function in IDA Pro to streamline reverse engineering workflows. Requires function address and variable name inputs.
Instructions
Delete the named stack variable for a given function
Input Schema
Name | Required | Description | Default |
---|---|---|---|
function_address | Yes | Address of the function to set the stack frame variables | |
variable_name | Yes | Name of the stack variable |
Input Schema (JSON Schema)
{
"properties": {
"function_address": {
"description": "Address of the function to set the stack frame variables",
"title": "Function Address",
"type": "string"
},
"variable_name": {
"description": "Name of the stack variable",
"title": "Variable Name",
"type": "string"
}
},
"required": [
"function_address",
"variable_name"
],
"title": "delete_stack_frame_variableArguments",
"type": "object"
}