How-To: Radare2
Cyber Training GuideHow-To: GDB
  • How-To: Radare2
  • Introduction
  • Radare2 Modules
    • Seeking: The s Module
    • Editing Configuration: The e Module
    • Binary Info: The i Module
      • Imports and Exports
      • Checking Security
      • Symbols and Strings
    • Static Analysis: The a Module
      • Cross-References
      • Functions
      • Variables
    • Debugging: The d Module
      • Breakpoints
      • Memory
      • Running the Binary
    • Printing: The p Module
      • Printing Data
      • Searching: The / Module
  • Display Modes
    • Visual Mode
      • Analysis with Visual Mode
      • Visual Panels
    • Graph Mode
  • The Radare2 Suite
    • Rabin2: File Analysis
    • Rafind2: Pattern Matching
Powered by GitBook
On this page

Was this helpful?

  1. Radare2 Modules
  2. Static Analysis: The a Module

Cross-References

Cross-References (X-Refs)

axt - Find X-Refs to a function afx - Analyze X-Refs from a function axf - axff - Find X-Refs from a function

[0x08049050]> afx
c 0x08049050 -> 0x0804c010 jmp dword [reloc.fflush]
[0x08049050]> axf
CODE 0x804c010 reloc.fflush
[0x08049050]> axff
CODE 0x08049050 0x0804c010 reloc.fflush
PreviousStatic Analysis: The a ModuleNextFunctions

Last updated 1 year ago

Was this helpful?