rename_function
Renames a function in IDA Pro by specifying its address and assigning a new name to improve code analysis and readability during reverse engineering tasks.
Instructions
Rename a function
Input Schema
Name | Required | Description | Default |
---|---|---|---|
function_address | Yes | Address of the function to rename | |
new_name | Yes | New name for the function (empty for a default name) |
Input Schema (JSON Schema)
{
"properties": {
"function_address": {
"description": "Address of the function to rename",
"title": "Function Address",
"type": "string"
},
"new_name": {
"description": "New name for the function (empty for a default name)",
"title": "New Name",
"type": "string"
}
},
"required": [
"function_address",
"new_name"
],
"title": "rename_functionArguments",
"type": "object"
}