rename_global_variable
Rename a global variable in IDA Pro by specifying the current and new names, enabling accurate code analysis and reverse engineering.
Instructions
Rename a global variable
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_name | Yes | New name for the global variable (empty for a default name) | |
old_name | Yes | Current name of the global variable |
Input Schema (JSON Schema)
{
"properties": {
"new_name": {
"description": "New name for the global variable (empty for a default name)",
"title": "New Name",
"type": "string"
},
"old_name": {
"description": "Current name of the global variable",
"title": "Old Name",
"type": "string"
}
},
"required": [
"old_name",
"new_name"
],
"title": "rename_global_variableArguments",
"type": "object"
}