6

I am debugging a process and want to dump a chunk of memory, say from memory address 0x4160d8 to 0x4200d8, into a file.

How can I get a raw file that includes just the bytes? I tried to use the OllyDump plugin but it creates an executable file with PE headers.

Abundance
  • 1,963
  • 3
  • 24
  • 46

1 Answers1

5

You can dump memory into a raw file using Olly by following these steps:

  1. select the memory area you want to dump
  2. right-click and select "Open in a separate dump window"
  3. right-click the dump in the new window and select "Backup > Save data to file..."
mox
  • 6,084
  • 2
  • 23
  • 35