Hello.
Anyone knows if it is possible to get the memory range of an arbitrary process? This is, I know we can search from 0x400000 to 0x7FFF0000 by brute force, but many of this space will return bad results from ReadProcessMemory, so I'd like to know if it's possible to programatically get the defined range, so I can use it. I've been trying to use the ProcessModuleCollection collection off the Process class (in .net) but it does not seem to cover the whole range of memory of the programs. Any help?