File tree Expand file tree Collapse file tree 3 files changed +373
-374
lines changed Expand file tree Collapse file tree 3 files changed +373
-374
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ public class ACE {
7
7
public string RightName { get ; set ; }
8
8
public bool IsInherited { get ; set ; }
9
9
public string InheritanceHash { get ; set ; }
10
+ public bool IsPermissionForOwnerRightsSid { get ; set ; }
11
+ public bool IsInheritedPermissionForOwnerRightsSid { get ; set ; }
10
12
11
13
public override string ToString ( ) {
12
14
return $ "{ PrincipalType } { PrincipalSID } - { RightName } { ( IsInherited ? "" : "Not" ) } Inherited";
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace SharpHoundCommonLib.OutputTypes
9
9
public class OutputBase
10
10
{
11
11
public Dictionary < string , object > Properties = new ( ) ;
12
- public ACE [ ] Aces { get ; set ; } = Array . Empty < ACE > ( ) ;
12
+ public IEnumerable < ACE > Aces { get ; set ; } = Array . Empty < ACE > ( ) ;
13
13
public string ObjectIdentifier { get ; set ; }
14
14
public bool IsDeleted { get ; set ; }
15
15
public bool IsACLProtected { get ; set ; }
You can’t perform that action at this time.
0 commit comments