Page 1 of 1

extern of c++, not LSS

PostPosted: Tue Oct 23, 2007 8:11 am
by Torero
what's the difference between the two?

PostPosted: Tue Oct 23, 2007 11:01 am
by L. Spiro
C++ extern indicates a function or variable in another module linked to the program.

L. Spiro Script extern indicates a function or variable inside another process running on your machine.


L. Spiro

Re:

PostPosted: Sun Oct 23, 2011 12:52 am
by daenerys
L. Spiro wrote:C++ extern indicates a function or variable in another module linked to the program.
L. Spiro Script extern indicates a function or variable inside another process running on your machine.
L. Spiro


Hello L.Spiro,

I was wondering how do you implement the "extern" functionality in MHS? Do you use ReadProcessMemory (which would be probably rather slow but most non-invasive/non-detectable/safe solution), inject a probe in the host process or have some other solution for it?

Thanks,
Danny

P.S. I assume you are not working on MHS any more, however I want to thank you for this excelent tool which is still working more then well...

Re: extern of c++, not LSS

PostPosted: Mon Oct 31, 2011 12:21 am
by daenerys
anybody?

Re: extern of c++, not LSS

PostPosted: Fri Nov 04, 2011 1:48 pm
by L. Spiro
It uses the same method as MHS uses, which varies.
Typically it uses a custom MHS kernel-mode ReadProcessMemory().


L. Spiro