Nine Years of Service
Posts: 5
Threads: 1
Unkillable process 07-19-2017, 08:21 PM
#1
Do you guys know how to create a process that admins cant kill? Antivirus Vendors have a way of creating processes that returns "Access denied" when attempting to close the exe file from eg. task manager. Can you make this with VB? I presume they must hook terminate_process?
(This post was last modified: 07-19-2017, 08:25 PM by karstenfl.)
•
Ten Years of Service
Posts: 1,918
Threads: 64
RE: Unkillable process 07-19-2017, 09:45 PM
#3
There are a lot of ways, but the simple one it to create a watchdog process wich monitors if your preocess ir running, if it's killed the wachdog restarts it, the same goes whit the main program, if the wachdog is killed the main program should restart it.
•
Nine Years of Service
Posts: 5
Threads: 1
RE: Unkillable process 07-19-2017, 09:52 PM
#4
I have seen samples of watchdog methods, however they are not "true" unkillable processes. I am searching for a way to create a singular independant process that is prevented from being killed, like modern AV or firewall solutions do. They simply deny the request.
•
Nine Years of Service
Posts: 5
Threads: 1
RE: Unkillable process 07-19-2017, 10:52 PM
#8
Any VB code for the above?
•