How would I go about editing the memory of other applications using Cocoa? I know the editing has to be done as root, but how would I do it in the first place?
|
|
I'd point out that PTrace is terribly broken on OS X. Hopefully that article helps you sidestep the issues. You can also use mach directly to alter memory... check out how Mach_inject does it. |
||||||
|
|
|
Ptrace is the usual mechanism to do this (and has little/nothing to do with cocoa itself -- it's a unix api, man ptrace). Once you attach to a process, and the process is stopped, you can do things like read and write from the childs instruction or data space, single step, and so forth. |
||||||||
|
