assembly - IDA Pro python idaapi -
hello have fast question.
i have been trying save full memory dump in ida pro in variable perform search python script did not find correct function using idaapi.
i want like:
import idaapi dump=get_memory_dump() # or whatever function if "foo" in dump: print "foo in dump"
how can dump? can see want script found pattherns in memory while debugging application.
thank much
use idaapi.nextthat() search byte sequence use dbg_read_memory() read memory of program being debugged. since latter appears make copy, reading, say, 4gb unwise.
Comments
Post a Comment