You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.1 KiB
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// NTV_05_RtlAdjustPrivilege.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include <Windows.h>
//准备函数指针
typedef UINT(CALLBACK* typeRtlAdjustPrivilege)(ULONG, BOOL, BOOL, PINT);
//从ntdll.dll中获取函数封装API
UINT RtlAdjustPrivilege(ULONG Privilege, BOOL bEnablePrivilege, BOOL IsThreadPrivilege, PINT PreviousValue)
{
HMODULE hDll = GetModuleHandle(L"ntdll.dll");
if (hDll == NULL)
return false;
typeRtlAdjustPrivilege func_RtlAdjustPrivilege = (typeRtlAdjustPrivilege)GetProcAddress(hDll, "RtlAdjustPrivilege");
return func_RtlAdjustPrivilege(Privilege, bEnablePrivilege, IsThreadPrivilege, PreviousValue);
}
//API函数的调用以获取SeShutdownPrivilege为例
void NtGetShutdown()
{
int nEn = 0;
LUID luidPriv;
LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME, &luidPriv);
RtlAdjustPrivilege(luidPriv.LowPart, TRUE, FALSE, &nEn);
return;
}
//测试用主函数——尝试关闭计算机
int main()
{
NtGetShutdown();
ExitWindowsEx(EWX_SHUTDOWN, 0);
return 0;
}