get_xrefs_to
Identify cross-references to a specified address in IDA Pro, filtering by code, data, or all types for precise reverse engineering and binary analysis.
Instructions
Get cross-references to an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Target address to find references to | |
type | No | Type of references to find (code, data, all) |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Target address to find references to",
"type": "string"
},
"type": {
"description": "Type of references to find (code, data, all)",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}