ACL Enumeration & Tactics
1. Find Object ACLs in Windows Domain
Command:
Find-InterestingDomainAcl2. Import PowerView and Retrieve User SID
Command:
Import-Module .\PowerView.ps1
$sid = Convert-NameToSid wley3. Find Domain Objects a User Has Rights Over
Command:
Get-DomainObjectACL -Identity * | ? {$_.SecurityIdentifier -eq $sid}4. Perform Reverse Search & Map GUID
Command:
5. Discover Domain Object ACL Based on GUID
Command:
6. Discover User Accounts in Domain & Save to File
Command:
7. Retrieve ACL Information for Each Domain User
Command:
8. Create a PSCredential Object
Command:
9. Create a SecureString Object
Command:
10. Change a User’s Password
Command:
11. View Members of a Security Group
Command:
12. Add a User to a Security Group
Command:
13. View Only Usernames of Security Group Members
Command:
14. Create a Fake Service Principal Name (SPN)
Command:
15. Remove a Fake Service Principal Name (SPN)
Command:
16. Remove a User from a Security Group
Command:
17. Convert an SDDL String into Readable Format
Command:
Last updated