This question already has answers here:开发者_如何学C How do I hide a process in Task Manager in C#?
It looks like it\'s impossible to prevent determined attackers from modifying one\'s process code/data. I\'m hoping that its at least possible to detect such tampering.
I\'m using a DLL-injector to inject a dll which goes into the IAT and replaces the system call sendto() with my own.
Is it possible to inject a DLL file into a process such as explorer or svchost using C#? I know this is possible in C++ but is it in C#? If so would it matter how the DLL was written, e.g. would it di
I have the source code from a C++ DLL. This DLL is part of an applicaton. I want to hook a function loaded in memory by another DLL, so that my hooked function gets called by all other DLL\'s instead
I am facing a problem related to get out all the controls from some hooked process. My SpyDll launched into hooked process sucessfully, But when I check the statement
I am trying to inject a dll into an existing process. I am trying to use the CreateRemoteThread LoadLibrary way. I understand how it works, but I cannot figure out why CreateRemoteThread is returning
We have an app the requires Full Trust because of a Chilkat .NET 3.5 DLL This has not been a huge issue, however we would like to submit our app to the: Windows Web Applicatio开发者_运维问答n Gallery
I am injecting a dll into a process which the help of a method I开发者_开发百科njectLibrary from MadCHook library. I was able to do it successfully.
I need to track all files accessed (created, opened, read) by a user and log these actions for further processing within a separate application. I have investigated and searched for possible ways to a