Searching a process' memory on Linux
Posted
by Matt Joiner
on Stack Overflow
See other posts from Stack Overflow
or by Matt Joiner
Published on 2010-05-15T10:20:47Z
Indexed on
2010/05/15
10:24 UTC
Read the original article
Hit count: 234
How can I search the memory state of an process in Linux? Specifically I wish to identify certain regions of interest, and peek at them at regular intervals, possibly occasionally poking new values.
I suspect an answer may involve calls to ptrace(), and reading /proc/[pid]/mem, but need more to go on.
© Stack Overflow or respective owner