Saving all the debugging state

Hi,

Currently I am debugging a win32 application in IDA Pro which crashes at a certain point. All dlls have been loaded etc. I can save of course the idb but I really would like to save all the segments, including the debugger segments. Is there a way to tell IDA to do that without I have to go over every individual segment to unset the ‘D’ in the segment window?

Avi.

  1. Use “analyze module” from the Modules window’s context menu
  2. use Debugger > Take Memory snapshot and pick “All segments”.
    Warning: this will read all memory, including heap and stack and may take a long time and a lot of disk space.
1 Like

Hi Igor,

Thank you!

Avi.