Extract process dump from full memory dump

北城余情 提交于 2019-12-10 17:45:37

问题


I've reached a bug, but I was unable to create a process dump. I've created a full memory dump of system. How could I extract a process dump using it?
Windows.


回答1:


You cannot. In general, some of the memory segments that belong to your process could be paged out and not resident in physical memory. This means that with full kernel memory dump you are not guaranteed to reconstruct process address space.

In many cases you can extract useful information about process from kernel dump. However there are two limitations:

  1. Memory can be paged out, as I already mentioned.
  2. Many WinDbg extensions won't work with kernel dump. This includes SOS, so investigating managed processes are much more difficult from kernel space.


来源:https://stackoverflow.com/questions/22106385/extract-process-dump-from-full-memory-dump

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!