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...
Edit process binary data?
Started by
iBob35555VR
, Jul 12 2012 01:01 PM
1 reply to this topic
#1
Posted 12 July 2012 - 01:01 PM
#2
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:
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:




