githubEdit

Ticket Acquisition

Kerberos ticket acquisition

Requirements:

Unprivileged

Can extract Kerberos tickets for the current user context

Privileged (Elevated)

Can extract ALL Kerberos tickets on the given system

Tools

1) Mimikatz

Export to file methods

Export tickets (Preferred Method (More Accurate))

Mimikatz.exe "token::elevate" "sekurlsa::tickets /export"

Alternative Method

Mimikatz.exe "token::elevate" "kerberos::list /export"

2) Invoke-Mimikatz

Load into memory

Export to file methods

Export tickets (Preferred Method (More Accurate))

Alternative Method

Export to Base64 without touching disk

3) Rubeus

Dump All

Dump Specified tickets that match a service

Dump tickets for specified users

Both

4) Invoke-Rubeus

Load into memory

Dump All

Dump Specified tickets that match a service

Dump tickets for specified users

Both

5) PowerShellKerberos

Load into memory and dump

Last updated