Win32::Process::Memory for Perl has a nice function to search a process's memory for arrays of uint, int, etc... Can the same be done with pydbg or other module for Python?
H开发者_Python百科ere is an autohotkey script for fetching a list of all the memory pages that can then be searched individually. This is how the perl module works internally anyway.
I got it working with autohotkey.
Looking throught the pydbg examples in grayhat python and looking at the source of the snapshot functions in pydbg.py, should be straightforward with python as well.
精彩评论