【发布时间】:2014-02-27 19:05:20
【问题描述】:
您好,我有一个快速的问题。
我一直在尝试将 IDA Pro 中的完整内存转储保存在一个变量中以使用 python 脚本执行搜索,但我没有找到使用 idaapi 执行此操作的正确函数。
我想做这样的事情:
import idaapi
dump=get_memory_dump() # Or whatever function to do it
if "foo" in dump:
print "foo is in dump"
我怎样才能得到转储? 正如你所看到的,我想在调试应用程序时编写一个脚本来在内存中找到模式。
非常感谢
【问题讨论】: