vote up 2 vote down star

Hello,

I need to create an application which will be reading and writing to files(C++/MFC). but I need the process not to appear in process monitor (which comes with SysInternals).

From the reactions of others, I now confirm that this seems "illegal". but that is the request of the client I'm dealing with. so, I guess I just have to satisfy the client's request.

flag

49% accept rate
6  
Why does it matter if it shows up in Process Monitor? – ceejayoz May 26 at 14:45
16  
sounds like a rootkit or keylogger or something equally ethically dubious to me – Glen May 26 at 14:46
11  
"Helo, please help me write a rootkit. PS plz sendz teh codez"... – Mitch Wheat May 26 at 14:51
2  
re: update - I'd take a good, long look at what your client is asking you to do. What is the app they're setting up? Could it be construed as spyware/malware? – ceejayoz May 26 at 15:01
4  
Stop voting this question down. Others with similar ideas need to see these responses. That said, you client likely doesn't understand the implications of the request and I think you should probe their requirements a bit deeper. – Rob Allen May 26 at 15:37
show 15 more comments

closed as blatantly offensive by ceejayoz, Naveen, devio, Cheeso, John Saunders May 26 at 17:13

4 Answers

vote up 19 vote down

One of the uses of Process Monitor is to find and remove malicious software that tries to hide from the user:

Process Monitor is an advanced monitoring tool for Windows that shows real-time file system, Registry and process/thread activity. It combines the features of two legacy Sysinternals utilities, Filemon and Regmon, and adds an extensive list of enhancements including rich and non-destructive filtering, comprehensive event properties such session IDs and user names, reliable process information, full thread stacks with integrated symbol support for each operation, simultaneous logging to a file, and much more. Its uniquely powerful features will make Process Monitor a core utility in your system troubleshooting and malware hunting toolkit.

I am not saying that what you want to do is impossible, rather that you are trying to do something that feels a bit dishonest.

That being said I would like you to consider the fact that you are trying to hide a process from a utility that was written to find anything and everything by folks that are a lot smarter than you and me.

link|flag
nice reply, Andrew. you're probably right. thanks. does anyone else knows how to actually do this ? – Attilah May 26 at 14:53
2  
If they do, it is my hope that they won't post how. I can't imagine a good reason for doing this, and would be interested in yours. – ceejayoz May 26 at 14:55
3  
Attilah: I'll repeat what someone else said on a question like this: "I don't know how to do this, and if I figured out a way, I'd report it to Microsoft as a bug." – Aric TenEyck May 26 at 15:50
vote up 16 vote down

I'll assume you're not planning to do anything malicious. If that's the case, it's important you don't hide your application from diagnostic tools. You can't guarantee your application is bug free. Even if it is, you can't predict its interaction with other applications. Because of that, you should leave it visible so other technical people can troubleshoot if something goes wrong.

Regarding your comment, "so, I guess I just have to satisfy the client's request" - not if it's illegal or technically dangerous for them. You need to protect yourself and them from bad judgment.

link|flag
+1 This is good advice. – Andrew Hare May 26 at 14:57
2  
Yup, +1 for "You need to protect yourself and them from bad judgment" – Binary Worrier May 26 at 15:10
vote up 12 vote down

PM reads data at a very low level so to hide from it you have to actually take over certain NT kernel structures and methods to report different information to PM than what Windows itself sees. Doing this is platform and version dependent ( ie. Windows XP SP1 is different than Windows XP SP2 is different than Vista x64, etc.). It's nearly impossible to do correctly without creating an incredible number of system instability issues.

While it's not strictly illegal, every company that has done it and been discovered (which you will) has enjoyed lots of backlash and criticism from users and security professionals. Again while not explicitly illegal, the kinds of changes required can open severe security holes on the end users' machines. Should they have major system crashes or be exposed to hackers/viruses you may be legally liable for the damage.

link|flag
2  
(+1) from me for actually trying to answer the question, while at the same time cautioning the OP from actually doing it. – devinb May 26 at 15:33
vote up 2 vote down

Possible semi-legitimate (though I wouldn't want my name associated with them) applications you would want to keep people from seeing are DRM enforcers and nanny-cam style monitors for kids and errant spouses.

That said, I don't think your client really wants you to subvert such an important system. They likely want something less rootkit-like but they picked up the vocabulary watching "24" and have failed to adequately express what it is they want done.

My advice would be to go back to them for clarification. If they do indeed want something to be completely undetectable then you need to decide based on your own conscience whether to proceed or leave the client.

link|flag
"Errant spouses." Heh. – Chris Farmer May 26 at 17:14
1  
(+1) for going back to the client to determine what they want their application to DO not how they want to do it. – devinb May 26 at 17:20

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