首页
社区
课程
招聘
[求助]内核函数NtSetDebugFilterState为什么得不到
发表于: 2011-5-18 11:54 4750

[求助]内核函数NtSetDebugFilterState为什么得不到

2011-5-18 11:54
4750
在驱动里写了这么一段代码
    RtlInitUnicodeString(&unistr, L"NtSetDebugFilterState");
    Foo = MmGetSystemRoutineAddress(&unistr);

    RtlInitUnicodeString(&unistr, L"NtReadFile");
    Foo = MmGetSystemRoutineAddress(&unistr);

NtSetDebugFilterState的地址不能得到,而其他函数如NtReadFile就可以得到。这是为啥呢?

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 270
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
MmXX是通过导出表来定位函数地址的
2011-5-18 16:24
0
游客
登录 | 注册 方可回帖
返回
//