cemu-idapython/examples/ex_strings.py

7 lines
182 B
Python
Raw Normal View History

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))