user194534
user194534

Reputation: 35

Windows Vista/7 Kernel Hooking of Userland

I'm looking for advice on implementing a driver under Vista and 7 which can hook and monitor arbitrary system functions for a userland process. My goal is to simply dump arguments for system functions called from ntdll, kernel32, etc. Coming from XP, SSDT modification and similar techniques were popular. On Vista+ there are filter drivers and notification routines. Are either of these meant for hooking native functions? The driver is for 32 and 64bit and has to play nice with Patch Guard. Any suggestions are welcomed.

Upvotes: 1

Views: 266

Answers (1)

John Smith
John Smith

Reputation: 505

ObCallback is similar to SSDT hooking.

Upvotes: 1

Related Questions