Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check which windows api is being called by running process

I want to check which windows api is being called by a running program. For example, if the process calls timeGetTime(), endprocess() or some other API I want to know this information and ideally displayed or stored in real time.

It would also suffice if I could choose which API I want to know is being used. I know this could be done with techniques like API hooking but I am looking for an existing program that can do this. Does there exist something like this? Any help would be appreciated.

like image 653
Mark Avatar asked Dec 19 '22 20:12

Mark


2 Answers

The best Windows API sniffer I know is API Monitor. Although it's alpha version it always worked fine for me.

like image 99
Sebastian Avatar answered Dec 28 '22 08:12

Sebastian


check out Very Sleepy http://www.codersnotes.com/sleepy it does this kind of check

like image 24
Lendmann Avatar answered Dec 28 '22 08:12

Lendmann