Author | Message | Time |
---|---|---|
UserLoser | I have 30720 bytes of memory I need to dump. db edi surely does not give me enough as it only supplies me with 128 bytes. How to make it display all 30720 bytes and not just 128? If so, can it output them to a file? Thanks | February 24, 2007, 7:21 AM |
Barabajagal | I don't have any Assembly skill at all, so this is a shot in the dark, but couldn't you just make a loop that gets 128 bytes 240 times, increasing the memory location to read 128 bytes per loop? | February 24, 2007, 7:26 AM |
Kp | To display it all in Windbg (not recommended for this much data): db edi l0n30720. To save it to a file: .writemem c:\mymemory.dat edi l0n30720. | February 24, 2007, 5:09 PM |
UserLoser | Works perfect, thanks. Get back on Botnet/b.net | February 26, 2007, 12:21 AM |