mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
7 lines
182 B
Python
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))
|