Hooking methods in another process with Moles
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
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)
Jon McCoy: Hacking .NET(C#) Application: Code of the Hacker https://vimeo.com/68320501
精彩评论