Hello all
I would like to set my own handler on debuggers int 3 like SoftIce or other
ones (in kernel-mode). How can I do it? Have I write my handler manually in
IDT or there are special function for this goal?
Thanks.
Bye,
Sab
Hello all
I would like to set my own handler on debuggers int 3 like SoftIce or other
ones (in kernel-mode). How can I do it? Have I write my handler manually in
IDT or there are special function for this goal?
Bye,
Sab
I would like to set my own handler on debuggers int 3 like SoftIce or other
ones (in kernel-mode). How can I do it? Have I write my handler manually in
IDT or there are special function for this goal
In windows NT doesn’t exists an API to do this in kernel mode (there is one
to
do it in User mode). You have to replace IDT with a handler of your own.
I recommend you “Undocumented windows NT” book, there you’ll find an example
in chapter 9 of hooking software interrupts.