get_xrefs_from
Extract cross-references from a specified address in IDA Pro for binary analysis, supporting code, data, or all reference types.
Instructions
Get cross-references from an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Source address to find references from | |
type | No | Type of references to find (code, data, all) |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Source address to find references from",
"type": "string"
},
"type": {
"description": "Type of references to find (code, data, all)",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}