VB .NET Hide Process

Posts 14 of 4 · Page 1 of 1
VB .NET Hide Process
Hi,
I'm looking for a way to hide my process from not only task manager but also any type of Process-List applications.
Many people have been injecting/hacking my program. I already did some progress by making it non-readable by Ollydbg but still there is a long way to go.
I don't really need the main application's process to be hidden. It will start other application and thats the one that I'm trying to hide. My main application is just for seek for debuggers, etc and ends the 2nd application if finds any.
The last resource would be starting it as Windows Service.

Thank you.
What you are asking for is kind of a difficult task, you could "hack" the task manager and keep removing it from the list (but there we go, any other process listing application will show the app), not to mention how hard it could end up being.

Also, you could list it as a windows service instead of a process.

Its just not possible.

And to be honest when you are trying to hide your application, its just for some bad use. And I am not supporting this.
I have found a temporary solution. A timer that checks how many threads the application has. If above X is because someone injected it
I guess this will only find hacks injected by CreateThread method but always better than nothing.

Still, I am trying to execute the 2nd application as a Windows Service but it is hard. Being new to VB .NET (or any type of Basic language) doesn't help much neither. Maybe you could give me a hand and point me to a website? I can't find anything useful on Google.

Thank you.
You can try to make what Brinuz said.
But, I tried a random working method and it is also hidden from all processes in (Windows) task manager.
I've been used "TMListViewDelete" method.
You forget on how to search?
Posts 14 of 4 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?