The memsavep
plugin does one thing and does it well: saves a snapshot of memory when a particular fraction of the replay has been reached (e.g., at 50% of the way through the replay). The snapshot is a raw memory snapshot suitable for analysis with Volatility or Rekall.
Once the given point in the replay has been reached and the memory has been dumped, memsavep
terminates the replay.
memsavep
accepts two arguments:
percent
: double, defaults to 0.0. The percentage of the replay at which we should dump memory.file
: string, defaults to "memsavep.raw". The filename to dump RAM out to.
None.
None.
To dump memory at 66.2% to mymem.dd
:
$PANDA_PATH/x86_64-softmmu/qemu-system-x86_64 -replay foo \
-panda memsavep:percent=66.2,file=mymem.dd