Sunday, December 18, 2016

Pivoting kerberos golden tickets in Linux

Kerberos golden ticket allows attacker to establish persistent and covert authenticated access to Windows domain. The attack works as follows:

  1. Attacker gains administrator privileges in domain
  2. Attacker extracts ntlm hash of a domain user "krbtgt" and obtains SID of the target domain
  3. The attacker forges kerberos ticket
  4. This ticket is used to authenticate in domain with privileges of domain administrator

Here's a detailed walkthough on how to use golden tickets on Kali Linux.

Let's start with obtaining krbtgt ntlm hash. I use an encoded version of mimikatz utility that gets me krbtgt hash without alerting AV (https://github.com/artkond/bat-armor/blob/master/examples/krbtgt.bat):

 Stripping last number from krbtgt SID (in out case 502) we obtain domain SID S-1-5-21-3251500307-1840725093-2229733580.

Now to generate the ticket we use ticketer.py utility from Impacket (https://github.com/CoreSecurity/impacket/blob/master/examples/ticketer.py):

Almost ready. Just need to export system variable, so impacket's psexec.py can use the ticket. When running psexec.py use -k key for kerberos authentication




Same thing goes for other impacket tools such as wmiexec.py (which is more covert than psexec.py as it does not upload any binaries and start no services) or atexec.py (uses scheduled tasks to exec your code):


Now that's all fine but what if you want to upload some files? Most probably you'll want to use smbclient for this task. Using kerberos with smbclient is a bit more complicated. You have to add your kerberos realm to config file located @ /etc/krb5.conf. In case you don't have krb5.conf you might want to install krb5-user package from your distro's repo.

[realms]

    PENTESTO.LOC = {
        kdc = tcp/dc01:88
    }

TCP is preferable as you will be able to tunnel your requests to kerberos server over socks proxy if you decide to do some fun pivoting. Notice that realm should be uppercase.


Pivoting

Using kerberos ticket over socks tunnel requires a bit more extra work. Most likely you don't have direct access to active directory name servers so you have to edit /etc/hosts file. Add target server, domain controller (which is also kerberos server), and domain's FQDN. This is mandatory because kerberos only works with hostnames and will fail if you specify IP-address.

$ cat /etc/hosts
...
10.0.0.89  pentesto.loc
10.0.0.89  dc01
...

I my case target server is the domain controller. Edit proxychains. Add your socks proxy and comment proxy_dns directive:

$ cat proxychains.conf
...
#Proxy DNS requests - no leak for DNS data
#proxy_dns 
...
[ProxyList]
# add proxy here ...
# meanwile
# defaults set to "tor"
socks4  172.16.46.157 3128

In case you've set up /etc/hosts and /etc/krb5.conf correctly there should be no trouble running smbclient or psexec.py over socks:




Note that psexec.py is sensitive to the info you provide. Domain name and username should be exact same you entered when forging ticket with ticketer.py.

2 comments:

  1. nice article!.. a few comments that might help:

    1. You can use secretsdump.py to extract the krbtgt nthash w/o writing anything at the target system, just run:
    python secretsdump.py -just-dc-user krbtgt Administrator@dc01
    2. If you set the KRB5CCNAME variable, you don't need to specify the username when using the -k switch. For example:
    python psexec.py -k dc01
    will just work.
    3. If you want to upload/download, you can also do it with impacket utils:
    a. using smbclient.py
    b. inside psexec.py, type help, you have the get / put options. Only caution is the paths are relative to the SHARE used by PSEXEC
    c. inside wmiexec.py, type help, you have the get / put options. These ones work way better, because it doesn't have the psexec.py restrictions.

    enjoy!

    ReplyDelete
  2. Nice article ..

    How to pass the generated ticket in the current command prompt if we are using windows system?

    ReplyDelete

Twitter