Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
SECURITY_DESCRIPTOR_CONTROL (Enums)
.
Summary
The SECURITY_DESCRIPTOR_CONTROL data type is a set of bit flags that qualify the meaning of a security descriptor or its components. Each security descriptor has a Control member that stores the SECURITY_DESCRIPTOR_CONTROL bits.
C# Definition:
enum SECURITY_DESCRIPTOR_CONTROL : uint
{
SE_DACL_AUTO_INHERIT_REQ = 0x0100,
SE_DACL_AUTO_INHERITED = 0x0400,
SE_DACL_DEFAULTED = 0x0008,
SE_DACL_PRESENT = 0x0004,
SE_DACL_PROTECTED = 0x1000,
SE_GROUP_DEFAULTED = 0x0002,
SE_OWNER_DEFAULTED = 0x0001,
SE_RM_CONTROL_VALID = 0x4000,
SE_SACL_AUTO_INHERIT_REQ = 0x0200,
SE_SACL_AUTO_INHERITED = 0x0800,
SE_SACL_DEFAULTED = 0x0008,
SE_SACL_PRESENT = 0x0010,
SE_SACL_PROTECTED = 0x2000,
SE_SELF_RELATIVE = 0x8000
}
enum SECURITY_DESCRIPTOR_CONTROL : uint
{
SE_DACL_AUTO_INHERIT_REQ = 0x0100,
SE_DACL_AUTO_INHERITED = 0x0400,
SE_DACL_DEFAULTED = 0x0008,
SE_DACL_PRESENT = 0x0004,
SE_DACL_PROTECTED = 0x1000,
SE_GROUP_DEFAULTED = 0x0002,
SE_OWNER_DEFAULTED = 0x0001,
SE_RM_CONTROL_VALID = 0x4000,
SE_SACL_AUTO_INHERIT_REQ = 0x0200,
SE_SACL_AUTO_INHERITED = 0x0800,
SE_SACL_DEFAULTED = 0x0008,
SE_SACL_PRESENT = 0x0010,
SE_SACL_PROTECTED = 0x2000,
SE_SELF_RELATIVE = 0x8000
}
VB Definition:
Enum SECURITY_DESCRIPTOR_CONTROL
TODO
End Enum
Notes:
Used By:
GetSecurityDescriptorControl
GetSecurityDescriptorDacl
GetSecurityDescriptorGroup
GetSecurityDescriptorOwner
GetSecurityDescriptorSacl
SetSecurityDescriptorControl
SetSecurityDescriptorDacl
SetSecurityDescriptorGroup
SetSecurityDescriptorOwner
SetSecurityDescriptorSacl
Documentation
Sets information in a discretionary access control list (DACL)
6/21/2018 8:41:32 AM - -81.95.21.122
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!