ida_rename_global_variable
Rename global variables in the IDA database by specifying the old and new names to simplify reverse engineering and code analysis.
Instructions
Rename a global variable in the IDA database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_name | Yes | ||
old_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"new_name": {
"title": "New Name",
"type": "string"
},
"old_name": {
"title": "Old Name",
"type": "string"
}
},
"required": [
"old_name",
"new_name"
],
"title": "RenameGlobalVariable",
"type": "object"
}