Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.17 KB

README.md

File metadata and controls

32 lines (24 loc) · 1.17 KB

KernelMon

KernelMon is a virtualization-based driver monitoring infrastructure that draws inspiration from the Sysinternals suite and in particular, ProcMon.

It basically hooks prominent KernelMode API's (for now Zw's) and transfers this information in the form of logs to a usermode UI. KernelMon traces registry and fs reads and writes, process and thread operations.

Example:

kernelmonitor

Installation:

Note: Make sure to run this inside a VM!

You might need to follow some of the instructions at: https://revers.engineering/day-0-virtual-environment-setup-scripts-and-windbg/ before running the app. (more specifically, disabling driver signing enforcement).

Compile the driver(KernelMonitor.sys) and usermode app(KernelMon.exe).

Make a service for running the driver using the sc utility:

C:\Users\User> sc create KernelMonitor type= kernel binPath= <path-to-driver>

Run it:

C:\Users\User> sc start KernelMonitor

And then open the usermode app:

C:\Users\User> KernelMon.exe

How it works?

TBD