Jump to content


Photo

Edit process binary data?


  • Please log in to reply
1 reply to this topic

#1 iBob35555VR

iBob35555VR
  • Members
  • 89 posts

Posted 12 July 2012 - 01:01 PM

I'm stuck... How can I edit binary data from a process? I can edit binary data from a file with BinRead()\BinWrite() but not from a process...

#2 G. Sperotto

G. Sperotto
  • Members
  • 470 posts

Posted 12 July 2012 - 05:29 PM

Hi Ibob35555VR.

Debuggers like OllyDBG are completely suitable for this task. You can either attach the debugger to an existing process or launch a new process with it attached. After that, you can trace the binary data, changing whatever you would like.

For an AutoHotkey script to get access to a processes binary data, you would probably have to search some hooking APIs. I can't really point out any atm, but Google for a combination of "hooking", "debugger", "API", "function" and other similar keywords and you should get some starting info.

Best wishes :wink: