The EndTask function is called to forcibly close a specified windowHow do I protect my window from this api?
I mean what routine do I hook?
Thanks and Regards
Utsav
A forum for reverse engineering, OS internals and malware analysis
The EndTask function is called to forcibly close a specified windowHow do I protect my window from this api?
utsav.0202 wrote:I hooked NtTerminateProcessBecause internally EndTask results in CsrClientCallServer call to csrss special API port. Csrss gets the message and proceeds it.
and tried to kill my process from "test.exe" that uses EndTask
The process that is calling NtTerminateProcess to kill my protected process is "csrss.exe" instead of "test.exe"
why is it so?