Pointers + DLL
Hi,
I'm currently working on a project, which need to use pointer.
For the moment, i placed a codecave somewhere in the code, which call a function at the end for modify the pointer.
The only problem is i don't know how to modify a multi-level pointer.
I actually do by this way :
My pointer in CE : http://img841.imageshack.us/img841/3154/pointere.pngⓘ
It's not working :/
Does anyone have an idea about this ?
Thanks you
I'm currently working on a project, which need to use pointer.
For the moment, i placed a codecave somewhere in the code, which call a function at the end for modify the pointer.
The only problem is i don't know how to modify a multi-level pointer.
I actually do by this way :
Code:
#define BASE_CLIENT 0x00400000
#define BASE_ADDRESS BASE_CLIENT+0x00E6B42C
#define OFFSET1 0x2C
#define OFFSET2 0xE0
#define OFFSET3 0x1C
#define OFFSET4 0x354
#define OFFSET5 0x130
for(;;Sleep(20000))
{
*(int*) *( *( *( *( *( (DWORD*****) BASE_ADDRESS + OFFSET1 ) + OFFSET2) + OFFSET3) + OFFSET4) + OFFSET5) = 0;
}
It's not working :/
Does anyone have an idea about this ?
Thanks you
