Re: [go-nuts] getting values from memory addresses within another process...

2020-04-30 Thread Trig
Kurtis, Thanks... that 'Cheat Engine' is the correct one. Basically, what I am doing is creating a simple service that watches for a particular process (a game, in this instance) and 'monitors' certain values (such as life levels, mana levels, etc.). If my health in the game is low, it

Re: [go-nuts] getting values from memory addresses within another process...

2020-04-30 Thread Kurtis Rader
On Thu, Apr 30, 2020 at 8:25 PM Eric Brown wrote: > I’ll look into this solution. Thank you for an answer that points me in a > possible direction. > Gah! I hit the "send" button without providing any useful response in my previous reply. Note that reading /proc/$pid/mem is only applicable to

Re: [go-nuts] getting values from memory addresses within another process...

2020-04-30 Thread Kurtis Rader
On Thu, Apr 30, 2020 at 8:25 PM Eric Brown wrote: > I’ll look into this solution. Thank you for an answer that points me in a > possible direction. > > On Thu, Apr 30, 2020 at 10:24 PM Robert Engels > wrote: > >> This can be done fairly easily if you run the Go process as root and read >> the

Re: [go-nuts] getting values from memory addresses within another process...

2020-04-30 Thread Eric Brown
I’ll look into this solution. Thank you for an answer that points me in a possible direction. On Thu, Apr 30, 2020 at 10:24 PM Robert Engels wrote: > This can be done fairly easily if you run the Go process as root and read > the /proc/$pid/mem pseudo file. > > On Apr 30, 2020, at 10:01 PM,

Re: [go-nuts] getting values from memory addresses within another process...

2020-04-30 Thread Robert Engels
This can be done fairly easily if you run the Go process as root and read the /proc/$pid/mem pseudo file. > On Apr 30, 2020, at 10:01 PM, Michael Jones wrote: > >  > The general dangerous ability to do this is why protected mode went into the > i368 and is the first and most essential

Re: [go-nuts] getting values from memory addresses within another process...

2020-04-30 Thread Eric Brown
I’m attempting to do exactly what ‘Cheat Engine’ and things like AutoHotKey can do. ‘Cheat Engine’ handles this just fine on all my platforms. On Thu, Apr 30, 2020 at 10:01 PM Michael Jones wrote: > The general dangerous ability to do this is why protected mode went into > the i368 and is the

Re: [go-nuts] getting values from memory addresses within another process...

2020-04-30 Thread Michael Jones
The general dangerous ability to do this is why protected mode went into the i368 and is the first and most essential promise to prevent of every OS other than MS DOS, original MacOS, and practically the threads in shared memory model of Smalltalk & MP Mathematica. On Thu, Apr 30, 2020 at 7:13 PM

Re: [go-nuts] getting values from memory addresses within another process...

2020-04-30 Thread Kurtis Rader
On Thu, Apr 30, 2020 at 6:59 PM Trig wrote: > I'm attempting to read memory from another process. I've installed 'Cheat > Engine' to do this, to make sure I'm pulling the correct value from the > address I'm attempting to; however, nothing I found works I did find this > article: > > >

Re: [go-nuts] getting values from memory addresses within another process...

2020-04-30 Thread Ian Lance Taylor
On Thu, Apr 30, 2020 at 6:58 PM Trig wrote: > > I'm attempting to read memory from another process. I've installed 'Cheat > Engine' to do this, to make sure I'm pulling the correct value from the > address I'm attempting to; however, nothing I found works I did find this > article: > >

[go-nuts] getting values from memory addresses within another process...

2020-04-30 Thread Trig
I'm attempting to read memory from another process. I've installed 'Cheat Engine' to do this, to make sure I'm pulling the correct value from the address I'm attempting to; however, nothing I found works I did find this article: