线程/进程DLL
文章平均质量分 77
ljz888666555
23111111111
展开
-
三种枚举进程
<br />EnumProcesses Function<br /><br /> Retrieves the process identifier for each process object in the system.<br /><br /><br /> BOOL WINAPI EnumProcesses(<br /> __out DWORD* pProcessIds,<br /> __in DWORD cb,<br /> __原创 2010-06-09 10:40:00 · 730 阅读 · 0 评论 -
提权
#include const unsigned int SE_SHUTDOWN_PRIVILEGE = 0x13;1#define SE_DEBUG_PRIVILEGE 0x14 //DEBUG 权限 int main() { HMODULE hDll = ::LoadLibrary(L"ntdll.dll"); typedef int (* type_RtlAdjustPrivilege)(int, bool, bool, int*); typ原创 2010-06-09 10:39:00 · 753 阅读 · 0 评论