The SetKernelObjectSecurity function sets the security of a kernel object. For example, this can be a process, thread, or event.
BOOL SetKernelObjectSecurity(
HANDLE Handle, |
// handle of object |
SECURITY_INFORMATION SecurityInformation, |
// type of information to set |
PSECURITY_DESCRIPTOR SecurityDescriptor |
// address of security descriptor |
); |
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
The SetKernelObjectSecurity function is successful only if the following conditions are met:
GetKernelObjectSecurity, SECURITY_DESCRIPTOR, SECURITY_INFORMATION, SetFileSecurity, SetPrivateObjectSecurity, SetUserObjectSecurity