Search found 33 matches

by Mazinger
Wed Jan 26, 2005 3:51 pm
Forum: madCodeHook
Topic: Hook to Windows Service
Replies: 4
Views: 4765

Sorry, it's my fault. I hook a DLL that uses SendIPCMessage to communicate with my application. When I use this function within a library injected to all system proceses (SYSTEM_PROCESS & ...) my computer crash. When I use this function within a library injected to a single process, the process ...
by Mazinger
Wed Jan 26, 2005 3:09 pm
Forum: madCodeHook
Topic: Hook to Windows Service
Replies: 4
Views: 4765

Ok, but I have problems to inject my dll to the other service. Please see my code: PH:=OpenProcess(PROCESS_ALL_ACCESS, False, PID); If PH>0 then Begin If Inject then Begin Result:=InjectLibrary(PH,FDLL); End Else Begin Result:=UninjectLibrary(PH,FDLL); End; CloseHandle(PH); End; PID is the PID of th...
by Mazinger
Wed Jan 26, 2005 6:42 am
Forum: madCodeHook
Topic: Hook to Windows Service
Replies: 4
Views: 4765

Hook to Windows Service

Hi, This is my first attempt to use madCodeHook and have this questions: 1. I have an application write in Delphi that is a Windows Service. From this app I want to inject a DLL to other running service, but only this. Is it posible with madCodeHook? How? 2. Is posible to create multiple IPC queues ...