I have a C# application compiled with visual studio. I want to intercept and log calls and serialized method parameters to some specific methods in that app. Is it possible to intercept method calls in another process (maybe by using App domains?). Is there any article/tutorial about?

In other words, I want to achieve similar goal in .NET as madCodeHook and Detours does for win32.

Thanks

link|improve this question

feedback

1 Answer

Try to look into http://msdn.microsoft.com/en-gb/library/system.diagnostics.process.outputdatareceived.aspx

For multiprocessor programming more easy using MPI (Message Passing Interface)

link|improve this answer
Sorry but looks like you didn't understand my question. What does multiprocessor programming has to do with API/method hooking? – Davita Jul 31 '11 at 21:43
Process which you want to hook (comunicate) is your? – Alexander Molodih Aug 1 '11 at 8:27
No, it's not myne, I don't have it's source code – Davita Aug 2 '11 at 6:17
From that you should start. It can be done only with unmanaged code and refers to hacking section. You need to analize program, and extract function address in memory (than you can call this function). About hacking you can read in special sites. It is significant that your program in this case must be executed with the ring 0 (access privileges). My ansver is useful? – Alexander Molodih Aug 2 '11 at 8:00
Not very, but I'll upvote for information :) – Davita Aug 3 '11 at 7:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.