[NTOSKRNL] Add support for the ObUnsecureGlobalNames registry key

This commit is contained in:
Pierre Schweitzer 2018-10-27 11:44:19 +02:00
parent f819c9c460
commit b9423f07d9
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B
3 changed files with 13 additions and 0 deletions

View file

@ -586,6 +586,14 @@ INIT_FUNCTION CM_SYSTEM_CONTROL_VECTOR CmControlVector[] =
NULL
},
{
L"Session Manager\\Kernel",
L"ObUnsecureGlobalNames",
ObpUnsecureGlobalNamesBuffer,
&ObpUnsecureGlobalNamesLength,
NULL
},
{
L"Session Manager\\I/O System",
L"CountOperations",

View file

@ -613,6 +613,8 @@ extern BOOLEAN IoCountOperations;
extern ALIGNEDNAME ObpDosDevicesShortNamePrefix;
extern ALIGNEDNAME ObpDosDevicesShortNameRoot;
extern UNICODE_STRING ObpDosDevicesShortName;
extern WCHAR ObpUnsecureGlobalNamesBuffer[128];
extern ULONG ObpUnsecureGlobalNamesLength;
//
// Inlined Functions

View file

@ -29,6 +29,9 @@ UNICODE_STRING ObpDosDevicesShortName =
(PWSTR)&ObpDosDevicesShortNamePrefix
};
WCHAR ObpUnsecureGlobalNamesBuffer[128] = {0};
ULONG ObpUnsecureGlobalNamesLength = sizeof(ObpUnsecureGlobalNamesBuffer);
/* PRIVATE FUNCTIONS *********************************************************/
NTSTATUS