iPromise Grandmaster Cheater
Reputation: -1
Joined: 27 Jun 2009 Posts: 529 Location: Canada
|
Posted: Wed Dec 08, 2010 11:17 am Post subject: Pointer-Scan |
|
|
I want to find out how to read an address to find out if it points to my dynamic address.
In order to scan 0x12345678 for a pointer and I was scanning from 00000000 to 7FFFFFFF I would look for all static memory regions / paths, and read them to see if it points to my address.
| Code: |
if ( *(DWORD*) &Static == 0x12345678 )
{
Offset = 0x12345678 - Static; // assuming that Static is below 0x12345678
}
|
Sorry this was coded on the spot, I just want to clear up some questions on my mind.
|
|