xp下用sysenter指令代替了int 2eh来进入ring0,似乎所有的sysenter都是通过KiFastSystemCall来调用的
KiFastSystemCall()
{
sysenter
}
这样是不是可以通过Hook KiFastSystemCall来了解哪些是需要调用内核的API了
本文探讨了Windows XP系统中使用sysenter指令替代int 2eh进入Ring0的方法,并介绍了如何通过Hook KiFastSystemCall来追踪需要调用内核API的操作。
xp下用sysenter指令代替了int 2eh来进入ring0,似乎所有的sysenter都是通过KiFastSystemCall来调用的
KiFastSystemCall()
{
sysenter
}
这样是不是可以通过Hook KiFastSystemCall来了解哪些是需要调用内核的API了
1048

被折叠的 条评论
为什么被折叠?