vote up 1 vote down star
1

I have a memory dump (unmanaged process) . How can I extract (using windbg) one of the dlls loaded into the process ? I mean actually saving the dll file into the disk

flag

33% accept rate

3 Answers

vote up 0 vote down

Yes, it's true. calc.exe will also pull up its multi user language interface information and attach it in memory, as will a lot of Windows programs like mspaint, photoviewer, etc.

link|flag
vote up 1 vote down

use .writemem extension: detailed here

link|flag
I tried that but it didn't work. I attached Windbg to Calc.exe and wrote the exe and got a bigger file. Strange. – Saar Oct 31 at 10:43
I guess that's due to discrepancies in alignment - pe32 files take more space in memory than on disk due to larger memory alignment requirements. You need to properly rebuild the executable after it is dumped to meet these rules. Besides, the debug section is not dumped (as it is not mapped, i guess). Import tables also need reconstruction. – deemok Nov 5 at 17:07
vote up 2 vote down

You can use the sos.dll inside windbg directory.

First, load the sos.dll in windbg:

.load clr10\sos.dll

Then use !sam OR !SaveAllModule to extract the modules on specific disk location:

!sam c:\notepad
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.