Understand the Kerberos Ticket Decoder output format
developThe decoder converts Kerberos ASN.1 data into a JSON structure, which is then rendered as a tree view. The resulting JSON contains several high-level sections:
Request: Contains the originalKrbApReq(Kerberos Application Request) data, including the ticket and authenticator.Decrypted: Contains the decrypted contents of the ticket and authenticator (if a key was provided), includingSName,CName,SessionKey, andAuthorizationData(such as PAC data).Computed: Contains computed values like the full principal name and various restrictions or claims.KeyTable: Contains information about the keys used, including encryption types and principal names.
{
"Request": { ... },
"Decrypted": { ... },
"Computed": { ... },
"KeyTable": { ... }
}