PDA

View Full Version : Read Write ProcessMemory



danny2010
03-08-2010, 03:07 AM
Does anyone know of anywhere that has working tuts on how to do this ?

I have wasted over 1 and a half learning c++ from noob tutorials
and i still cant remember much too avoid wasting more time i would
like to jump a head and learn on things which interest me like making
trainers for games i see tutorials on google but i they never work properly

if anyone knows a tut that works ill would appreciate a link to it thanks


Im using msvc++ 2008

Capricorn
03-08-2010, 03:10 AM
You have to learn to float before you learn to swim.

danny2010
03-08-2010, 03:19 AM
how can i learn from something that doesn't make much sense?

when i was at school i learned to speak english not this bullshit dictionary language they
speak these days

i luffs yeww
03-08-2010, 03:30 AM
Danny, that doesn't make sense. Relativity. L2it.

danny2010
03-08-2010, 04:07 AM
We are both speaking english how can it not make sense

i don't expect everything to be easy and i don't expect learning c++ to be either
i just wish i could have learned more in the amount of time i have wasted on reading the tutorials
i know basic things like declaring variables, arrays using pointers and using classes
most of all beginner tutorials cover these which i already know
i want to learn more like debugging programs accessing memory reading/writing injecting dlls into other programs ect

i luffs yeww
03-08-2010, 04:13 AM
"I have wasted over 1 and a half learning c++ from noob tutorials"

Oh? I'll help you in five.. maybe six.

Anyway.

http://www.dreamincode.net/code/snippet407.htm
http://www.cplusplus.com/doc/tutorial/
http://www.codeguru.com/cpp/w-p/dll/article.php/c105

iono. Google.

LolL
03-12-2010, 03:04 AM
JW, what are the powers, capabilities, etc. of ReadProcessMemory? What could a person with some intelligence do with it? (Make a trainer, no?) I'm also wondering what the format of the read memory is (e.g., array, pointers, what?).

Sorry, I do not understand Microsoft documentation nor have the sufficient knowledge to (I just want to know about the function).

caused
03-12-2010, 03:10 AM
JW, what are the powers, capabilities, etc. of ReadProcessMemory? What could a person with some intelligence do with it? (Make a trainer, no?) I'm also wondering what the format of the read memory is (e.g., array, pointers, what?).

Sorry, I do not understand Microsoft documentation nor have the sufficient knowledge to (I just want to know about the function).


Reads data from an area of memory in a specified process. The entire area to be read must be accessible or the operation fails.

Uhm.. what don't you understand about it ?.

In other words... You can use it to scan a game while its running for vars like the highscore ;].. And when you found it, you can write another number in for that value(WriteProcessMemory) ;]...

~caused