Skip to content

Commit

Permalink
feat: GenericWrite on ADCS nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasBK authored Feb 6, 2024
1 parent ab2e21a commit f767667
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CommonLib/Processors/ACLProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ public IEnumerable<ACE> ProcessACL(byte[] ntSecurityDescriptor, string objectDom
if (aceRights.HasFlag(ActiveDirectoryRights.GenericWrite) ||
aceRights.HasFlag(ActiveDirectoryRights.WriteProperty))
{
if (objectType is Label.User or Label.Group or Label.Computer or Label.GPO)
if (objectType is Label.User or Label.Group or Label.Computer or Label.GPO or Label.CertTemplate or Label.RootCA or Label.EnterpriseCA or Label.AIACA or Label.NTAuthStore)
if (aceType is ACEGuids.AllGuid or "")
yield return new ACE
{
Expand Down Expand Up @@ -582,4 +582,4 @@ public IEnumerable<ACE> ProcessGMSAReaders(byte[] groupMSAMembership, string obj
}
}
}
}
}

0 comments on commit f767667

Please sign in to comment.