Search found 3 matches

by ssivagna
Thu Aug 11, 2005 12:13 am
Forum: madRemote
Topic: execute procedure is foreign process
Replies: 8
Views: 26187

doesnt work

:cry:

how come this doesnt work

Code: Select all

procedure ShowMessageBox();

begin
LoadLibrary('E:\jeroen\Delphi\IPROCESS\dllfile.dll');
END;



procedure TForm1.Button1Click(Sender: TObject);
begin
Process('notepad.exe').ExecuteFunction(ShowMessageBox, INFINITE, nil, 5);
end;
by ssivagna
Fri Jul 29, 2005 3:12 pm
Forum: madRemote
Topic: execute procedure is foreign process
Replies: 8
Views: 26187

Okey.. i just read through my post again. It might be abit unclear. What I want to do is: Tell a foreign process to beep(1000,1000); Beep function is included in kernel32.dll, which is included in all processes. Note: I don't want a dll injection here :D. NEJI, I will take a look at it when I get ho...
by ssivagna
Fri Jul 29, 2005 2:51 pm
Forum: madRemote
Topic: execute procedure is foreign process
Replies: 8
Views: 26187

execute procedure is foreign process

Hi! I see examples on how to CreateRemoteThreadEx and then tell the remote thread to use function loadlibrary that lays in kernel32.dll (loaded inside process). But there arent just LoadLibrary that lays in kernel32.dll. There are alot of interesting stuff. What I want to do is simple, I want to bee...