Forged Kerberos tickets are the ultimate AD compromise. A Golden Ticket grants domain-wide impersonation for 10 years. A Silver Ticket grants service-specific impersonation without ever touching the DC. Understanding both is essential for any practitioner serious about AD.
Kerberos ticket refresher
Two ticket types in a Kerberos flow:
- TGT (Ticket Granting Ticket) β issued by KDC after initial authentication. Encrypted with
krbtgt account’s hash. Used to request service tickets.
- TGS (Ticket Granting Service / service ticket) β issued by KDC for a specific service. Encrypted with that service account’s hash. Presented to the service for authorization.
Golden Ticket = forged TGT
If attacker extracts the krbtgt hash (via DCSync or NTDS.dit), they can forge their own TGT. The KDC has no way to tell it apart from a legitimate one because krbtgt’s hash is what validates TGT signatures.
# Mimikatz
kerberos::golden /user:AttackerUser /domain:corp.example.com \
/sid:S-1-5-21-XXX-XXX-XXX /krbtgt:KRBTGT_NTLM_HASH \
/id:500 /groups:512 /ptt
# After execution, attacker has a TGT for 'AttackerUser' (which can be any string),
# member of RID 500 (Administrator) + 512 (Domain Admins)
# /ptt = pass-the-ticket (injects into current session)
Properties:
- Valid 10 years by default (configurable to any period)
- Survives the real user’s password reset
- Works for users that don’t exist
- Can forge group memberships (Domain Admins, Enterprise Admins)
Silver Ticket = forged TGS
If attacker extracts a specific service account’s hash, they can forge TGS tickets for that service. No DC interaction needed β Silver Ticket tickets go directly to the service.
# Mimikatz silver ticket for CIFS service on a file server
kerberos::golden /user:AttackerUser /domain:corp.example.com \
/sid:S-1-5-21-XXX /target:FS01.corp.example.com \
/service:CIFS /rc4:SERVICE_ACCOUNT_HASH /ptt
Properties:
π Intermediate Module Β· Basic Tier
Continue reading with Basic tier (βΉ499/month)
You've read 27% of this module. Unlock the remaining deep-dive, quiz, and every other Intermediate module.
99+ modulesAll levels up to this tier
20-question quizzesUnlimited retries with explanations
Completion certificatesShareable on LinkedIn
5 more sections locked below