Enumerating Kerberos Delegations
1) List delegations
ldeep ldap -u USER -p 'PASSWORD' -d DOMAIN -s ldap://DC_IP delegations
findDelegation.py DOMAIN/USER:PASSWORD@IP2) Unconstrained Delegation
Get-NetComputer -Unconstrained
Get-DomainComputer -Unconstrained -Properties DnsHostName (Powerview)
findDelegation.py -dc-ip <DC_IP> domain.local/user1:passwordfindDelegation.py -target-domain <target_domain> domain.local/user1:password3) Constrained Delegation
Get-DomainComputer -TrustedToAuth -Properties DnsHostName, MSDS-AllowedToDelegateTo (Powerview)
Get-DomainUser -TrustedToAuth (Powerview)4) Resource-Based Constrained Delegation
Last updated