hiding exe from process explorer

May 9, 2011 at 6:08am
hi all ,
is it possible to hide application exe from process explorer ?, i want no one should able to kill my application in between through task manager/process explorer.

thanks
May 9, 2011 at 2:26pm
Yes, but you'd better give a damn good reason. We don't devulge that kind of information lightly
May 9, 2011 at 2:46pm
If you don't want your app killed by certain kinds of process, surely it's a security matter.
May 9, 2011 at 2:59pm
@ OP: I should mention that the vector I have in mind isn't some script kiddie stuff that you can just pick up on a lunch break. It takes some learning.
Last edited on May 9, 2011 at 3:05pm
May 9, 2011 at 7:18pm
One approach is to write your main app code as DLL, inject it in explorer.exe process using a small executable and then quit.
Hiding a process or a existing file from task manager requires a kernel mode driver, which can only be written in 32-bit windows (not possible in x64 version due to security measures taken by Microsoft).
May 10, 2011 at 5:01am
seems it can be use to write virus.
but my application will be visible one can close it , but not to allow to kill process from explorer.
May 10, 2011 at 7:52am
Have you considered using Windows security to control who kills it? This route will require you to run it under a seperate account.
May 10, 2011 at 8:28pm
@ OP: This is a horrible idea, you only use Task_Manager\Process_Explorer to kill a process when it is unresponsive. As in after it has been established that the method for closing it that you built in does not work. If you deny this ability to the user then any errors that came up while running your program would require the system to be hard booted.
Topic archived. No new replies allowed.