cemu-idapython/examples/ex_strings.py
elias.bachaalany e27524cca5 idautils: added Strings class to enumerate strings (check ex_strings.py)
gdl.i: added FlowChart and BasicBlock classes (check examples / ex_gdl_qflow_chart)
idc.py : fixed MakeName() and AnalyseArea() (they were not returning return values)
2009-09-16 14:00:31 +00:00

7 lines
182 B
Python

import idautils
s = Strings(False)
s.setup(strtypes=Strings.STR_UNICODE | Strings.STR_C)
for i in s:
print "%x: len=%d type=%d -> '%s'" % (i.ea, i.length, i.type, str(i))