SYSTEM_OBJECT_SECURITY_MODE_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)

// private
/**
 * Used by SystemObjectSecurityMode.
 *
 * SeSecurityModelQueryInformation returns a 4-byte mode value.
 * The value is initialized to 0 and set to 2 when
 * SepIsDeviceOwnerProtectionDowngradeAllowed() returns TRUE.
 */
typedef struct _SYSTEM_OBJECT_SECURITY_MODE_INFORMATION
{
    ULONG ObjectSecurityMode;
} SYSTEM_OBJECT_SECURITY_MODE_INFORMATION, *PSYSTEM_OBJECT_SECURITY_MODE_INFORMATION;

#endif
#endif

View code on GitHub

NtDoc

No description available.