Zuk
August 14th, 2008, 12:34
Hello! I'm new to the rce world. I've been programming in C for a few years now, and I know a little bit of asm (which, I know, it's essential in rce) 
I want to start by hacking a dummy program. Let's say the program shows a custom message box every hour and I want to make a dll, that when injected in the target program will show that custom message box.
Here is some pseudo-code of the dummy.exe:
I know I need to get the CustomMB address in the dummy.exe memory, but how do I do that? :P
Feel free to direct me to any tutorial you feel I need to read.
I have ollydbg and if I steal my friends lappie I also have ida pro

I want to start by hacking a dummy program. Let's say the program shows a custom message box every hour and I want to make a dll, that when injected in the target program will show that custom message box.
Here is some pseudo-code of the dummy.exe:
Code:
if (CurrentTime.minutes == 00)
{
h=LoadDll("dummy.dll";
mb=GetProcAddress(h, "CustomMB";
mb("Hello world";
}
I know I need to get the CustomMB address in the dummy.exe memory, but how do I do that? :P
Feel free to direct me to any tutorial you feel I need to read.

I have ollydbg and if I steal my friends lappie I also have ida pro
