Wellington Almeida
Wellington Almeida

Reputation: 1

Hook api from the device driver with python

I want to develop a python script to hook functions of the windows api, but without the need to inject in the process to be done the hook. I heard it's possible making access to the device driver and do hook from it, I searched but did not find ways to do this, does anyone know a lib, or ways of doing this access to device driver?

Upvotes: 0

Views: 613

Answers (1)

user447688
user447688

Reputation:

Generally speaking, you can access DLL functions via python with the ctypes library.

Upvotes: 1

Related Questions