Skip to content

Latest commit

 

History

History
72 lines (44 loc) · 1.49 KB

l03-ACLEnum.md

File metadata and controls

72 lines (44 loc) · 1.49 KB

Hands-On 3: ACL Enumeration


Tasks

Enumerate following for the us.techcorp.local domain:

  • ACL for the Domain Admins group
  • All modify rights/permissions for the studentuserx

Enumerate ACL for the Domain Admins group

Use PowerView:

Get-DomainObjectAcl -Searchbase "LDAP://CN=Domain Admins,CN=Users,DC=us,DC=techcorp,DC=local" -ResolveGUIDs -Verbose

picture 30



Enumerate all modify rights/permissions for the studentuserx

There are 2 things to check:

  1. ACL for studentuserx
  2. ACL for the group of studentuserx

ACL for studentuserx:

Find-InterestingDomainAcl -ResolveGUIDs | ?{$_.IdentityReferenceName -match "studentuser64"}

To get the group of studentuserx:

Get-DomainGroup -UserName studentuser64 | select cn

picture 31

  • MaintenanceUsers
  • StudentUsers
  • Domain Users
  • Managers

Take StudentUsers as an example. Enumerate the interesting ACLs:

Find-InterestingDomainAcl -ResolveGUIDs | ?{$_.IdentityReferenceName -match "StudentUsers"}