ida_rename_multi_global_variables
Rename multiple global variables simultaneously in an IDA database by specifying old-to-new name pairs to streamline reverse engineering workflows.
Instructions
Rename multiple global variables at once in the IDA database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rename_pairs_old2new | Yes |
Input Schema (JSON Schema)
{
"properties": {
"rename_pairs_old2new": {
"items": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"title": "Rename Pairs Old2New",
"type": "array"
}
},
"required": [
"rename_pairs_old2new"
],
"title": "RenameMultiGlobalVariables",
"type": "object"
}