SetProcPermissions参数

来源:互联网 发布:apache 访问根目录 编辑:程序博客网 时间:2024/05/27 16:43

让当前进程进入内核模式需要使用以下两句:

SetKMode(TRUE);

DWORD dwPermit = -1;
SetProcPermissions(dwPermit );

 查看SDK发现:

DWORD SetProcPermissions(
  DWORD newperms
);This function sets the internal permissions bitmask for the current thread, thereby enabling access to the address space of another process.Parameters
newperms
[in] Bitmask specifying the new permissions. Use the value 0xFFFFFFFF to set access rights to the whole system; otherwise, use the values returned by GetCurrentPermissions.
SetProcPermissions的参数为0xFFFFFFFF 时,能够获得进入整个系统的权限。注意到此参数为DWORD型的,而DWORD就是UINT型(无符号整型),因此,填入-1在内存中表示的就是0xFFFFFFFF(这个也通过查看dwPermit的 内存地址可以查看到确实是ffffffff)。

 

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/TracyZhongcf/archive/2009/03/12/3984855.aspx

原创粉丝点击