Kerberos Authentication
Kerberos Authentication
Kerberos is the default authentication service for Windows domains. It’s intended to be more secure than NTLM, using third party ticket authorization and stronger encryption. Kerberos still has a handful of underlying vulnerabilities that can be used in a penetration test.
Terms
Ticket Granting Ticket (TGT)
- A ticket-granting ticket is an authentication ticket used to request service tickets from the TGS for specific resources from the domain.Key Distribution Center (KDC)
- The Key Distribution Center is a service for issuing TGTs and service tickets; consists of the Authentication Service and the Ticket Granting Service.Authentication Service (AS)
- The Authentication Service issues TGTs to be used by the TGS in the domain to request access to other machines and service tickets.Ticket Granting Service (TGS)
- The Ticket Granting Service takes the TGT and returns a ticket to a machine on the domain.Service Principal Name (SPN)
- A Service Principal Name is an identifier given to a service instance to associate a service instance with a domain service account. Windows requires that services have a domain service account which is why a service needs an SPN set.KDC Long Term Secret Key (KDC LT Key)
- The KDC key is based on the KRBTGT service account. It is used to encrypt the TGT and sign the PAC.Client Long Term Secret Key (Client LT Key)
- The client key is based on the computer or service account. It is used to check the encrypted timestamp and encrypt the session key.Service Long Term Secret Key (Service LT Key)
- The service key is based on the service account. It is used to encrypt the service portion of the service ticket and sign the PAC.Session Key
- Issued by the KDC when a TGT is issued. The user will provide the session key to the KDC along with the TGT when requesting a service ticket.Privilege Attribute Certificate (PAC)
- The PAC holds all of the user’s relevant information, it is sent along with the TGT to the KDC to be signed by the Target LT Key and the KDC LT Key in order to validate the user.
Flow

AS-REQ - 1.) The client requests an Authentication Ticket or Ticket Granting Ticket (TGT).
AS-REP - 2.) The Key Distribution Center verifies the client and sends back an encrypted TGT.
TGS-REQ - 3.) The client sends the encrypted TGT to the Ticket Granting Server (TGS) with the Service Principal Name (SPN) of the service the client wants to access.
TGS-REP - 4.) The Key Distribution Center (KDC) verifies the TGT of the user and that the user has access to the service, then sends a valid session key for the service to the client.
AP-REQ - 5.) The client requests the service and sends the valid session key to prove the user has access.
AP-REP - 6.) The service grants access