Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which winapi function does the Process Explorer use to suspend process?

I am attempting to write a hook which will catch "SomeFunction" of Process Explorer that suspends process. I already have a solution which hooks functions such as SuspendThread and NtSuspendThread. But the Process Explorer use something different and I don't know what. Please can anyone tell me the name of the function used by PE to suspend process?

like image 272
Anton23 Avatar asked Aug 06 '14 13:08

Anton23


1 Answers

Attach it to an API Monitor; It calls NtOpenProcess -> NtSuspendProcess()

SShot

like image 122
Alex K. Avatar answered Sep 30 '22 07:09

Alex K.