vote up 6 vote down star
2

I have a requirement to hide a process in Task Manager. It is for Intranet scenario. So, everything is legitimate. :)

Please feel free to share any code you have (preferably in C#) or any other techniques or any issues in going with this route.

Update1: Most of the users have admin privileges in order to run some legacy apps. So, one of the suggestion was to hide it in task manager. If there are other approaches to prevent users from killing the process, that would be great.

Update2: Removing the reference to rootkit. Somehow made this post look negative.

flag

How is it being on an intranet a legitimate scenario? Don't give them admin priveliges... – Omar Kooheji Oct 9 '08 at 16:20
Thats the problem. Most of the users have admin privileges to support some legacy apps. – Gulzar Oct 9 '08 at 16:22
If users have administrator privileges, they OWN the machine, end of story. – Joel Coehoorn Oct 9 '08 at 16:34
I am curious why they would kill it to begin with? I mean, assuming (hehe) the machine runs well, why would I kill a process? Also, what does your program do? Is this to spy on the people at those machines? I can't think of any legit reason for this, but please enlighten me. – Till Oct 9 '08 at 16:39
Valid question. Think of an app like a virus scanner. I cannot disclose the exact reason but we have to keep this running all the time to actually help users. – Gulzar Oct 9 '08 at 17:33
show 1 more comment

10 Answers

vote up 10 vote down check

There is no supported way to accomplish this. The process list can be read at any privilege level. If you were hoping to hide a process from even Administrators, then this is doubly unsupported.

To get this to work, you would need to write a kernel mode rootkit to intercept calls to NtQuerySystemInformation so that the SystemProcessInformation info class fails to list your hidden process.

Intercepting system calls is very difficult to do safely, and the 64 bit Windows kernels go out of their way to prevent this from being possible: trying to modify the syscall table results in an instant blue screen. It's going to be very difficult on those platforms

Here is an example of a rootkit that tries to do something similar (and has several serious problems).

link|flag
vote up 9 vote down

If you want to prevent users from killing the process from task manager, you can just use a security descriptor on the process to deny terminate access to everyone. Administrators technically can still kill the process by taking ownership of the process and resetting the DACL, but there is no interface to do either of these things from Task Manager. Process Explorer may have an interface to though.

When your process starts, use SetKernelObjectSecurity with DACL_SECURITY_INFORMATION using the current process handle. Set a DACL with zero ACLs. This will deny all access to everyone, including those trying to end your process with task manager.

Here is an example that also changes the process's owner:

SECURITY_DESCRIPTOR sd;
ACL dacl;
SID_IDENTIFIER_AUTHORITY ntauth = SECURITY_NT_AUTHORITY;
PSID owner;

assert(InitializeAcl(&dacl, sizeof dacl, ACL_REVISION));

assert(AllocateAndInitializeSid(&ntauth, 1, SECURITY_LOCAL_SYSTEM_RID, 0,0,0,0,0,0,0, &owner));

assert(InitializeSecurityDescriptor(&sd, SECURITY_DESCRIPTOR_REVISION));

assert(SetSecurityDescriptorDacl(&sd, TRUE, &dacl, FALSE));

assert(SetSecurityDescriptorOwner(&sd, owner, FALSE));

assert(SetKernelObjectSecurity(GetCurrentProcess(), DACL_SECURITY_INFORMATION | OWNER_SECURITY_INFORMATION, &sd));

assert(FreeSid(owner) == NULL);

Unfortunately, it doesn't seem to be effective. I can still close the process (although not as a limited user). Perhaps Task Manager is taking ownership or invoking some other privilege to kill the process? I seem to remember this working in previous versions of Windows (I was testing 2003), but I could be mistaken.

link|flag
+10. This is definitely worth looking at...Thanks a bunch. – Gulzar Oct 9 '08 at 16:39
I've tried to do this in a sample app, but it didn't seem to have any effect (although all of the calls succeeded). I hate to say it, but can you link to some code that does this? – Stephen Deken Oct 9 '08 at 18:31
I was about to ask the same question. Thanks Stephen. – Gulzar Oct 9 '08 at 19:43
vote up 8 vote down

Don't try to stop it from being killed - you're not going to manage it. Instead, make it regularly call home to a webservice. When the webservice notices a client "going silent" it can ping the machine to see if it's just a reboot issue, and send an email to a manager (or whoever) to discipline whoever has killed the process.

link|flag
first good answer I was looking for. – Gulzar Oct 9 '08 at 16:32
vote up 8 vote down

I hope that you would not be able to.

Update: given the scenario, I think that you will probably be best off running it under a different admin account. That may help alert people to the fact that they should not kill the process.

link|flag
I understand your point. – Gulzar Oct 9 '08 at 16:27
vote up 2 vote down

Could you elaborate on why you need this?

It sounds like 'security by obscurity' and that, my friend, just doesn't work.

link|flag
vote up 2 vote down

If you simply need to disguise the process and not hide it completely, you can rename it winlogon.exe or svchost.exe and it will likely be ignored by users. But as Sergio mentioned, that's security by obscurity and it's got a bad reputation for a reason.

Preventing users from killing a process is another difficulty if they have proper privileges. The only method I know is to have multiple processes that watch each other and restart any watched process which gets killed. Again, this is going down a shady path.

link|flag
I hate to say it, but since users have admin privileges disguising the process is probably his best bet. Be wary, though: anti-virus software may see this as malicious behavior and just block the program. – Joel Coehoorn Oct 9 '08 at 16:35
vote up 1 vote down

There is no easy or supported way to do this. Even if you wrote a rootkit to do it then that could very easily get broken by a future update that was made to plug that hole. I would reexamine whether that is something you want to do.

link|flag
vote up 1 vote down

Alternatively, you could write a small "checker" utility that checks if the app is running, if it isn't it automatically starts it. Then add code to the app to check for the "checker" utility that does the same. This way if one is terminated, then the other starts it back up. I've seem virus's do this, and it seems to work pretty effectively.

link|flag
yeah. its possible. wanted to avoid the cpu cycles for all that checking. – Gulzar Oct 9 '08 at 17:53
vote up 0 vote down

What about you just ask the user to don't kill the process ? How much time you'll spend doing it, for a behavior that is clearly childish from employees in the same company.

link|flag
The process is in place to educate users. I have to cover this possibility from a technical angle. – Gulzar Oct 9 '08 at 17:39
vote up 0 vote down

do you have some code for checking and running application again and again?

link|flag

Your Answer

Get an OpenID
or

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