├── .github ├── FUNDING.yml ├── banner.png └── workflows │ ├── auto_prefix_issues.yml │ ├── auto‐prefix‐issues.yml │ └── unit_tests.yaml ├── LICENSE ├── Makefile ├── README.md ├── ace ├── AccessControlEntry.go ├── AccessControlEntry_functions.go ├── AccessControlEntry_functions_test.go ├── AccessControlEntry_test.go ├── aceflags │ ├── AccessControlEntryFlags.go │ ├── AccessControlEntryFlags_functions.go │ └── AccessControlEntryFlags_functions_test.go ├── acetype │ ├── AccessControlEntryType.go │ ├── AccessControlEntryType_functions.go │ ├── AccessControlEntryType_functions_test.go │ └── AccessControlEntryType_test.go ├── header │ ├── AccessControlEntryHeader.go │ ├── AccessControlEntryHeader_functions.go │ ├── AccessControlEntryHeader_functions_test.go │ └── AccessControlEntryHeader_test.go └── mask │ ├── AccessControlMask.go │ ├── AccessControlMask_functions.go │ ├── AccessControlMask_functions_test.go │ └── AccessControlMask_test.go ├── acl ├── DiscretionaryAccessControlList.go ├── DiscretionaryAccessControlListHeader.go ├── DiscretionaryAccessControlListHeader_test.go ├── DiscretionaryAccessControlList_functions.go ├── DiscretionaryAccessControlList_functions_test.go ├── SystemAccessControlList.go ├── SystemAccessControlListHeader.go ├── SystemAccessControlListHeader_test.go ├── SystemAccessControlList_functions.go ├── SystemAccessControlList_functions_test.go └── revision │ ├── AccessControlListRevision.go │ ├── AccessControlListRevision_functions.go │ ├── AccessControlListRevision_functions_test.go │ └── AccessControlListRevision_test.go ├── go.mod ├── go.sum ├── guid ├── Guid.go └── Guid_test.go ├── identity ├── Identity.go ├── Identity_functions.go └── Identity_test.go ├── object ├── AccessControlObjectType.go ├── AccessControlObjectType_functions.go ├── AccessControlObjectType_test.go ├── InheritedObjectType.go ├── InheritedObjectType_functions.go ├── ObjectType.go ├── ObjectType_functions.go └── flags │ ├── AccessControlObjectTypeFlags.go │ ├── AccessControlObjectTypeFlags_functions.go │ └── AccessControlObjectTypeFlags_functions_test.go ├── rights ├── ExtendedRights.go ├── ExtendedRights_test.go ├── GenerateExtendedRights.py └── Rights.go ├── schema ├── ADSchemaAttributes.go ├── ADSchemaAttributes_test.go ├── GetADPropertySets.py ├── GetADSchemaGuids.py └── PropertySets.go ├── sddl ├── ace │ ├── AccessControlEntry.go │ ├── AccessControlEntry_test.go │ ├── aceflags │ │ └── AccessControlEntryFlags.go │ └── acetype │ │ └── AccessControlEntryType.go ├── rights │ └── rights.go ├── sddl.go ├── sddl_functions.go ├── sddl_test.go ├── sid │ ├── sid.go │ └── sid_test.go └── utils │ ├── utils.go │ └── utils_test.go ├── securitydescriptor ├── NtSecurityDescriptor.go ├── NtSecurityDescriptor_functions.go ├── NtSecurityDescriptor_functions_test.go ├── NtSecurityDescriptor_test.go ├── control │ ├── NtSecurityDescriptorControl.go │ ├── NtSecurityDescriptorControl_functions.go │ ├── NtSecurityDescriptorControl_functions_test.go │ └── NtSecurityDescriptorControl_test.go └── header │ ├── NtSecurityDescriptorHeader.go │ ├── NtSecurityDescriptorHeader_functions.go │ ├── NtSecurityDescriptorHeader_functions_test.go │ └── NtSecurityDescriptorHeader_test.go └── sid ├── SecurityIdentifier.go ├── SecurityIdentifier_functions.go ├── SecurityIdentifier_functions_test.go ├── SecurityIdentifier_test.go └── authority ├── SecurityIdentifierAuthority.go └── SecurityIdentifierAuthority_test.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/.github/banner.png -------------------------------------------------------------------------------- /.github/workflows/auto_prefix_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/.github/workflows/auto_prefix_issues.yml -------------------------------------------------------------------------------- /.github/workflows/auto‐prefix‐issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/.github/workflows/auto‐prefix‐issues.yml -------------------------------------------------------------------------------- /.github/workflows/unit_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/.github/workflows/unit_tests.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/README.md -------------------------------------------------------------------------------- /ace/AccessControlEntry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/AccessControlEntry.go -------------------------------------------------------------------------------- /ace/AccessControlEntry_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/AccessControlEntry_functions.go -------------------------------------------------------------------------------- /ace/AccessControlEntry_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/AccessControlEntry_functions_test.go -------------------------------------------------------------------------------- /ace/AccessControlEntry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/AccessControlEntry_test.go -------------------------------------------------------------------------------- /ace/aceflags/AccessControlEntryFlags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/aceflags/AccessControlEntryFlags.go -------------------------------------------------------------------------------- /ace/aceflags/AccessControlEntryFlags_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/aceflags/AccessControlEntryFlags_functions.go -------------------------------------------------------------------------------- /ace/aceflags/AccessControlEntryFlags_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/aceflags/AccessControlEntryFlags_functions_test.go -------------------------------------------------------------------------------- /ace/acetype/AccessControlEntryType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/acetype/AccessControlEntryType.go -------------------------------------------------------------------------------- /ace/acetype/AccessControlEntryType_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/acetype/AccessControlEntryType_functions.go -------------------------------------------------------------------------------- /ace/acetype/AccessControlEntryType_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/acetype/AccessControlEntryType_functions_test.go -------------------------------------------------------------------------------- /ace/acetype/AccessControlEntryType_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/acetype/AccessControlEntryType_test.go -------------------------------------------------------------------------------- /ace/header/AccessControlEntryHeader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/header/AccessControlEntryHeader.go -------------------------------------------------------------------------------- /ace/header/AccessControlEntryHeader_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/header/AccessControlEntryHeader_functions.go -------------------------------------------------------------------------------- /ace/header/AccessControlEntryHeader_functions_test.go: -------------------------------------------------------------------------------- 1 | package header_test 2 | -------------------------------------------------------------------------------- /ace/header/AccessControlEntryHeader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/header/AccessControlEntryHeader_test.go -------------------------------------------------------------------------------- /ace/mask/AccessControlMask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/mask/AccessControlMask.go -------------------------------------------------------------------------------- /ace/mask/AccessControlMask_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/mask/AccessControlMask_functions.go -------------------------------------------------------------------------------- /ace/mask/AccessControlMask_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/mask/AccessControlMask_functions_test.go -------------------------------------------------------------------------------- /ace/mask/AccessControlMask_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/ace/mask/AccessControlMask_test.go -------------------------------------------------------------------------------- /acl/DiscretionaryAccessControlList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/DiscretionaryAccessControlList.go -------------------------------------------------------------------------------- /acl/DiscretionaryAccessControlListHeader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/DiscretionaryAccessControlListHeader.go -------------------------------------------------------------------------------- /acl/DiscretionaryAccessControlListHeader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/DiscretionaryAccessControlListHeader_test.go -------------------------------------------------------------------------------- /acl/DiscretionaryAccessControlList_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/DiscretionaryAccessControlList_functions.go -------------------------------------------------------------------------------- /acl/DiscretionaryAccessControlList_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/DiscretionaryAccessControlList_functions_test.go -------------------------------------------------------------------------------- /acl/SystemAccessControlList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/SystemAccessControlList.go -------------------------------------------------------------------------------- /acl/SystemAccessControlListHeader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/SystemAccessControlListHeader.go -------------------------------------------------------------------------------- /acl/SystemAccessControlListHeader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/SystemAccessControlListHeader_test.go -------------------------------------------------------------------------------- /acl/SystemAccessControlList_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/SystemAccessControlList_functions.go -------------------------------------------------------------------------------- /acl/SystemAccessControlList_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/SystemAccessControlList_functions_test.go -------------------------------------------------------------------------------- /acl/revision/AccessControlListRevision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/revision/AccessControlListRevision.go -------------------------------------------------------------------------------- /acl/revision/AccessControlListRevision_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/revision/AccessControlListRevision_functions.go -------------------------------------------------------------------------------- /acl/revision/AccessControlListRevision_functions_test.go: -------------------------------------------------------------------------------- 1 | package revision_test 2 | -------------------------------------------------------------------------------- /acl/revision/AccessControlListRevision_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/acl/revision/AccessControlListRevision_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/TheManticoreProject/winacl 2 | 3 | go 1.24.0 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /guid/Guid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/guid/Guid.go -------------------------------------------------------------------------------- /guid/Guid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/guid/Guid_test.go -------------------------------------------------------------------------------- /identity/Identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/identity/Identity.go -------------------------------------------------------------------------------- /identity/Identity_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/identity/Identity_functions.go -------------------------------------------------------------------------------- /identity/Identity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/identity/Identity_test.go -------------------------------------------------------------------------------- /object/AccessControlObjectType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/object/AccessControlObjectType.go -------------------------------------------------------------------------------- /object/AccessControlObjectType_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/object/AccessControlObjectType_functions.go -------------------------------------------------------------------------------- /object/AccessControlObjectType_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/object/AccessControlObjectType_test.go -------------------------------------------------------------------------------- /object/InheritedObjectType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/object/InheritedObjectType.go -------------------------------------------------------------------------------- /object/InheritedObjectType_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/object/InheritedObjectType_functions.go -------------------------------------------------------------------------------- /object/ObjectType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/object/ObjectType.go -------------------------------------------------------------------------------- /object/ObjectType_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/object/ObjectType_functions.go -------------------------------------------------------------------------------- /object/flags/AccessControlObjectTypeFlags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/object/flags/AccessControlObjectTypeFlags.go -------------------------------------------------------------------------------- /object/flags/AccessControlObjectTypeFlags_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/object/flags/AccessControlObjectTypeFlags_functions.go -------------------------------------------------------------------------------- /object/flags/AccessControlObjectTypeFlags_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/object/flags/AccessControlObjectTypeFlags_functions_test.go -------------------------------------------------------------------------------- /rights/ExtendedRights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/rights/ExtendedRights.go -------------------------------------------------------------------------------- /rights/ExtendedRights_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/rights/ExtendedRights_test.go -------------------------------------------------------------------------------- /rights/GenerateExtendedRights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/rights/GenerateExtendedRights.py -------------------------------------------------------------------------------- /rights/Rights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/rights/Rights.go -------------------------------------------------------------------------------- /schema/ADSchemaAttributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/schema/ADSchemaAttributes.go -------------------------------------------------------------------------------- /schema/ADSchemaAttributes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/schema/ADSchemaAttributes_test.go -------------------------------------------------------------------------------- /schema/GetADPropertySets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/schema/GetADPropertySets.py -------------------------------------------------------------------------------- /schema/GetADSchemaGuids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/schema/GetADSchemaGuids.py -------------------------------------------------------------------------------- /schema/PropertySets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/schema/PropertySets.go -------------------------------------------------------------------------------- /sddl/ace/AccessControlEntry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sddl/ace/AccessControlEntry.go -------------------------------------------------------------------------------- /sddl/ace/AccessControlEntry_test.go: -------------------------------------------------------------------------------- 1 | package ace_test 2 | -------------------------------------------------------------------------------- /sddl/ace/aceflags/AccessControlEntryFlags.go: -------------------------------------------------------------------------------- 1 | package aceflags 2 | -------------------------------------------------------------------------------- /sddl/ace/acetype/AccessControlEntryType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sddl/ace/acetype/AccessControlEntryType.go -------------------------------------------------------------------------------- /sddl/rights/rights.go: -------------------------------------------------------------------------------- 1 | package rights 2 | -------------------------------------------------------------------------------- /sddl/sddl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sddl/sddl.go -------------------------------------------------------------------------------- /sddl/sddl_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sddl/sddl_functions.go -------------------------------------------------------------------------------- /sddl/sddl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sddl/sddl_test.go -------------------------------------------------------------------------------- /sddl/sid/sid.go: -------------------------------------------------------------------------------- 1 | package sid 2 | -------------------------------------------------------------------------------- /sddl/sid/sid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sddl/sid/sid_test.go -------------------------------------------------------------------------------- /sddl/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sddl/utils/utils.go -------------------------------------------------------------------------------- /sddl/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sddl/utils/utils_test.go -------------------------------------------------------------------------------- /securitydescriptor/NtSecurityDescriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/securitydescriptor/NtSecurityDescriptor.go -------------------------------------------------------------------------------- /securitydescriptor/NtSecurityDescriptor_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/securitydescriptor/NtSecurityDescriptor_functions.go -------------------------------------------------------------------------------- /securitydescriptor/NtSecurityDescriptor_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/securitydescriptor/NtSecurityDescriptor_functions_test.go -------------------------------------------------------------------------------- /securitydescriptor/NtSecurityDescriptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/securitydescriptor/NtSecurityDescriptor_test.go -------------------------------------------------------------------------------- /securitydescriptor/control/NtSecurityDescriptorControl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/securitydescriptor/control/NtSecurityDescriptorControl.go -------------------------------------------------------------------------------- /securitydescriptor/control/NtSecurityDescriptorControl_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/securitydescriptor/control/NtSecurityDescriptorControl_functions.go -------------------------------------------------------------------------------- /securitydescriptor/control/NtSecurityDescriptorControl_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/securitydescriptor/control/NtSecurityDescriptorControl_functions_test.go -------------------------------------------------------------------------------- /securitydescriptor/control/NtSecurityDescriptorControl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/securitydescriptor/control/NtSecurityDescriptorControl_test.go -------------------------------------------------------------------------------- /securitydescriptor/header/NtSecurityDescriptorHeader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/securitydescriptor/header/NtSecurityDescriptorHeader.go -------------------------------------------------------------------------------- /securitydescriptor/header/NtSecurityDescriptorHeader_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/securitydescriptor/header/NtSecurityDescriptorHeader_functions.go -------------------------------------------------------------------------------- /securitydescriptor/header/NtSecurityDescriptorHeader_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/securitydescriptor/header/NtSecurityDescriptorHeader_functions_test.go -------------------------------------------------------------------------------- /securitydescriptor/header/NtSecurityDescriptorHeader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/securitydescriptor/header/NtSecurityDescriptorHeader_test.go -------------------------------------------------------------------------------- /sid/SecurityIdentifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sid/SecurityIdentifier.go -------------------------------------------------------------------------------- /sid/SecurityIdentifier_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sid/SecurityIdentifier_functions.go -------------------------------------------------------------------------------- /sid/SecurityIdentifier_functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sid/SecurityIdentifier_functions_test.go -------------------------------------------------------------------------------- /sid/SecurityIdentifier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sid/SecurityIdentifier_test.go -------------------------------------------------------------------------------- /sid/authority/SecurityIdentifierAuthority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sid/authority/SecurityIdentifierAuthority.go -------------------------------------------------------------------------------- /sid/authority/SecurityIdentifierAuthority_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheManticoreProject/winacl/HEAD/sid/authority/SecurityIdentifierAuthority_test.go --------------------------------------------------------------------------------