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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -