Learning Objetive 12
Check if studentx has Replication (DCSync) rights
C:\AD\Tools\InviShell\RunWithRegistryNonAdmin.bat
. C:\AD\Tools\PowerView.ps1
Get-DomainObjectAcl -SearchBase "DC=dollarcorp,DC=moneycorp,DC=local" -SearchScope Base -ResolveGUIDs | ?{($_.ObjectAceType -match 'replication-get') -or ($_.ActiveDirectoryRights -match 'GenericAll')} | ForEach-Object {$_ | Add-Member NoteProperty 'IdentityName' $(Convert-SidToName $_.SecurityIdentifier);$_} | ?{$_.IdentityName -match "studentx"}If you havent it, add the replication rights
Chech again


¿Por qué es DCSync?
Ataques que SÍ requieren DA (para que compares y no te confundas)
Ataques que NO requieren DA (solo Replication rights)
Last updated