mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
17 lines
416 B
Python
17 lines
416 B
Python
from __future__ import print_function
|
|
import idaapi
|
|
|
|
def main():
|
|
if not idaapi.is_debugger_on():
|
|
print("Please run the process first!")
|
|
return
|
|
if idaapi.get_process_state() != -1:
|
|
print("Please suspend the debugger first!")
|
|
return
|
|
|
|
dn = idaapi.get_debug_names(idaapi.cvar.inf.min_ea, idaapi.cvar.inf.max_ea)
|
|
for i in dn:
|
|
print("%08x: %s" % (i, dn[i]))
|
|
|
|
main()
|