Memory modifying in C++ - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T07:45:39Zhttp://stackoverflow.com/feeds/question/598584http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/598584/memory-modifying-in-c1Memory modifying in C++H4cKL0rD2009-02-28T20:05:16Z2009-03-01T02:53:29Z
<p>im trying to learn to modify games in C++ not the game just the memory its using to get ammo whatnot so can someone point me to books</p>
http://stackoverflow.com/questions/598584/memory-modifying-in-c/598588#5985880Answer by Gamecat for Memory modifying in C++Gamecat2009-02-28T20:09:19Z2009-02-28T20:09:19Z<p>There are enough programs available that let you modify memory of running programs. And they are often used for cheating. But be carefull using those on online games, because most cheats will be detected and you are banned without a warning.</p>
<p>If you like to create them yourself, just look at books that describe the windows API. You will find enough information there.</p>
http://stackoverflow.com/questions/598584/memory-modifying-in-c/598590#5985900Answer by epatel for Memory modifying in C++epatel2009-02-28T20:10:33Z2009-02-28T20:10:33Z<p>Not my area but maybe you should have a look over <a href="http://www.gamehacking.com/forums/" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/598584/memory-modifying-in-c/598592#598592-1Answer by HyperCas for Memory modifying in C++HyperCas2009-02-28T20:11:39Z2009-02-28T20:11:39Z<p>It can done using hooks on windows to access the memory space of a process.</p>
http://stackoverflow.com/questions/598584/memory-modifying-in-c/598616#5986164Answer by Brian R. Bondy for Memory modifying in C++Brian R. Bondy2009-02-28T20:21:00Z2009-02-28T20:26:23Z<p><strong>Injecting Code:</strong></p>
<p>I think the best method is to modify the exe to inject code into one of the loaded modules. <a href="http://home.inf.fh-rhein-sieg.de/~ikarim2s/how2injectcode/code%5Finject.html" rel="nofollow">Check this tutorial</a></p>
<p><strong>Short related story:</strong></p>
<p>Over 10 years ago though, I do remember successfully modifying my score in solitaire in windows with a simple C++ program. I did this by starting an int * pointer at some base address and iterating through memory addresses (with a try /catch to catch exceptions).</p>
<p>I would look for what my current score was in one of those pointer variables, and replace it with a new integer value. I just made sure that my current score was some obscure value that wouldn't be contained in many memory addresses. </p>
<p>Once I found a set of memory addresses that matched my score, I would change my score manually in solitaire and only look through the memory addresses that were found in the last iteration. Usually this would narrow down to a single memory address that contained the score. At this point I had the magical simple line of code *pCode = MY_DESIRED_SCORE;</p>
<p>This may not be possible anymore though with new memory security models. But the method worked pretty good with a 10-20 line C++ program and it only took about a minute to modify my score. </p>
http://stackoverflow.com/questions/598584/memory-modifying-in-c/599053#5990537Answer by Victor Teissler for Memory modifying in C++Victor Teissler2009-03-01T01:28:03Z2009-03-01T02:05:54Z<p>The most convenient way to manipulate a remote process' memory is to create a thread within the context of that program. This is usually accomplished by forcibly injecting a dll into the target process. Once you have code executing inside the target application you are free to use standard memory routines. e.g (memcpy, malloc, memset).</p>
<p>I can tell you right now that the most convenient and easy to implement method is the CreateRemoteThread / LoadLibrary trick.</p>
<p>As other people have mentioned, simple hacks can be performed by scanning memory for known values. But if you want to perform anything more advanced you will need to look into debugging and dead-list analysis. (Tools: ollydbg and IDA pro, respectively).</p>
<p>You have scratched the surface of a very expansive hacking topic, there is a wealth of knowledge out there..</p>
<p>First a few internet resources:</p>
<p>gamedeception.net - A community dedicated to game RE (Reverse Engineering) and hacking.</p>
<p><a href="http://www.edgeofnowhere.cc/viewtopic.php?p=2483118" rel="nofollow">http://www.edgeofnowhere.cc/viewtopic.php?p=2483118</a> - An excellent tutorial on various DLL injection methods.</p>
<p>Openrce.org - Community for reverse code engineering.</p>
<p>I can also recommend a book to you - <a href="http://www.exploitingonlinegames.com/" rel="nofollow">http://www.exploitingonlinegames.com/</a></p>
<p>Windows API Routines you should research (msdn.com):</p>
<pre><code>CreateRemoteThread
LoadLibraryA
VirtualAllocEx
VirtualProtectEx
WriteProcessMemory
ReadProcessMemory
CreateToolhelp32Snapshot
Process32First
Process32Next
</code></pre>