mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
21 lines
498 B
Python
21 lines
498 B
Python
#
|
|
# Reference Lister
|
|
#
|
|
# List all functions and all references to them in the current section.
|
|
#
|
|
# Implemented with the idautils module
|
|
#
|
|
from idautils import *
|
|
|
|
# Get current ea
|
|
ea = ScreenEA()
|
|
|
|
# Loop from start to end in the current segment
|
|
for funcea in Functions(SegStart(ea), SegEnd(ea)):
|
|
print "Function %s at 0x%x" % (GetFunctionName(funcea), funcea)
|
|
|
|
# Find all code references to funcea
|
|
for ref in CodeRefsTo(funcea, 1):
|
|
print " called from %s(0x%x)" % (GetFunctionName(ref), ref)
|
|
|