xamlooc How do I cheat?
Reputation: 0
Joined: 19 Mar 2008 Posts: 6
|
Posted: Tue Apr 15, 2008 8:58 am Post subject: A question about Borland Delphi ASM |
|
|
first, I have some ASM codes as follows:
__________________
begin
address:=pointer($0042CF14);
asm
pushad
mov eax, pointer($0045a83c) //this pointer points to a string 'Hello world'
call address
popad
end;
_________________
when I call this function, the destination (hooked .exe file, i made it) will show a dialogue 'hello world'. I attached my tool to this .exe process and called the function within the .exe file.
So, if I want to substitute 'hello world' with another string such as 'welcome!', what should I do? Where should I modify the ASM code?
I have asked many people but I got nothing...So I come here for help.
Can anybody help me? I would appreciate any help or even hints!
|
|