get_xrefs_to
Retrieve cross references to a specified address in IDA Pro for reverse engineering analysis, enabling automated identification of related code or data locations.
Instructions
Get all cross references to the given address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address to get cross references to |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address to get cross references to",
"title": "Address",
"type": "string"
}
},
"required": [
"address"
],
"title": "get_xrefs_toArguments",
"type": "object"
}