// ntifs.h
typedef struct _SYSTEM_RESOURCE_ATTRIBUTE_ACE {
ACE_HEADER Header;
ACCESS_MASK Mask;
ULONG SidStart;
} SYSTEM_RESOURCE_ATTRIBUTE_ACE, *PSYSTEM_RESOURCE_ATTRIBUTE_ACE;
View the official Windows Driver Kit DDI referenceNo description available.
The SYSTEM_RESOURCE_ATTRIBUTE_ACE structure defines an access-control entry (ACE) for the system access-control list (ACL) specifying what rights a particular claim has to a resource. A resource attribute ACE causes an audit message to be logged when an attempt to gain access to resource based on a supported claim occurs.
HeaderSpecifies an ACE_HEADER structure.
MaskSpecifies an ACCESS_MASK structure that specifies access rights for a claim to a resource.
SidStartSpecifies a SID. This is set to the Everyone, or S-1-1-0, SID.
Following the SidStart member begins a CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1 structure which describes a supported claim.