For the complete documentation index, see llms.txt. This page is also available as Markdown.

Pass the Ticket - Linux

Overview

  • Linux machines joined to AD store Kerberos tickets in two forms:

    • ccache files — typically at /tmp/krb5cc_* (env var KRB5CCNAME)

    • keytab files/etc/krb5.keytab or custom .keytab / .kt files

Identify Domain-Joined Linux

realm list
ps -ef | grep -i "winbind\|sssd"

Find Keytab Files

find / -name *keytab* -ls 2>/dev/null

Find ccache Files

env | grep -i krb5
ls -la /tmp

List Keytab Entries

Impersonate User with Keytab (kinit)

Extract Hashes from Keytab (KeyTabExtract)

Abuse ccache Files (as root)

Convert ccache to kirbi

Import kirbi on Windows (Rubeus)

Impacket with Kerberos + Proxychains

Evil-WinRM with Kerberos

Linikatz (Linux Credential Extraction)

Chisel + Proxychains Pivot Setup

Last updated