# klist
[klist](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/klist) displays a list of cached kerberos tickets.

## List info about your ticket
```
sudo apt install krb5-user
klist -f -c your-saved-ticket.ccache
```

## Sneaky batch file to capture LDAP service tickets
```
klist get ldap/dc.domain.com
klist > file.txt
```
